diff --git a/.github/workflows/sca-integration-ort.yml b/.github/workflows/sca-integration-ort.yml
index 98df3236cf..3b258a56b9 100644
--- a/.github/workflows/sca-integration-ort.yml
+++ b/.github/workflows/sca-integration-ort.yml
@@ -1,8 +1,8 @@
-name: Generate SBOM with ORT and load into ScanCode.io
+name: Generate or load SBOMs from ORT into ScanCode.io
# This workflow:
-# 1. Generates a CycloneDX SBOM for a requirement.txt file using ORT.
-# 2. Uploads the SBOM as a GitHub artifact for future inspection.
+# 1. Generates CycloneDX and SPDX SBOM with ORT, or
+# 2. Loads ORT SBOM test assests
# 3. Loads the SBOM into ScanCode.io for further analysis.
# 4. Runs assertions to verify that the SBOM was properly processed in ScanCode.io.
#
@@ -22,7 +22,95 @@ permissions:
contents: read
jobs:
- generate-and-load-sbom:
+ checkout-ort-test-assests-from-scancode-io-repo:
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Checkout ScanCode.io repository
+ uses: actions/checkout@v5
+
+ - name: Upload orthw mime types example
+ uses: actions/upload-artifact@v4
+ with:
+ name: npm-mime-types-2.1.26-scan-result.json
+ path: scanpipe/tests/data/integrations-ort/orthw-example-scan-result/npm-mime-types-2.1.26-scan-result.json
+ overwrite: true
+ retention-days: 1
+
+ - name: Upload CycloneDX v1.6 ORT test result
+ uses: actions/upload-artifact@v4
+ with:
+ name: ort-cyclonedx-1.6-result.cyclonedx.json
+ path: scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.json
+ overwrite: true
+ retention-days: 1
+
+ - name: Upload CycloneDX v1.6 ORT test result with findings
+ uses: actions/upload-artifact@v4
+ with:
+ name: ort-cyclonedx-1.6-result-with-findings.cyclonedx.json
+ path: scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-with-findings.json
+ overwrite: true
+ retention-days: 1
+
+ - name: Upload CycloneDX v1.6 ORT test result without findings
+ uses: actions/upload-artifact@v4
+ with:
+ name: ort-cyclonedx-1.6-result-without-findings.cyclonedx.json
+ path: scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-without-findings.json
+ overwrite: true
+ retention-days: 1
+
+ - name: Upload SPDX v2.2 ORT test result
+ uses: actions/upload-artifact@v4
+ with:
+ name: ort-spdx-2.2-result.spdx.json
+ path: scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.json
+ overwrite: true
+ retention-days: 1
+
+ - name: Upload SPDX v2.3 ORT test result
+ uses: actions/upload-artifact@v4
+ with:
+ name: ort-spdx-2.3-result.spdx.json
+ path: scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.json
+ overwrite: true
+ retention-days: 1
+
+ generate-python-cyclonedx-1-5-sbom-with-ort-load-into-scancode-io:
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Create a Python requirements.txt
+ run: |
+ cat << 'EOF' > requirements.txt
+ click==6.7
+ Flask==1.0
+ itsdangerous==0.24
+ EOF
+
+ - name: Run GitHub Action for ORT
+ uses: oss-review-toolkit/ort-ci-github-action@main
+ with:
+ ort-cli-report-args: "-O CycloneDX=output.file.formats=json -O CycloneDX=schema.version=1.5"
+ report-formats: "CycloneDx"
+ run: >
+ analyzer,
+ evaluator,
+ advisor,
+ reporter
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "${{ env.ORT_RESULTS_PATH }}/bom.cyclonedx.json"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 6; assert package_manager.vulnerable().count() >= 1; assert DiscoveredDependency.objects.count() >= 5"
+
+ generate-python-cyclonedx-1-6-sbom-with-ort-load-into-scancode-io:
runs-on: ubuntu-24.04
steps:
- name: Create a Python requirements.txt
@@ -35,7 +123,15 @@ jobs:
EOF
- name: Run GitHub Action for ORT
- uses: oss-review-toolkit/ort-ci-github-action@v1
+ uses: oss-review-toolkit/ort-ci-github-action@main
+ with:
+ ort-cli-report-args: "-O CycloneDX=output.file.formats=json -O CycloneDX=schema.version=1.6"
+ report-formats: "CycloneDx"
+ run: >
+ analyzer,
+ evaluator,
+ advisor,
+ reporter
- name: Import SBOM into ScanCode.io
uses: aboutcode-org/scancode-action@main
@@ -44,7 +140,255 @@ jobs:
inputs-path: "${{ env.ORT_RESULTS_PATH }}/bom.cyclonedx.json"
scancodeio-repo-branch: "main"
- - name: Verify SBOM Analysis Results in ScanCode.io
+ - name: Verify SBOM analysis results in ScanCode.io
shell: bash
run: |
scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 5; assert package_manager.vulnerable().count() >= 1; assert DiscoveredDependency.objects.count() >= 1"
+
+ generate-mime-types-sboms-from-ort-from-scan-result:
+ needs: checkout-ort-test-assests-from-scancode-io-repo
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download mime-type-2.1.26-scan-result file
+ uses: actions/download-artifact@v5
+ with:
+ name: npm-mime-types-2.1.26-scan-result.json
+
+ - name: Move mime-types scan result expected location by GitHub Action for ORT
+ run: |
+ mkdir -p $HOME/.ort/ort-results/
+ mv npm-mime-types-2.1.26-scan-result.json \
+ $HOME/.ort/ort-results/current-result.json
+ cat $HOME/.ort/ort-results/current-result.json
+
+ - name: Run GitHub Action for ORT
+ uses: oss-review-toolkit/ort-ci-github-action@main
+ with:
+ report-formats: "CycloneDx,SpdxDocument"
+ run: >
+ evaluator,
+ advisor,
+ reporter
+ - name: Upload orthw mime type example
+
+ - uses: actions/upload-artifact@v4
+ with:
+ name: npm-mime-types-2.1.26-ort-sboms
+ path: |
+ ${{ env.ORT_RESULTS_PATH }}/bom.cyclonedx.json
+ ${{ env.ORT_RESULTS_PATH }}/bom.cyclonedx.xml
+ ${{ env.ORT_RESULTS_PATH }}/bom.spdx.json
+ ${{ env.ORT_RESULTS_PATH }}/bom.spdx.yml
+ overwrite: true
+ retention-days: 1
+
+ load-ort-cyclonedx-1-6-json-into-scancode-io:
+ needs: checkout-ort-test-assests-from-scancode-io-repo
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT CycloneDX JSON SBOM
+ uses: actions/download-artifact@v5
+ with:
+ name: ort-cyclonedx-1.6-result.cyclonedx.json
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "cyclonedx-reporter-expected-result.json"
+ output-formats: "cyclonedx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ # FIXME ScanCode.io incorrectly flag CVE-2021-1234 as applicable to this scan.
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 5; assert package_manager.vulnerable().count() >= 1; assert DiscoveredDependency.objects.count() >= 0"
+
+ load-ort-cyclonedx-1-6-json-sbom-with-findings-into-scancode-io:
+ needs: checkout-ort-test-assests-from-scancode-io-repo
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT CycloneDX v1.6 JSON SBOM
+ uses: actions/download-artifact@v5
+ with:
+ name: ort-cyclonedx-1.6-result-with-findings.cyclonedx.json
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "cyclonedx-reporter-expected-result-with-findings.json"
+ output-formats: "cyclonedx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >=5; assert package_manager.vulnerable().count() >= 0; assert DiscoveredDependency.objects.count() >= 0"
+
+ load-ort-cyclonedx-1-6-json-sbom-without-findings-into-scancode-io:
+ needs: checkout-ort-test-assests-from-scancode-io-repo
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT CycloneDX v1.6 JSON SBOM
+ uses: actions/download-artifact@v5
+ with:
+ name: ort-cyclonedx-1.6-result-without-findings.cyclonedx.json
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "cyclonedx-reporter-expected-result-without-findings.json"
+ output-formats: "cyclonedx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() == 0; assert package_manager.vulnerable().count() == 0; assert DiscoveredDependency.objects.count() == 0"
+
+ load-ort-spdx-2-2-json-sbom-into-scancode-io:
+ needs: checkout-ort-test-assests-from-scancode-io-repo
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT SPDX v2.2 JSON SBOM
+ uses: actions/download-artifact@v5
+ with:
+ name: ort-spdx-2.2-result.spdx.json
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "synthetic-scan-result-expected-output.spdx.json"
+ output-formats: "spdx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 12; assert package_manager.vulnerable().count() >= 0; assert DiscoveredDependency.objects.count() >= 11"
+
+ load-ort-spdx-2-3-json-sbom-into-scancode-io:
+ needs: checkout-ort-test-assests-from-scancode-io-repo
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT SPDX v2.3 JSON SBOM
+ uses: actions/download-artifact@v5
+ with:
+ name: ort-spdx-2.3-result.spdx.json
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "synthetic-scan-result-expected-output.spdx.json"
+ output-formats: "spdx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 12; assert package_manager.vulnerable().count() >= 0; assert DiscoveredDependency.objects.count() >= 11"
+
+ load-ort-mime-types-cyclonedx-json-sbom-into-scancode-io:
+ needs: generate-mime-types-sboms-from-ort-from-scan-result
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT CycloneDX JSON SBOM for mime-types 2.1.26
+ uses: actions/download-artifact@v5
+ with:
+ name: npm-mime-types-2.1.26-ort-sboms
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "bom.cyclonedx.json"
+ output-formats: "cyclonedx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ # FIXME Number of packages and dependencies detected is wrong
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 380; assert package_manager.vulnerable().count() >= 0; assert DiscoveredDependency.objects.count() >= 628"
+
+ # FIXME: Loading CycloneDX SBOM in YAML format fails for unclear reasons.
+ #
+ # load-ort-mime-types-cyclonedx-xml-sbom-into-scancode-io:
+ # needs: generate-mime-types-sboms-from-ort-from-scan-result
+ # runs-on: ubuntu-24.04
+ # steps:
+ # - name: Download ORT CycloneDX JSON SBOM for mime-types 2.1.26
+ # uses: actions/download-artifact@v5
+ # with:
+ # name: npm-mime-types-2.1.26-ort-sboms
+
+ # - name: Import SBOM into ScanCode.io
+ # uses: aboutcode-org/scancode-action@main
+ # with:
+ # pipelines: "load_sbom"
+ # inputs-path: "bom.cyclonedx.xml"
+ # output-formats: "cyclonedx"
+ # scancodeio-repo-branch: "main"
+
+ # - name: Verify SBOM analysis results in ScanCode.io
+ # shell: bash
+ # run: |
+ # # FIXME Number of packages and dependencies detected is wrong
+ # scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 405; assert package_manager.vulnerable().count() >= 0; assert DiscoveredDependency.objects.count() >= 0"
+
+ load-mime-types-spdx-json-sbom-into-scancode-io:
+ needs: generate-mime-types-sboms-from-ort-from-scan-result
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT SPDX JSON SBOM for mime-types 2.1.26
+ uses: actions/download-artifact@v5
+ with:
+ name: npm-mime-types-2.1.26-ort-sboms
+
+ - name: Cat SPDX JSON - for debugging purposes only, remove ASAP
+ run: |
+ cat bom.spdx.json
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "bom.spdx.json"
+ output-formats: "spdx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 1141; assert package_manager.vulnerable().count() >= 0; assert DiscoveredDependency.objects.count() >= 1,397"
+
+ load-mime-types-spdx-yml-sbom-into-scancode-io:
+ needs: generate-mime-types-sboms-from-ort-from-scan-result
+ runs-on: ubuntu-24.04
+ steps:
+ - name: Download ORT SPDX YAML SBOM for mime-types 2.1.26
+ uses: actions/download-artifact@v5
+ with:
+ name: npm-mime-types-2.1.26-ort-sboms
+
+ - name: Cat SPDX YAML - for debugging purposes only, remove ASAP
+ run: |
+ cat bom.spdx.yml
+
+ - name: Import SBOM into ScanCode.io
+ uses: aboutcode-org/scancode-action@main
+ with:
+ pipelines: "load_sbom"
+ inputs-path: "bom.spdx.yml"
+ output-formats: "spdx"
+ scancodeio-repo-branch: "main"
+
+ - name: Verify SBOM analysis results in ScanCode.io
+ shell: bash
+ run: |
+ scanpipe shell --command "from scanpipe.models import DiscoveredPackage, DiscoveredDependency; package_manager = DiscoveredPackage.objects; assert package_manager.count() >= 1141; assert package_manager.vulnerable().count() >= 0; assert DiscoveredDependency.objects.count() >= 1,397"
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-with-findings.json b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-with-findings.json
new file mode 100644
index 0000000000..681d7f0b71
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-with-findings.json
@@ -0,0 +1,385 @@
+{
+ "bomFormat": "CycloneDX",
+ "specVersion": "1.6",
+ "serialNumber": "urn:uuid:12345678-1234-1234-1234-123456789012",
+ "version": 1,
+ "metadata": {
+ "timestamp": "1970-01-01T00:00:00Z",
+ "tools": {
+ "components": [
+ {
+ "type": "application",
+ "name": "OSS Review Toolkit",
+ "version": "deadbeef"
+ }
+ ],
+ "services": []
+ },
+ "component": {
+ "type": "application",
+ "bom-ref": "NPM:@ort:project-with-findings:1.0",
+ "group": "@ort",
+ "name": "project-with-findings",
+ "version": "1.0",
+ "description": ""
+ },
+ "licenses": [
+ {
+ "expression": "CC0-1.0"
+ }
+ ]
+ },
+ "components": [
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:concluded-license:1.0",
+ "group": "@ort",
+ "name": "concluded-license",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "concluded license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "name": "MIT WITH Libtool-exception",
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "concluded license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "declared license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1, Copyright 2",
+ "purl": "pkg:npm/%40ort/concluded-license@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:declared-license:1.0",
+ "group": "@ort",
+ "name": "declared-license",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "declared license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1",
+ "purl": "pkg:npm/%40ort/declared-license@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:license-file:1.0",
+ "group": "@ort",
+ "name": "license-file",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1, Copyright 2",
+ "purl": "pkg:npm/%40ort/license-file@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:license-file-and-additional-licenses:1.0",
+ "group": "@ort",
+ "name": "license-file-and-additional-licenses",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1, Copyright 2, Copyright 3",
+ "purl": "pkg:npm/%40ort/license-file-and-additional-licenses@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:no-license-file:1.0",
+ "group": "@ort",
+ "name": "no-license-file",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1",
+ "purl": "pkg:npm/%40ort/no-license-file@1.0",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ }
+ ],
+ "externalReferences": [
+ {
+ "type": "vcs",
+ "url": "https://github.com/oss-review-toolkit/ort.git",
+ "comment": "URL to the project's Git repository"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ },
+ {
+ "type": "license",
+ "url": "MIT"
+ },
+ {
+ "type": "build-system",
+ "url": "NPM"
+ },
+ {
+ "type": "other",
+ "url": "pkg:npm/%40ort/project-with-findings@1.0",
+ "comment": "Package-URL of the project"
+ }
+ ],
+ "dependencies": [
+ {
+ "ref": "NPM:@ort:project-with-findings:1.0",
+ "dependsOn": [
+ "NPM:@ort:no-license-file:1.0",
+ "NPM:@ort:license-file:1.0",
+ "NPM:@ort:license-file-and-additional-licenses:1.0",
+ "NPM:@ort:concluded-license:1.0",
+ "NPM:@ort:declared-license:1.0"
+ ]
+ }
+ ]
+}
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-with-findings.json.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-with-findings.json.ABOUT
new file mode 100644
index 0000000000..07e37fefee
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-with-findings.json.ABOUT
@@ -0,0 +1,12 @@
+about_resource: cyclonedx-reporter-expected-result-with-findings.json
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result-with-findings.json
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result-with-findings.json
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-without-findings.json b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-without-findings.json
new file mode 100644
index 0000000000..a297f09983
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-without-findings.json
@@ -0,0 +1,52 @@
+{
+ "bomFormat": "CycloneDX",
+ "specVersion": "1.6",
+ "serialNumber": "urn:uuid:12345678-1234-1234-1234-123456789012",
+ "version": 1,
+ "metadata": {
+ "timestamp": "1970-01-01T00:00:00Z",
+ "tools": {
+ "components": [
+ {
+ "type": "application",
+ "name": "OSS Review Toolkit",
+ "version": "deadbeef"
+ }
+ ],
+ "services": []
+ },
+ "component": {
+ "type": "application",
+ "bom-ref": "NPM:@ort:project-without-findings:1.0",
+ "group": "@ort",
+ "name": "project-without-findings",
+ "version": "1.0",
+ "description": ""
+ },
+ "licenses": [
+ {
+ "expression": "CC0-1.0"
+ }
+ ]
+ },
+ "externalReferences": [
+ {
+ "type": "vcs",
+ "url": "https://github.com/oss-review-toolkit/ort.git",
+ "comment": "URL to the project's Git repository"
+ },
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ },
+ {
+ "type": "build-system",
+ "url": "NPM"
+ },
+ {
+ "type": "other",
+ "url": "pkg:npm/%40ort/project-without-findings@1.0",
+ "comment": "Package-URL of the project"
+ }
+ ]
+}
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-without-findings.json.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-without-findings.json.ABOUT
new file mode 100644
index 0000000000..f1511f6040
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result-without-findings.json.ABOUT
@@ -0,0 +1,12 @@
+about_resource: cyclonedx-reporter-expected-result-without-findings.json
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result-without-findings.json
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result-without-findings.json
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.json b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.json
new file mode 100644
index 0000000000..9342085f33
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.json
@@ -0,0 +1,388 @@
+{
+ "bomFormat": "CycloneDX",
+ "specVersion": "1.6",
+ "serialNumber": "urn:uuid:12345678-1234-1234-1234-123456789012",
+ "version": 1,
+ "metadata": {
+ "timestamp": "1970-01-01T00:00:00Z",
+ "tools": {
+ "components": [
+ {
+ "type": "application",
+ "name": "OSS Review Toolkit",
+ "version": "deadbeef"
+ }
+ ],
+ "services": []
+ },
+ "component": {
+ "type": "file",
+ "bom-ref": "https://github.com/oss-review-toolkit/ort.git@main",
+ "name": "https://github.com/oss-review-toolkit/ort.git",
+ "version": "main"
+ },
+ "licenses": [
+ {
+ "expression": "CC0-1.0"
+ }
+ ]
+ },
+ "components": [
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:concluded-license:1.0",
+ "group": "@ort",
+ "name": "concluded-license",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "concluded license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "name": "MIT WITH Libtool-exception",
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "concluded license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "declared license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1, Copyright 2",
+ "purl": "pkg:npm/%40ort/concluded-license@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:declared-license:1.0",
+ "group": "@ort",
+ "name": "declared-license",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "declared license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1",
+ "purl": "pkg:npm/%40ort/declared-license@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:license-file:1.0",
+ "group": "@ort",
+ "name": "license-file",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1, Copyright 2",
+ "purl": "pkg:npm/%40ort/license-file@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:license-file-and-additional-licenses:1.0",
+ "group": "@ort",
+ "name": "license-file-and-additional-licenses",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "hashes": [
+ {
+ "alg": "SHA-1",
+ "content": "0000000000000000000000000000000000000000"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ },
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1, Copyright 2, Copyright 3",
+ "purl": "pkg:npm/%40ort/license-file-and-additional-licenses@1.0?classifier=sources",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ },
+ {
+ "type": "library",
+ "bom-ref": "NPM:@ort:no-license-file:1.0",
+ "group": "@ort",
+ "name": "no-license-file",
+ "version": "1.0",
+ "description": "",
+ "scope": "required",
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT",
+ "text": {
+ "contentType": "plain/text",
+ "content": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
+ },
+ "properties": [
+ {
+ "name": "ort:origin",
+ "value": "detected license"
+ }
+ ]
+ }
+ }
+ ],
+ "copyright": "Copyright 1",
+ "purl": "pkg:npm/%40ort/no-license-file@1.0",
+ "modified": false,
+ "externalReferences": [
+ {
+ "type": "website",
+ "url": "https://github.com/oss-review-toolkit/ort"
+ }
+ ],
+ "properties": [
+ {
+ "name": "ort:dependencyType",
+ "value": "direct"
+ }
+ ]
+ }
+ ],
+ "externalReferences": [
+ {
+ "type": "vcs",
+ "url": "https://github.com/oss-review-toolkit/ort.git",
+ "comment": "URL to the Git repository of the projects"
+ }
+ ],
+ "dependencies": [
+ {
+ "ref": "https://github.com/oss-review-toolkit/ort.git@main",
+ "dependsOn": [
+ "NPM:@ort:no-license-file:1.0",
+ "NPM:@ort:license-file:1.0",
+ "NPM:@ort:license-file-and-additional-licenses:1.0",
+ "NPM:@ort:concluded-license:1.0",
+ "NPM:@ort:declared-license:1.0"
+ ]
+ }
+ ],
+ "vulnerabilities": [
+ {
+ "id": "CVE-2021-1234",
+ "ratings": [
+ {
+ "source": {
+ "url": "https://cves.example.org/cve1"
+ },
+ "score": 6.0,
+ "severity": "medium",
+ "method": "CVSSv2"
+ }
+ ],
+ "description": "A vulnerability description",
+ "detail": "A vulnerability summary",
+ "affects": [
+ {
+ "ref": "NPM:@ort:declared-license:1.0"
+ }
+ ]
+ }
+ ]
+}
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.json.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.json.ABOUT
new file mode 100644
index 0000000000..7fa978092f
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.json.ABOUT
@@ -0,0 +1,12 @@
+about_resource: cyclonedx-reporter-expected-result.json
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result.json
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result.json
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.xml b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.xml
new file mode 100644
index 0000000000..a1de04d2f6
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.xml
@@ -0,0 +1,443 @@
+
+
+
+ 1970-01-01T00:00:00Z
+
+
+
+ OSS Review Toolkit
+ deadbeef
+
+
+
+
+ https://github.com/oss-review-toolkit/ort.git
+ main
+
+
+ CC0-1.0
+
+
+
+
+ @ort
+ concluded-license
+ 1.0
+ required
+
+ 0000000000000000000000000000000000000000
+
+
+
+ MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ concluded license
+
+
+
+ MIT WITH Libtool-exception
+
+ concluded license
+
+
+
+ BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list
+of conditions and the following disclaimer.
+
+Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+Neither the name of the ORGANIZATION nor the names of its contributors may be
+used to endorse or promote products derived from this software without specific
+prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ declared license
+
+
+
+ BSD-2-Clause
+ Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list
+of conditions and the following disclaimer.
+
+Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ detected license
+
+
+
+ MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ detected license
+
+
+
+ Copyright 1, Copyright 2
+ pkg:npm/%40ort/concluded-license@1.0?classifier=sources
+ false
+
+
+ https://github.com/oss-review-toolkit/ort
+
+
+
+ direct
+
+
+
+ @ort
+ declared-license
+ 1.0
+ required
+
+ 0000000000000000000000000000000000000000
+
+
+
+ MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ declared license
+
+
+
+ BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list
+of conditions and the following disclaimer.
+
+Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+Neither the name of the ORGANIZATION nor the names of its contributors may be
+used to endorse or promote products derived from this software without specific
+prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ detected license
+
+
+
+ Copyright 1
+ pkg:npm/%40ort/declared-license@1.0?classifier=sources
+ false
+
+
+ https://github.com/oss-review-toolkit/ort
+
+
+
+ direct
+
+
+
+ @ort
+ license-file
+ 1.0
+ required
+
+ 0000000000000000000000000000000000000000
+
+
+
+ MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ detected license
+
+
+
+ Copyright 1, Copyright 2
+ pkg:npm/%40ort/license-file@1.0?classifier=sources
+ false
+
+
+ https://github.com/oss-review-toolkit/ort
+
+
+
+ direct
+
+
+
+ @ort
+ license-file-and-additional-licenses
+ 1.0
+ required
+
+ 0000000000000000000000000000000000000000
+
+
+
+ BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list
+of conditions and the following disclaimer.
+
+Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+Neither the name of the ORGANIZATION nor the names of its contributors may be
+used to endorse or promote products derived from this software without specific
+prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ detected license
+
+
+
+ MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ detected license
+
+
+
+ Copyright 1, Copyright 2, Copyright 3
+ pkg:npm/%40ort/license-file-and-additional-licenses@1.0?classifier=sources
+ false
+
+
+ https://github.com/oss-review-toolkit/ort
+
+
+
+ direct
+
+
+
+ @ort
+ no-license-file
+ 1.0
+ required
+
+
+ MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ detected license
+
+
+
+ Copyright 1
+ pkg:npm/%40ort/no-license-file@1.0
+ false
+
+
+ https://github.com/oss-review-toolkit/ort
+
+
+
+ direct
+
+
+
+
+
+ https://github.com/oss-review-toolkit/ort.git
+ URL to the Git repository of the projects
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CVE-2021-1234
+
+
+
+ https://cves.example.org/cve1
+
+ 6.0
+ medium
+ CVSSv2
+
+
+ A vulnerability description
+ A vulnerability summary
+
+
+ [NPM:@ort:declared-license:1.0]
+
+
+
+
+
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.xml.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.xml.ABOUT
new file mode 100644
index 0000000000..39da5bb7cd
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-cyclonedx-1.6-funtest-resources/cyclonedx-reporter-expected-result.xml.ABOUT
@@ -0,0 +1,12 @@
+about_resource: cyclonedx-reporter-expected-result.xml
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result.xml
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/cyclonedx/src/funTest/resources/cyclonedx-reporter-expected-result.xml
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.json b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.json
new file mode 100644
index 0000000000..f88aebc195
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.json
@@ -0,0 +1,324 @@
+{
+ "SPDXID" : "SPDXRef-DOCUMENT",
+ "spdxVersion" : "SPDX-2.2",
+ "creationInfo" : {
+ "comment" : "some creation info comment",
+ "created" : "",
+ "creators" : [ "Person: some creation info person", "Organization: some creation info organization", "Tool: ort-" ],
+ "licenseListVersion" : ""
+ },
+ "name" : "some document name",
+ "dataLicense" : "CC0-1.0",
+ "comment" : "some document comment",
+ "hasExtractedLicensingInfos" : [ {
+ "extractedText" : "ASMUS License\n\nDisclaimer and legal rights\n---------------------------\n\nThis file contains bugs. All representations to the contrary are void.\n\nSource code in this file and the accompanying headers and included \nfiles may be distributed free of charge by anyone, as long as full \ncredit is given and any and all liabilities are assumed by the \nrecipient.",
+ "licenseId" : "LicenseRef-scancode-asmus"
+ }, {
+ "extractedText" : "To anyone who acknowledges that the file \"sRGB Color Space Profile.icm\" \nis provided \"AS IS\" WITH NO EXPRESS OR IMPLIED WARRANTY:\npermission to use, copy and distribute this file for any purpose is hereby \ngranted without fee, provided that the file is not changed including the HP \ncopyright notice tag, and that the name of Hewlett-Packard Company not be \nused in advertising or publicity pertaining to distribution of the software \nwithout specific, written prior permission. Hewlett-Packard Company makes \nno representations about the suitability of this software for any purpose.",
+ "licenseId" : "LicenseRef-scancode-srgb"
+ } ],
+ "documentNamespace" : "",
+ "documentDescribes" : [ "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1" ],
+ "packages" : [ {
+ "SPDXID" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "https://github.com/path/proj1-repo.git",
+ "filesAnalyzed" : false,
+ "homepage" : "https://example.com/proj1/homepage",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "MIT",
+ "name" : "proj1",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1",
+ "copyrightText" : "Copyright (c) 2006-2010 Kirill Simonov",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND MIT",
+ "name" : "gopkg.in/yaml.v3",
+ "versionInfo" : "3.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs",
+ "copyrightText" : "Copyright (c) 2006-2010 Kirill Simonov",
+ "downloadLocation" : "git+https://gopkg.in/yaml.v3@f6f7691b1fdeb513f56608cd2c32c51f8194bf51",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ } ],
+ "filesAnalyzed" : true,
+ "hasFiles" : [ "SPDXRef-File-1", "SPDXRef-File-2" ],
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND MIT",
+ "licenseInfoFromFiles" : [ "Apache-2.0", "MIT" ],
+ "name" : "gopkg.in/yaml.v3",
+ "packageVerificationCode" : {
+ "packageVerificationCodeValue" : "1ee5bcb5fe279ad210bd57c8bc9bcfe5ae99729f"
+ },
+ "versionInfo" : "3.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0000000000000000000000000000000000000000"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "description" : "Description of pkg1.",
+ "downloadLocation" : "https://example.com/pkg1.jar",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "https://example.com/pkg1/homepage",
+ "licenseConcluded" : "BSD-2-Clause AND BSD-3-Clause AND MIT",
+ "licenseDeclared" : "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only OR MIT) AND MIT",
+ "name" : "pkg1",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs",
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "description" : "Description of pkg1.",
+ "downloadLocation" : "git+ssh://github.com/path/pkg1-repo.git@deadbeef#project-path",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ } ],
+ "filesAnalyzed" : true,
+ "hasFiles" : [ "SPDXRef-File-3" ],
+ "homepage" : "https://example.com/pkg1/homepage",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only OR MIT) AND MIT",
+ "licenseInfoFromFiles" : [ "Apache-2.0", "BSD-2-Clause" ],
+ "name" : "pkg1",
+ "packageVerificationCode" : {
+ "packageVerificationCodeValue" : "3700a1e8575c082653af662ac024337faf78990f"
+ },
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0000000000000000000000000000000000000000"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "description" : "Description of pkg1.",
+ "downloadLocation" : "https://example.com/pkg1-sources.jar",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "https://example.com/pkg1/homepage",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only OR MIT) AND MIT",
+ "name" : "pkg1",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg2-grp/pkg2@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "NONE",
+ "name" : "pkg2",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg3-grp/pkg3@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "NONE",
+ "name" : "pkg3",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg4-grp/pkg4@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "MIT",
+ "name" : "pkg4",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg6-grp/pkg6@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "LicenseRef-scancode-srgb",
+ "licenseDeclared" : "LicenseRef-scancode-asmus",
+ "name" : "pkg6",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1",
+ "copyrightText" : "Copyright 2020 Some copyright holder in source artifact",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "GPL-2.0-only WITH NOASSERTION",
+ "name" : "pkg7",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0000000000000000000000000000000000000000"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in source artifact",
+ "downloadLocation" : "https://example.com/pkg7-sources.jar",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE_MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ } ],
+ "filesAnalyzed" : true,
+ "hasFiles" : [ "SPDXRef-File-4", "SPDXRef-File-5" ],
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "GPL-2.0-only WITH NOASSERTION",
+ "licenseInfoFromFiles" : [ "GPL-2.0-only WITH NOASSERTION" ],
+ "name" : "pkg7",
+ "packageVerificationCode" : {
+ "packageVerificationCodeValue" : "e14acc46fad3a38a1ef2830067619812b51cb4bc"
+ },
+ "versionInfo" : "0.0.1"
+ } ],
+ "files" : [ {
+ "SPDXID" : "SPDXRef-File-1",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ } ],
+ "copyrightText" : "NONE",
+ "fileName" : "LICENSE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "Apache-2.0", "MIT" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-2",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "b8f428421b06957fe3859ebc30df70d16fc537d4"
+ } ],
+ "copyrightText" : "Copyright (c) 2006-2010 Kirill Simonov",
+ "fileName" : "readerc.go",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "NONE" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-3",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "8c38f605503f2a48ef7b6220ad06aa0f3387484b"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "fileName" : "project-path/some/file",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "NONE" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-4",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ } ],
+ "copyrightText" : "NONE",
+ "fileName" : "LICENSE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "GPL-2.0-only WITH NOASSERTION" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-5",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "4552f707bdf537911c9943cec56a0bf11bd8468d"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in source artifact",
+ "fileName" : "some/file",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "NONE" ]
+ } ],
+ "relationships" : [ {
+ "spdxElementId" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact"
+ }, {
+ "spdxElementId" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
+ } ]
+}
\ No newline at end of file
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.json.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.json.ABOUT
new file mode 100644
index 0000000000..491685fed4
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.json.ABOUT
@@ -0,0 +1,12 @@
+about_resource: synthetic-scan-result-expected-output.spdx.json
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/spdx/src/funTest/resources/v2.2/synthetic-scan-result-expected-output.spdx.json
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/spdx/src/funTest/resources/v2.2/synthetic-scan-result-expected-output.spdx.json
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.yml b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.yml
new file mode 100644
index 0000000000..ced06cfdc6
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.yml
@@ -0,0 +1,312 @@
+---
+SPDXID: "SPDXRef-DOCUMENT"
+spdxVersion: "SPDX-2.2"
+creationInfo:
+ comment: "some creation info comment"
+ created: ""
+ creators:
+ - "Person: some creation info person"
+ - "Organization: some creation info organization"
+ - "Tool: ort-"
+ licenseListVersion: ""
+name: "some document name"
+dataLicense: "CC0-1.0"
+comment: "some document comment"
+hasExtractedLicensingInfos:
+- extractedText: "ASMUS License\n\nDisclaimer and legal rights\n---------------------------\n\
+ \nThis file contains bugs. All representations to the contrary are void.\n\nSource\
+ \ code in this file and the accompanying headers and included \nfiles may be distributed\
+ \ free of charge by anyone, as long as full \ncredit is given and any and all\
+ \ liabilities are assumed by the \nrecipient."
+ licenseId: "LicenseRef-scancode-asmus"
+- extractedText: "To anyone who acknowledges that the file \"sRGB Color Space Profile.icm\"\
+ \ \nis provided \"AS IS\" WITH NO EXPRESS OR IMPLIED WARRANTY:\npermission to\
+ \ use, copy and distribute this file for any purpose is hereby \ngranted without\
+ \ fee, provided that the file is not changed including the HP \ncopyright notice\
+ \ tag, and that the name of Hewlett-Packard Company not be \nused in advertising\
+ \ or publicity pertaining to distribution of the software \nwithout specific,\
+ \ written prior permission. Hewlett-Packard Company makes \nno representations\
+ \ about the suitability of this software for any purpose."
+ licenseId: "LicenseRef-scancode-srgb"
+documentNamespace: ""
+documentDescribes:
+- "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+packages:
+- SPDXID: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "https://github.com/path/proj1-repo.git"
+ filesAnalyzed: false
+ homepage: "https://example.com/proj1/homepage"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "MIT"
+ name: "proj1"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+ copyrightText: "Copyright (c) 2006-2010 Kirill Simonov"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND MIT"
+ name: "gopkg.in/yaml.v3"
+ versionInfo: "3.0.1"
+- SPDXID: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs"
+ copyrightText: "Copyright (c) 2006-2010 Kirill Simonov"
+ downloadLocation: "git+https://gopkg.in/yaml.v3@f6f7691b1fdeb513f56608cd2c32c51f8194bf51"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ filesAnalyzed: true
+ hasFiles:
+ - "SPDXRef-File-1"
+ - "SPDXRef-File-2"
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND MIT"
+ licenseInfoFromFiles:
+ - "Apache-2.0"
+ - "MIT"
+ name: "gopkg.in/yaml.v3"
+ packageVerificationCode:
+ packageVerificationCodeValue: "1ee5bcb5fe279ad210bd57c8bc9bcfe5ae99729f"
+ versionInfo: "3.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0000000000000000000000000000000000000000"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ description: "Description of pkg1."
+ downloadLocation: "https://example.com/pkg1.jar"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ filesAnalyzed: false
+ homepage: "https://example.com/pkg1/homepage"
+ licenseConcluded: "BSD-2-Clause AND BSD-3-Clause AND MIT"
+ licenseDeclared: "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only\
+ \ OR MIT) AND MIT"
+ name: "pkg1"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ description: "Description of pkg1."
+ downloadLocation: "git+ssh://github.com/path/pkg1-repo.git@deadbeef#project-path"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ filesAnalyzed: true
+ hasFiles:
+ - "SPDXRef-File-3"
+ homepage: "https://example.com/pkg1/homepage"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only\
+ \ OR MIT) AND MIT"
+ licenseInfoFromFiles:
+ - "Apache-2.0"
+ - "BSD-2-Clause"
+ name: "pkg1"
+ packageVerificationCode:
+ packageVerificationCodeValue: "3700a1e8575c082653af662ac024337faf78990f"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0000000000000000000000000000000000000000"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ description: "Description of pkg1."
+ downloadLocation: "https://example.com/pkg1-sources.jar"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ filesAnalyzed: false
+ homepage: "https://example.com/pkg1/homepage"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only\
+ \ OR MIT) AND MIT"
+ name: "pkg1"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg2-grp/pkg2@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "NONE"
+ name: "pkg2"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg3-grp/pkg3@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "NONE"
+ name: "pkg3"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg4-grp/pkg4@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "MIT"
+ name: "pkg4"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg6-grp/pkg6@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "LicenseRef-scancode-srgb"
+ licenseDeclared: "LicenseRef-scancode-asmus"
+ name: "pkg6"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+ copyrightText: "Copyright 2020 Some copyright holder in source artifact"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "GPL-2.0-only WITH NOASSERTION"
+ name: "pkg7"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0000000000000000000000000000000000000000"
+ copyrightText: "Copyright 2020 Some copyright holder in source artifact"
+ downloadLocation: "https://example.com/pkg7-sources.jar"
+ externalRefs:
+ - referenceCategory: "PACKAGE_MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ filesAnalyzed: true
+ hasFiles:
+ - "SPDXRef-File-4"
+ - "SPDXRef-File-5"
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "GPL-2.0-only WITH NOASSERTION"
+ licenseInfoFromFiles:
+ - "GPL-2.0-only WITH NOASSERTION"
+ name: "pkg7"
+ packageVerificationCode:
+ packageVerificationCodeValue: "e14acc46fad3a38a1ef2830067619812b51cb4bc"
+ versionInfo: "0.0.1"
+files:
+- SPDXID: "SPDXRef-File-1"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ copyrightText: "NONE"
+ fileName: "LICENSE"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "Apache-2.0"
+ - "MIT"
+- SPDXID: "SPDXRef-File-2"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "b8f428421b06957fe3859ebc30df70d16fc537d4"
+ copyrightText: "Copyright (c) 2006-2010 Kirill Simonov"
+ fileName: "readerc.go"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "NONE"
+- SPDXID: "SPDXRef-File-3"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "8c38f605503f2a48ef7b6220ad06aa0f3387484b"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ fileName: "project-path/some/file"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "NONE"
+- SPDXID: "SPDXRef-File-4"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ copyrightText: "NONE"
+ fileName: "LICENSE"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "GPL-2.0-only WITH NOASSERTION"
+- SPDXID: "SPDXRef-File-5"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "4552f707bdf537911c9943cec56a0bf11bd8468d"
+ copyrightText: "Copyright 2020 Some copyright holder in source artifact"
+ fileName: "some/file"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "NONE"
+relationships:
+- spdxElementId: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact"
+- spdxElementId: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+- spdxElementId: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+- spdxElementId: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.yml.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.yml.ABOUT
new file mode 100644
index 0000000000..ff69f18560
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.2-funtest-resources/synthetic-scan-result-expected-output.spdx.yml.ABOUT
@@ -0,0 +1,12 @@
+about_resource: synthetic-scan-result-expected-output.spdx.json
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/spdx/src/funTest/resources/v2.2/synthetic-scan-result-expected-output.spdx.yml
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/spdx/src/funTest/resources/v2.2/synthetic-scan-result-expected-output.spdx.yml
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.json b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.json
new file mode 100644
index 0000000000..06a14b9488
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.json
@@ -0,0 +1,324 @@
+{
+ "SPDXID" : "SPDXRef-DOCUMENT",
+ "spdxVersion" : "SPDX-2.3",
+ "creationInfo" : {
+ "comment" : "some creation info comment",
+ "created" : "",
+ "creators" : [ "Person: some creation info person", "Organization: some creation info organization", "Tool: ort-" ],
+ "licenseListVersion" : ""
+ },
+ "name" : "some document name",
+ "dataLicense" : "CC0-1.0",
+ "comment" : "some document comment",
+ "hasExtractedLicensingInfos" : [ {
+ "extractedText" : "ASMUS License\n\nDisclaimer and legal rights\n---------------------------\n\nThis file contains bugs. All representations to the contrary are void.\n\nSource code in this file and the accompanying headers and included \nfiles may be distributed free of charge by anyone, as long as full \ncredit is given and any and all liabilities are assumed by the \nrecipient.",
+ "licenseId" : "LicenseRef-scancode-asmus"
+ }, {
+ "extractedText" : "To anyone who acknowledges that the file \"sRGB Color Space Profile.icm\" \nis provided \"AS IS\" WITH NO EXPRESS OR IMPLIED WARRANTY:\npermission to use, copy and distribute this file for any purpose is hereby \ngranted without fee, provided that the file is not changed including the HP \ncopyright notice tag, and that the name of Hewlett-Packard Company not be \nused in advertising or publicity pertaining to distribution of the software \nwithout specific, written prior permission. Hewlett-Packard Company makes \nno representations about the suitability of this software for any purpose.",
+ "licenseId" : "LicenseRef-scancode-srgb"
+ } ],
+ "documentNamespace" : "",
+ "documentDescribes" : [ "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1" ],
+ "packages" : [ {
+ "SPDXID" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "https://github.com/path/proj1-repo.git",
+ "filesAnalyzed" : false,
+ "homepage" : "https://example.com/proj1/homepage",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "MIT",
+ "name" : "proj1",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1",
+ "copyrightText" : "Copyright (c) 2006-2010 Kirill Simonov",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND MIT",
+ "name" : "gopkg.in/yaml.v3",
+ "versionInfo" : "3.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs",
+ "copyrightText" : "Copyright (c) 2006-2010 Kirill Simonov",
+ "downloadLocation" : "git+https://gopkg.in/yaml.v3@f6f7691b1fdeb513f56608cd2c32c51f8194bf51",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ } ],
+ "filesAnalyzed" : true,
+ "hasFiles" : [ "SPDXRef-File-1", "SPDXRef-File-2" ],
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND MIT",
+ "licenseInfoFromFiles" : [ "Apache-2.0", "MIT" ],
+ "name" : "gopkg.in/yaml.v3",
+ "packageVerificationCode" : {
+ "packageVerificationCodeValue" : "1ee5bcb5fe279ad210bd57c8bc9bcfe5ae99729f"
+ },
+ "versionInfo" : "3.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0000000000000000000000000000000000000000"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "description" : "Description of pkg1.",
+ "downloadLocation" : "https://example.com/pkg1.jar",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "https://example.com/pkg1/homepage",
+ "licenseConcluded" : "BSD-2-Clause AND BSD-3-Clause AND MIT",
+ "licenseDeclared" : "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only OR MIT) AND MIT",
+ "name" : "pkg1",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs",
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "description" : "Description of pkg1.",
+ "downloadLocation" : "git+ssh://github.com/path/pkg1-repo.git@deadbeef#project-path",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ } ],
+ "filesAnalyzed" : true,
+ "hasFiles" : [ "SPDXRef-File-3" ],
+ "homepage" : "https://example.com/pkg1/homepage",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only OR MIT) AND MIT",
+ "licenseInfoFromFiles" : [ "Apache-2.0", "BSD-2-Clause" ],
+ "name" : "pkg1",
+ "packageVerificationCode" : {
+ "packageVerificationCodeValue" : "3700a1e8575c082653af662ac024337faf78990f"
+ },
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0000000000000000000000000000000000000000"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "description" : "Description of pkg1.",
+ "downloadLocation" : "https://example.com/pkg1-sources.jar",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "https://example.com/pkg1/homepage",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only OR MIT) AND MIT",
+ "name" : "pkg1",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg2-grp/pkg2@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "NONE",
+ "name" : "pkg2",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg3-grp/pkg3@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "NONE",
+ "name" : "pkg3",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg4-grp/pkg4@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "MIT",
+ "name" : "pkg4",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1",
+ "copyrightText" : "NONE",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg6-grp/pkg6@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "LicenseRef-scancode-srgb",
+ "licenseDeclared" : "LicenseRef-scancode-asmus",
+ "name" : "pkg6",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1",
+ "copyrightText" : "Copyright 2020 Some copyright holder in source artifact",
+ "downloadLocation" : "NONE",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ } ],
+ "filesAnalyzed" : false,
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "GPL-2.0-only WITH NOASSERTION",
+ "name" : "pkg7",
+ "versionInfo" : "0.0.1"
+ }, {
+ "SPDXID" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0000000000000000000000000000000000000000"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in source artifact",
+ "downloadLocation" : "https://example.com/pkg7-sources.jar",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceType" : "purl",
+ "referenceLocator" : "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ } ],
+ "filesAnalyzed" : true,
+ "hasFiles" : [ "SPDXRef-File-4", "SPDXRef-File-5" ],
+ "homepage" : "NONE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseDeclared" : "GPL-2.0-only WITH NOASSERTION",
+ "licenseInfoFromFiles" : [ "GPL-2.0-only WITH NOASSERTION" ],
+ "name" : "pkg7",
+ "packageVerificationCode" : {
+ "packageVerificationCodeValue" : "e14acc46fad3a38a1ef2830067619812b51cb4bc"
+ },
+ "versionInfo" : "0.0.1"
+ } ],
+ "files" : [ {
+ "SPDXID" : "SPDXRef-File-1",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ } ],
+ "copyrightText" : "NONE",
+ "fileName" : "LICENSE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "Apache-2.0", "MIT" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-2",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "b8f428421b06957fe3859ebc30df70d16fc537d4"
+ } ],
+ "copyrightText" : "Copyright (c) 2006-2010 Kirill Simonov",
+ "fileName" : "readerc.go",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "NONE" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-3",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "8c38f605503f2a48ef7b6220ad06aa0f3387484b"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some copyright holder in source artifact\nCopyright 2020 Some other copyright holder in source artifact",
+ "fileName" : "project-path/some/file",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "NONE" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-4",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ } ],
+ "copyrightText" : "NONE",
+ "fileName" : "LICENSE",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "GPL-2.0-only WITH NOASSERTION" ]
+ }, {
+ "SPDXID" : "SPDXRef-File-5",
+ "checksums" : [ {
+ "algorithm" : "SHA1",
+ "checksumValue" : "4552f707bdf537911c9943cec56a0bf11bd8468d"
+ } ],
+ "copyrightText" : "Copyright 2020 Some copyright holder in source artifact",
+ "fileName" : "some/file",
+ "licenseConcluded" : "NOASSERTION",
+ "licenseInfoInFiles" : [ "NONE" ]
+ } ],
+ "relationships" : [ {
+ "spdxElementId" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1",
+ "relationshipType" : "GENERATED_FROM",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact"
+ }, {
+ "spdxElementId" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ }, {
+ "spdxElementId" : "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1",
+ "relationshipType" : "DEPENDS_ON",
+ "relatedSpdxElement" : "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
+ } ]
+}
\ No newline at end of file
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.json.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.json.ABOUT
new file mode 100644
index 0000000000..132e5dddd2
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.json.ABOUT
@@ -0,0 +1,12 @@
+about_resource: synthetic-scan-result-expected-output.spdx.json
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/spdx/src/funTest/resources/v2.3/synthetic-scan-result-expected-output.spdx.json
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/spdx/src/funTest/resources/v2.3/synthetic-scan-result-expected-output.spdx.json
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.yml b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.yml
new file mode 100644
index 0000000000..9e10a2da63
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.yml
@@ -0,0 +1,312 @@
+---
+SPDXID: "SPDXRef-DOCUMENT"
+spdxVersion: "SPDX-2.3"
+creationInfo:
+ comment: "some creation info comment"
+ created: ""
+ creators:
+ - "Person: some creation info person"
+ - "Organization: some creation info organization"
+ - "Tool: ort-"
+ licenseListVersion: ""
+name: "some document name"
+dataLicense: "CC0-1.0"
+comment: "some document comment"
+hasExtractedLicensingInfos:
+- extractedText: "ASMUS License\n\nDisclaimer and legal rights\n---------------------------\n\
+ \nThis file contains bugs. All representations to the contrary are void.\n\nSource\
+ \ code in this file and the accompanying headers and included \nfiles may be distributed\
+ \ free of charge by anyone, as long as full \ncredit is given and any and all\
+ \ liabilities are assumed by the \nrecipient."
+ licenseId: "LicenseRef-scancode-asmus"
+- extractedText: "To anyone who acknowledges that the file \"sRGB Color Space Profile.icm\"\
+ \ \nis provided \"AS IS\" WITH NO EXPRESS OR IMPLIED WARRANTY:\npermission to\
+ \ use, copy and distribute this file for any purpose is hereby \ngranted without\
+ \ fee, provided that the file is not changed including the HP \ncopyright notice\
+ \ tag, and that the name of Hewlett-Packard Company not be \nused in advertising\
+ \ or publicity pertaining to distribution of the software \nwithout specific,\
+ \ written prior permission. Hewlett-Packard Company makes \nno representations\
+ \ about the suitability of this software for any purpose."
+ licenseId: "LicenseRef-scancode-srgb"
+documentNamespace: ""
+documentDescribes:
+- "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+packages:
+- SPDXID: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "https://github.com/path/proj1-repo.git"
+ filesAnalyzed: false
+ homepage: "https://example.com/proj1/homepage"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "MIT"
+ name: "proj1"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+ copyrightText: "Copyright (c) 2006-2010 Kirill Simonov"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND MIT"
+ name: "gopkg.in/yaml.v3"
+ versionInfo: "3.0.1"
+- SPDXID: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs"
+ copyrightText: "Copyright (c) 2006-2010 Kirill Simonov"
+ downloadLocation: "git+https://gopkg.in/yaml.v3@f6f7691b1fdeb513f56608cd2c32c51f8194bf51"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:golang/gopkg.in/yaml.v3@3.0.1"
+ filesAnalyzed: true
+ hasFiles:
+ - "SPDXRef-File-1"
+ - "SPDXRef-File-2"
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND MIT"
+ licenseInfoFromFiles:
+ - "Apache-2.0"
+ - "MIT"
+ name: "gopkg.in/yaml.v3"
+ packageVerificationCode:
+ packageVerificationCodeValue: "1ee5bcb5fe279ad210bd57c8bc9bcfe5ae99729f"
+ versionInfo: "3.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0000000000000000000000000000000000000000"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ description: "Description of pkg1."
+ downloadLocation: "https://example.com/pkg1.jar"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ filesAnalyzed: false
+ homepage: "https://example.com/pkg1/homepage"
+ licenseConcluded: "BSD-2-Clause AND BSD-3-Clause AND MIT"
+ licenseDeclared: "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only\
+ \ OR MIT) AND MIT"
+ name: "pkg1"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ description: "Description of pkg1."
+ downloadLocation: "git+ssh://github.com/path/pkg1-repo.git@deadbeef#project-path"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ filesAnalyzed: true
+ hasFiles:
+ - "SPDXRef-File-3"
+ homepage: "https://example.com/pkg1/homepage"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only\
+ \ OR MIT) AND MIT"
+ licenseInfoFromFiles:
+ - "Apache-2.0"
+ - "BSD-2-Clause"
+ name: "pkg1"
+ packageVerificationCode:
+ packageVerificationCodeValue: "3700a1e8575c082653af662ac024337faf78990f"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0000000000000000000000000000000000000000"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ description: "Description of pkg1."
+ downloadLocation: "https://example.com/pkg1-sources.jar"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg1-grp/pkg1@0.0.1"
+ filesAnalyzed: false
+ homepage: "https://example.com/pkg1/homepage"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-only\
+ \ OR MIT) AND MIT"
+ name: "pkg1"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg2-grp/pkg2@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "NONE"
+ name: "pkg2"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg3-grp/pkg3@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "NONE"
+ name: "pkg3"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg4-grp/pkg4@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "MIT"
+ name: "pkg4"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1"
+ copyrightText: "NONE"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg6-grp/pkg6@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "LicenseRef-scancode-srgb"
+ licenseDeclared: "LicenseRef-scancode-asmus"
+ name: "pkg6"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+ copyrightText: "Copyright 2020 Some copyright holder in source artifact"
+ downloadLocation: "NONE"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ filesAnalyzed: false
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "GPL-2.0-only WITH NOASSERTION"
+ name: "pkg7"
+ versionInfo: "0.0.1"
+- SPDXID: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0000000000000000000000000000000000000000"
+ copyrightText: "Copyright 2020 Some copyright holder in source artifact"
+ downloadLocation: "https://example.com/pkg7-sources.jar"
+ externalRefs:
+ - referenceCategory: "PACKAGE-MANAGER"
+ referenceType: "purl"
+ referenceLocator: "pkg:maven/pkg7-grp/pkg7@0.0.1"
+ filesAnalyzed: true
+ hasFiles:
+ - "SPDXRef-File-4"
+ - "SPDXRef-File-5"
+ homepage: "NONE"
+ licenseConcluded: "NOASSERTION"
+ licenseDeclared: "GPL-2.0-only WITH NOASSERTION"
+ licenseInfoFromFiles:
+ - "GPL-2.0-only WITH NOASSERTION"
+ name: "pkg7"
+ packageVerificationCode:
+ packageVerificationCodeValue: "e14acc46fad3a38a1ef2830067619812b51cb4bc"
+ versionInfo: "0.0.1"
+files:
+- SPDXID: "SPDXRef-File-1"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ copyrightText: "NONE"
+ fileName: "LICENSE"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "Apache-2.0"
+ - "MIT"
+- SPDXID: "SPDXRef-File-2"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "b8f428421b06957fe3859ebc30df70d16fc537d4"
+ copyrightText: "Copyright (c) 2006-2010 Kirill Simonov"
+ fileName: "readerc.go"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "NONE"
+- SPDXID: "SPDXRef-File-3"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "8c38f605503f2a48ef7b6220ad06aa0f3387484b"
+ copyrightText: "Copyright 2020 Some copyright holder in VCS\nCopyright 2020 Some\
+ \ copyright holder in source artifact\nCopyright 2020 Some other copyright holder\
+ \ in source artifact"
+ fileName: "project-path/some/file"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "NONE"
+- SPDXID: "SPDXRef-File-4"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "0398ccd0f49298b10a3d76a47800d2ebecd49859"
+ copyrightText: "NONE"
+ fileName: "LICENSE"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "GPL-2.0-only WITH NOASSERTION"
+- SPDXID: "SPDXRef-File-5"
+ checksums:
+ - algorithm: "SHA1"
+ checksumValue: "4552f707bdf537911c9943cec56a0bf11bd8468d"
+ copyrightText: "Copyright 2020 Some copyright holder in source artifact"
+ fileName: "some/file"
+ licenseConcluded: "NOASSERTION"
+ licenseInfoInFiles:
+ - "NONE"
+relationships:
+- spdxElementId: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1-vcs"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-source-artifact"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1-vcs"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg2-grp-pkg2-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg3-grp-pkg3-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg6-grp-pkg6-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+- spdxElementId: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1"
+ relationshipType: "GENERATED_FROM"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg7-grp-pkg7-0.0.1-source-artifact"
+- spdxElementId: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Go-gopkg.in.yaml.v3-3.0.1"
+- spdxElementId: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg1-grp-pkg1-0.0.1"
+- spdxElementId: "SPDXRef-Project-Maven-proj1-grp-proj1-0.0.1"
+ relationshipType: "DEPENDS_ON"
+ relatedSpdxElement: "SPDXRef-Package-Maven-pkg4-grp-pkg4-0.0.1"
diff --git a/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.yml.ABOUT b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.yml.ABOUT
new file mode 100644
index 0000000000..b1b503f7a7
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/ort-reporter-spdx-2.3-funtest-resources/synthetic-scan-result-expected-output.spdx.yml.ABOUT
@@ -0,0 +1,12 @@
+about_resource: synthetic-scan-result-expected-output.spdx.json
+name: ort
+version: 67.1.0
+download_url: https://raw.githubusercontent.com/oss-review-toolkit/ort/729d577730ee46c3bded6cf04d5aa9813b6a8591/plugins/reporters/spdx/src/funTest/resources/v2.3/synthetic-scan-result-expected-output.spdx.yml
+description: The OSS Review Toolkit (ORT) is a FOSS policy automation and orchestration toolkit
+homepage_url: https://oss-review-toolkit.org
+license_expression: apache-2.0
+copyright: Copyright (C) 2017-2025 The ORT Project Authors
+redistribute: yes
+attribute: yes
+track_changes: yes
+package_url: pkg:github/oss-review-toolkit/ort@67.1.0#plugins/reporters/spdx/src/funTest/resources/v2.3/synthetic-scan-result-expected-output.spdx.yml
diff --git a/scanpipe/tests/data/integrations-ort/orthw-example-scan-result/npm-mime-types-2.1.26-scan-result.json b/scanpipe/tests/data/integrations-ort/orthw-example-scan-result/npm-mime-types-2.1.26-scan-result.json
new file mode 100644
index 0000000000..03b4fec658
--- /dev/null
+++ b/scanpipe/tests/data/integrations-ort/orthw-example-scan-result/npm-mime-types-2.1.26-scan-result.json
@@ -0,0 +1,187319 @@
+{
+ "repository" : {
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-types.git",
+ "revision" : "73f9933bfa5247337b459240ec67ea6045cdec84",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-types.git",
+ "revision" : "73f9933bfa5247337b459240ec67ea6045cdec84",
+ "path" : ""
+ },
+ "config" : { }
+ },
+ "analyzer" : {
+ "start_time" : "2023-02-02T07:51:34.740477910Z",
+ "end_time" : "2023-02-02T07:53:20.750306210Z",
+ "environment" : {},
+ "config" : {},
+ "result" : {
+ "projects" : [ {
+ "id" : "NPM::mime-types:2.1.26",
+ "definition_file_path" : "package.json",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "vcs" : {
+ "type" : "",
+ "url" : "https://github.com/jshttp/mime-types.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-types.git",
+ "revision" : "73f9933bfa5247337b459240ec67ea6045cdec84",
+ "path" : ""
+ },
+ "homepage_url" : "",
+ "scope_names" : [ "devDependencies", "dependencies" ]
+ } ],
+ "packages" : [ {
+ "id" : "NPM::acorn:7.4.1",
+ "purl" : "pkg:npm/acorn@7.4.1",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ECMAScript parser",
+ "homepage_url" : "https://github.com/acornjs/acorn",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "hash" : {
+ "value" : "feaed255973d2e77555b83dbc08851a6c63520fa",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/acornjs/acorn.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/acornjs/acorn.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::acorn-jsx:5.3.2",
+ "purl" : "pkg:npm/acorn-jsx@5.3.2",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Modern, fast React.js JSX parser",
+ "homepage_url" : "https://github.com/acornjs/acorn-jsx",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "hash" : {
+ "value" : "7ed5bb55908b3b2f1bc55c6af1653bada7f07937",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/acornjs/acorn-jsx.git",
+ "revision" : "f5c107b85872230d5016dbb97d71788575cda9c3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/acornjs/acorn-jsx.git",
+ "revision" : "f5c107b85872230d5016dbb97d71788575cda9c3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::aggregate-error:3.1.0",
+ "purl" : "pkg:npm/aggregate-error@3.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Create an error from multiple errors",
+ "homepage_url" : "https://github.com/sindresorhus/aggregate-error#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
+ "hash" : {
+ "value" : "92670ff50f5359bdb7a3e0d40d0ec30c5737687a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/aggregate-error.git",
+ "revision" : "d5bb4ac02a43f005ec7ad45f6e62919d7ebed0e5",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/aggregate-error.git",
+ "revision" : "d5bb4ac02a43f005ec7ad45f6e62919d7ebed0e5",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ajv:6.12.6",
+ "purl" : "pkg:npm/ajv@6.12.6",
+ "authors" : [ "Evgeny Poberezkin" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Another JSON Schema Validator",
+ "homepage_url" : "https://github.com/ajv-validator/ajv",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "hash" : {
+ "value" : "baf5a62e802b07d977034586f8c3baf5adf26df4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ajv-validator/ajv.git",
+ "revision" : "fe591439f34e24030f69df9eb8d91e6d037a3af7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ajv-validator/ajv.git",
+ "revision" : "fe591439f34e24030f69df9eb8d91e6d037a3af7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ansi-colors:3.2.3",
+ "purl" : "pkg:npm/ansi-colors@3.2.3",
+ "authors" : [ "Brian Woodward" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in replacement for chalk, kleur and turbocolor (without the dependencies and rendering bugs).",
+ "homepage_url" : "https://github.com/doowb/ansi-colors",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz",
+ "hash" : {
+ "value" : "57d35b8686e851e2cc04c403f1c00203976a1813",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/doowb/ansi-colors.git",
+ "revision" : "d2a3fcdcd6babdd8c9429fa9277a858e2fc97e3b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/doowb/ansi-colors.git",
+ "revision" : "d2a3fcdcd6babdd8c9429fa9277a858e2fc97e3b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ansi-escapes:4.3.2",
+ "purl" : "pkg:npm/ansi-escapes@4.3.2",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ANSI escape codes for manipulating the terminal",
+ "homepage_url" : "https://github.com/sindresorhus/ansi-escapes#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "hash" : {
+ "value" : "6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/ansi-escapes.git",
+ "revision" : "ca9d5f8eb6ecfcf6ef2d8764a056d865e68bf178",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/ansi-escapes.git",
+ "revision" : "ca9d5f8eb6ecfcf6ef2d8764a056d865e68bf178",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ansi-regex:3.0.1",
+ "purl" : "pkg:npm/ansi-regex@3.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression for matching ANSI escape codes",
+ "homepage_url" : "https://github.com/chalk/ansi-regex#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
+ "hash" : {
+ "value" : "123d6479e92ad45ad897d4054e3c7ca7db4944e1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/ansi-regex.git",
+ "revision" : "f545bdb80048f527889eddb9ac1a851c6f2a2241",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "f545bdb80048f527889eddb9ac1a851c6f2a2241",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ansi-regex:4.1.1",
+ "purl" : "pkg:npm/ansi-regex@4.1.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression for matching ANSI escape codes",
+ "homepage_url" : "https://github.com/chalk/ansi-regex#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
+ "hash" : {
+ "value" : "164daac87ab2d6f6db3a29875e2d1766582dabed",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/ansi-regex.git",
+ "revision" : "64735d25eb839b55bc9fae3877edb702b4c92ca2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "64735d25eb839b55bc9fae3877edb702b4c92ca2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ansi-regex:5.0.1",
+ "purl" : "pkg:npm/ansi-regex@5.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression for matching ANSI escape codes",
+ "homepage_url" : "https://github.com/chalk/ansi-regex#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "hash" : {
+ "value" : "082cb2c89c9fe8659a311a53bd6a4dc5301db304",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/ansi-regex.git",
+ "revision" : "a9babce885cf19c363cf1d1c645f834592c3f7a4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "a9babce885cf19c363cf1d1c645f834592c3f7a4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ansi-styles:3.2.1",
+ "purl" : "pkg:npm/ansi-styles@3.2.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ANSI escape codes for styling strings in the terminal",
+ "homepage_url" : "https://github.com/chalk/ansi-styles#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "hash" : {
+ "value" : "41fbb20243e50b12be0f04b8dedbf07520ce841d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/ansi-styles.git",
+ "revision" : "de7527a86c1cf49906b0eb32a0de1402d849ccc2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-styles.git",
+ "revision" : "de7527a86c1cf49906b0eb32a0de1402d849ccc2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ansi-styles:4.3.0",
+ "purl" : "pkg:npm/ansi-styles@4.3.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ANSI escape codes for styling strings in the terminal",
+ "homepage_url" : "https://github.com/chalk/ansi-styles#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "hash" : {
+ "value" : "edd803628ae71c04c85ae7a0906edad34b648937",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/ansi-styles.git",
+ "revision" : "2d02d5bd070f733179007f0904eb5fb41090395a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-styles.git",
+ "revision" : "2d02d5bd070f733179007f0904eb5fb41090395a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::anymatch:3.1.3",
+ "purl" : "pkg:npm/anymatch@3.1.3",
+ "authors" : [ "Elan Shanker" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Matches strings against configurable strings, globs, regular expressions, and/or functions",
+ "homepage_url" : "https://github.com/micromatch/anymatch",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "hash" : {
+ "value" : "790c58b19ba1720a84205b57c618d5ad8524973e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/micromatch/anymatch.git",
+ "revision" : "cbd278e43710eaf325d2061fa11aefd127c509be",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/anymatch.git",
+ "revision" : "cbd278e43710eaf325d2061fa11aefd127c509be",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::append-transform:2.0.0",
+ "purl" : "pkg:npm/append-transform@2.0.0",
+ "authors" : [ "James Talmage" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.",
+ "homepage_url" : "https://github.com/istanbuljs/append-transform#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz",
+ "hash" : {
+ "value" : "99d9d29c7b38391e6f428d28ce136551f0b77e12",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/istanbuljs/append-transform.git",
+ "revision" : "3c2618eb953a5de61099452f2b4764a1e1d10674",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/append-transform.git",
+ "revision" : "3c2618eb953a5de61099452f2b4764a1e1d10674",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::archy:1.0.0",
+ "purl" : "pkg:npm/archy@1.0.0",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "render nested hierarchies `npm ls` style with unicode pipes",
+ "homepage_url" : "https://github.com/substack/node-archy",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
+ "hash" : {
+ "value" : "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "http://github.com/substack/node-archy.git",
+ "revision" : "30223c16191e877bf027b15b12daf077b9b55b84",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-archy.git",
+ "revision" : "30223c16191e877bf027b15b12daf077b9b55b84",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::argparse:1.0.10",
+ "purl" : "pkg:npm/argparse@1.0.10",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library",
+ "homepage_url" : "https://github.com/nodeca/argparse#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "hash" : {
+ "value" : "bcd6791ea5ae09725e17e5ad988134cd40b3d911",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/nodeca/argparse.git",
+ "revision" : "ea45e14bad13b9e4a10af28f11fb7e731079ab72",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/argparse.git",
+ "revision" : "ea45e14bad13b9e4a10af28f11fb7e731079ab72",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::array-includes:3.1.6",
+ "purl" : "pkg:npm/array-includes@3.1.6",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3.",
+ "homepage_url" : "https://github.com/es-shims/array-includes#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
+ "hash" : {
+ "value" : "9e9e720e194f198266ba9e18c29e6a9b0e4b225f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/array-includes.git",
+ "revision" : "4b1922ef553490e4b28008f5d0b0b629122fb04b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/array-includes.git",
+ "revision" : "4b1922ef553490e4b28008f5d0b0b629122fb04b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::array.prototype.flat:1.3.1",
+ "purl" : "pkg:npm/array.prototype.flat@1.3.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "An ES2019 spec-compliant `Array.prototype.flat` shim/polyfill/replacement that works as far down as ES3.",
+ "homepage_url" : "https://github.com/es-shims/Array.prototype.flat#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
+ "hash" : {
+ "value" : "ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/Array.prototype.flat.git",
+ "revision" : "bf9db3ed1c011dc501be343f7d4fd03c87945aee",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Array.prototype.flat.git",
+ "revision" : "bf9db3ed1c011dc501be343f7d4fd03c87945aee",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::array.prototype.reduce:1.0.5",
+ "purl" : "pkg:npm/array.prototype.reduce@1.0.5",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "An ES5 spec-compliant `Array.prototype.reduce` shim/polyfill/replacement that works as far down as ES3.",
+ "homepage_url" : "https://github.com/es-shims/Array.prototype.reduce#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz",
+ "hash" : {
+ "value" : "6b20b0daa9d9734dd6bc7ea66b5bbce395471eac",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/es-shims/Array.prototype.reduce.git",
+ "revision" : "9721175338f7085d7c76f73d2c827a44d1307b89",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Array.prototype.reduce.git",
+ "revision" : "9721175338f7085d7c76f73d2c827a44d1307b89",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::astral-regex:1.0.0",
+ "purl" : "pkg:npm/astral-regex@1.0.0",
+ "authors" : [ "Kevin Mårtensson" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression for matching astral symbols",
+ "homepage_url" : "https://github.com/kevva/astral-regex#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
+ "hash" : {
+ "value" : "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/kevva/astral-regex.git",
+ "revision" : "20d5f406d37af3697145eb415355a89fdd4a2279",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/astral-regex.git",
+ "revision" : "20d5f406d37af3697145eb415355a89fdd4a2279",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::available-typed-arrays:1.0.5",
+ "purl" : "pkg:npm/available-typed-arrays@1.0.5",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Returns an array of Typed Array names that are available in the current environment",
+ "homepage_url" : "https://github.com/inspect-js/available-typed-arrays#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
+ "hash" : {
+ "value" : "92f95616501069d07d10edb2fc37d3e1c65123b7",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/available-typed-arrays.git",
+ "revision" : "d0f3cb979af4322acaa149e08ae58fd4faed3715",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/available-typed-arrays.git",
+ "revision" : "d0f3cb979af4322acaa149e08ae58fd4faed3715",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::balanced-match:1.0.2",
+ "purl" : "pkg:npm/balanced-match@1.0.2",
+ "authors" : [ "Julian Gruber" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Match balanced character pairs, like \"{\" and \"}\"",
+ "homepage_url" : "https://github.com/juliangruber/balanced-match",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "hash" : {
+ "value" : "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/juliangruber/balanced-match.git",
+ "revision" : "c7412e09b95d6ad97fd1e2996f6adca7626a9ae8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/balanced-match.git",
+ "revision" : "c7412e09b95d6ad97fd1e2996f6adca7626a9ae8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::binary-extensions:2.2.0",
+ "purl" : "pkg:npm/binary-extensions@2.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "List of binary file extensions",
+ "homepage_url" : "https://github.com/sindresorhus/binary-extensions#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+ "hash" : {
+ "value" : "75f502eeaf9ffde42fc98829645be4ea76bd9e2d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/binary-extensions.git",
+ "revision" : "40e44b510d87a63dcf42300bc8fbcb105f45a61c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/binary-extensions.git",
+ "revision" : "40e44b510d87a63dcf42300bc8fbcb105f45a61c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::brace-expansion:1.1.11",
+ "purl" : "pkg:npm/brace-expansion@1.1.11",
+ "authors" : [ "Julian Gruber" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Brace expansion as known from sh/bash",
+ "homepage_url" : "https://github.com/juliangruber/brace-expansion",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "hash" : {
+ "value" : "3c7fcbf529d87226f3d2f52b966ff5271eb441dd",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/juliangruber/brace-expansion.git",
+ "revision" : "01a21de7441549d26ac0c0a9ff91385d16e5c21c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/brace-expansion.git",
+ "revision" : "01a21de7441549d26ac0c0a9ff91385d16e5c21c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::braces:3.0.2",
+ "purl" : "pkg:npm/braces@3.0.2",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.",
+ "homepage_url" : "https://github.com/micromatch/braces",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "hash" : {
+ "value" : "3454e1a462ee8d599e236df336cd9ea4f8afe107",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/micromatch/braces.git",
+ "revision" : "25791512d219b284bd62bb068cae85d8e68bd05b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/braces.git",
+ "revision" : "25791512d219b284bd62bb068cae85d8e68bd05b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::browser-stdout:1.3.1",
+ "purl" : "pkg:npm/browser-stdout@1.3.1",
+ "authors" : [ "kumavis" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "`process.stdout` in your browser.",
+ "homepage_url" : "https://github.com/kumavis/browser-stdout#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
+ "hash" : {
+ "value" : "baa559ee14ced73452229bad7326467c61fabd60",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/kumavis/browser-stdout.git",
+ "revision" : "456b7f33c2d535fc88cf732d1a0e2d48a7600a1b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/kumavis/browser-stdout.git",
+ "revision" : "456b7f33c2d535fc88cf732d1a0e2d48a7600a1b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::browserslist:4.21.5",
+ "purl" : "pkg:npm/browserslist@4.21.5",
+ "authors" : [ "Andrey Sitnik" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
+ "homepage_url" : "https://github.com/browserslist/browserslist#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz",
+ "hash" : {
+ "value" : "75c5dae60063ee641f977e00edd3cfb2fb7af6a7",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/browserslist/browserslist.git",
+ "revision" : "fc5fc088c640466df62a6b6c86154b19be3de821",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/browserslist.git",
+ "revision" : "fc5fc088c640466df62a6b6c86154b19be3de821",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::caching-transform:4.0.0",
+ "purl" : "pkg:npm/caching-transform@4.0.0",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Wraps a transform and provides caching",
+ "homepage_url" : "https://github.com/istanbuljs/caching-transform#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz",
+ "hash" : {
+ "value" : "00d297a4206d71e2163c39eaffa8157ac0651f0f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/istanbuljs/caching-transform.git",
+ "revision" : "961cc0dab59f4327795446eb41e700c067d0b87d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/caching-transform.git",
+ "revision" : "961cc0dab59f4327795446eb41e700c067d0b87d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::call-bind:1.0.2",
+ "purl" : "pkg:npm/call-bind@1.0.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Robustly `.call.bind()` a function",
+ "homepage_url" : "https://github.com/ljharb/call-bind#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+ "hash" : {
+ "value" : "b1d4e89e688119c3c9a903ad30abb2f6a919be3c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/call-bind.git",
+ "revision" : "42b3cbfb095850822acd2352ec2a8cd0f7f58dd0",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/call-bind.git",
+ "revision" : "42b3cbfb095850822acd2352ec2a8cd0f7f58dd0",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::callsites:3.1.0",
+ "purl" : "pkg:npm/callsites@3.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get callsites from the V8 stack trace API",
+ "homepage_url" : "https://github.com/sindresorhus/callsites#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "hash" : {
+ "value" : "b3630abd8943432f54b3f0519238e33cd7df2f73",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/callsites.git",
+ "revision" : "f89815af2e0255094283c86977f1e679a8fb411b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/callsites.git",
+ "revision" : "f89815af2e0255094283c86977f1e679a8fb411b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::camelcase:5.3.1",
+ "purl" : "pkg:npm/camelcase@5.3.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`",
+ "homepage_url" : "https://github.com/sindresorhus/camelcase#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "hash" : {
+ "value" : "e3c9b31569e106811df242f715725a1f4c494320",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/camelcase.git",
+ "revision" : "cbe5a519ec6745adbb5283d5ee8c5c9889050d74",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/camelcase.git",
+ "revision" : "cbe5a519ec6745adbb5283d5ee8c5c9889050d74",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::caniuse-lite:1.0.30001450",
+ "purl" : "pkg:npm/caniuse-lite@1.0.30001450",
+ "authors" : [ "Ben Briggs" ],
+ "declared_licenses" : [ "CC-BY-4.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "CC-BY-4.0"
+ },
+ "description" : "A smaller version of caniuse-db, with only the essentials!",
+ "homepage_url" : "https://github.com/browserslist/caniuse-lite#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001450.tgz",
+ "hash" : {
+ "value" : "022225b91200589196b814b51b1bbe45144cf74f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/browserslist/caniuse-lite.git",
+ "revision" : "01cc73e61eecf5ac219d65554e973f9b9f088216",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/caniuse-lite.git",
+ "revision" : "01cc73e61eecf5ac219d65554e973f9b9f088216",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::chalk:2.4.2",
+ "purl" : "pkg:npm/chalk@2.4.2",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Terminal string styling done right",
+ "homepage_url" : "https://github.com/chalk/chalk#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "hash" : {
+ "value" : "cd42541677a54333cf541a49108c1432b44c9424",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/chalk.git",
+ "revision" : "9776a2ae5b5b1712ccf16416b55f47e575a81fb9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/chalk.git",
+ "revision" : "9776a2ae5b5b1712ccf16416b55f47e575a81fb9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::chalk:4.1.2",
+ "purl" : "pkg:npm/chalk@4.1.2",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Terminal string styling done right",
+ "homepage_url" : "https://github.com/chalk/chalk#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "hash" : {
+ "value" : "aac4e2b7734a740867aeb16bf02aad556a1e7a01",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/chalk.git",
+ "revision" : "95d74cbe8d3df3674dec1445a4608d3288d8b73c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/chalk.git",
+ "revision" : "95d74cbe8d3df3674dec1445a4608d3288d8b73c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::chardet:0.7.0",
+ "purl" : "pkg:npm/chardet@0.7.0",
+ "authors" : [ "Dmitry Shirokov" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Character detector",
+ "homepage_url" : "https://github.com/runk/node-chardet",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+ "hash" : {
+ "value" : "90094849f0937f2eedc2425d0d28a9e5f0cbad9e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/runk/node-chardet.git",
+ "revision" : "5156e3063ae8e8ba7f0d599378d024a4f403993c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/runk/node-chardet.git",
+ "revision" : "5156e3063ae8e8ba7f0d599378d024a4f403993c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::chokidar:3.3.0",
+ "purl" : "pkg:npm/chokidar@3.3.0",
+ "authors" : [ "Paul Miller" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.",
+ "homepage_url" : "https://github.com/paulmillr/chokidar",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/chokidar/-/chokidar-3.3.0.tgz",
+ "hash" : {
+ "value" : "12c0714668c55800f659e262d4962a97faf554a6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/paulmillr/chokidar.git",
+ "revision" : "ccf759aac9af8a484924aeacd1e1a5280f508a75",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/paulmillr/chokidar.git",
+ "revision" : "ccf759aac9af8a484924aeacd1e1a5280f508a75",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::clean-stack:2.2.0",
+ "purl" : "pkg:npm/clean-stack@2.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Clean up error stack traces",
+ "homepage_url" : "https://github.com/sindresorhus/clean-stack#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "hash" : {
+ "value" : "ee8472dbb129e727b31e8a10a427dee9dfe4008b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/clean-stack.git",
+ "revision" : "91440c5a1615354fb9419354650937c434eb9f49",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/clean-stack.git",
+ "revision" : "91440c5a1615354fb9419354650937c434eb9f49",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::cli-cursor:3.1.0",
+ "purl" : "pkg:npm/cli-cursor@3.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Toggle the CLI cursor",
+ "homepage_url" : "https://github.com/sindresorhus/cli-cursor#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "hash" : {
+ "value" : "264305a7ae490d1d03bf0c9ba7c925d1753af307",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/cli-cursor.git",
+ "revision" : "49edacfb841a9dac691972c2aa5d40dba8e0b56b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/cli-cursor.git",
+ "revision" : "49edacfb841a9dac691972c2aa5d40dba8e0b56b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::cli-width:3.0.0",
+ "purl" : "pkg:npm/cli-width@3.0.0",
+ "authors" : [ "Ilya Radchenko" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Get stdout window width, with two fallbacks, tty and then a default.",
+ "homepage_url" : "https://github.com/knownasilya/cli-width",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
+ "hash" : {
+ "value" : "a2f48437a2caa9a22436e794bf071ec9e61cedf6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/knownasilya/cli-width.git",
+ "revision" : "c96cf6e8b9a02256ded31e412490e29dbad30603",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/knownasilya/cli-width.git",
+ "revision" : "c96cf6e8b9a02256ded31e412490e29dbad30603",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::cliui:5.0.0",
+ "purl" : "pkg:npm/cliui@5.0.0",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "easily create complex multi-column command-line-interfaces",
+ "homepage_url" : "https://github.com/yargs/cliui#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
+ "hash" : {
+ "value" : "deefcfdb2e800784aa34f46fa08e06851c7bbbc5",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/yargs/cliui.git",
+ "revision" : "e49b32f3358d0269663f80d4e2a81c9936af3ba9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/cliui.git",
+ "revision" : "e49b32f3358d0269663f80d4e2a81c9936af3ba9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::cliui:6.0.0",
+ "purl" : "pkg:npm/cliui@6.0.0",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "easily create complex multi-column command-line-interfaces",
+ "homepage_url" : "https://github.com/yargs/cliui#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+ "hash" : {
+ "value" : "511d702c0c4e41ca156d7d0e96021f23e13225b1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/yargs/cliui.git",
+ "revision" : "7761da3e8cddd1f49024252a6b0195a94565b357",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/cliui.git",
+ "revision" : "7761da3e8cddd1f49024252a6b0195a94565b357",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::color-convert:1.9.3",
+ "purl" : "pkg:npm/color-convert@1.9.3",
+ "authors" : [ "Heather Arthur" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Plain color conversion functions",
+ "homepage_url" : "https://github.com/Qix-/color-convert#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "hash" : {
+ "value" : "bb71850690e1f136567de629d2d5471deda4c1e8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/Qix-/color-convert.git",
+ "revision" : "99dc5da127d3d17d0ff8d13a995fd2d6aab404aa",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/Qix-/color-convert.git",
+ "revision" : "99dc5da127d3d17d0ff8d13a995fd2d6aab404aa",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::color-convert:2.0.1",
+ "purl" : "pkg:npm/color-convert@2.0.1",
+ "authors" : [ "Heather Arthur" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Plain color conversion functions",
+ "homepage_url" : "https://github.com/Qix-/color-convert#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "hash" : {
+ "value" : "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/Qix-/color-convert.git",
+ "revision" : "e1cb7846258e1d7aa25873814684d4fbbbca53ed",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/Qix-/color-convert.git",
+ "revision" : "e1cb7846258e1d7aa25873814684d4fbbbca53ed",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::color-name:1.1.3",
+ "purl" : "pkg:npm/color-name@1.1.3",
+ "authors" : [ "DY" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A list of color names and its values",
+ "homepage_url" : "https://github.com/dfcreative/color-name",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "hash" : {
+ "value" : "a7d0558bd89c42f795dd42328f740831ca53bc25",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/dfcreative/color-name.git",
+ "revision" : "cb7d4629b00fe38564f741a0779f6ad84d8007a2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/dfcreative/color-name.git",
+ "revision" : "cb7d4629b00fe38564f741a0779f6ad84d8007a2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::color-name:1.1.4",
+ "purl" : "pkg:npm/color-name@1.1.4",
+ "authors" : [ "DY" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A list of color names and its values",
+ "homepage_url" : "https://github.com/colorjs/color-name",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "hash" : {
+ "value" : "c2a09a87acbde69543de6f63fa3995c826c536a2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/colorjs/color-name.git",
+ "revision" : "4536ce5944f56659a2dfb2198eaf81b5ad5f2ad9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/colorjs/color-name.git",
+ "revision" : "4536ce5944f56659a2dfb2198eaf81b5ad5f2ad9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::commondir:1.0.1",
+ "purl" : "pkg:npm/commondir@1.0.1",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "compute the closest common parent for file paths",
+ "homepage_url" : "https://github.com/substack/node-commondir",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "hash" : {
+ "value" : "ddd800da0c66127393cca5950ea968a3aaf1253b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "http://github.com/substack/node-commondir.git",
+ "revision" : "57797b60db24c60029f7593995241749b1704902",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-commondir.git",
+ "revision" : "57797b60db24c60029f7593995241749b1704902",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::concat-map:0.0.1",
+ "purl" : "pkg:npm/concat-map@0.0.1",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "concatenative mapdashery",
+ "homepage_url" : "https://github.com/substack/node-concat-map",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "hash" : {
+ "value" : "d8a96bd77fd68df7793a73036a3ba0d5405d477b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/substack/node-concat-map.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-concat-map.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::contains-path:0.1.0",
+ "purl" : "pkg:npm/contains-path@0.1.0",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Return true if a file path contains the given path.",
+ "homepage_url" : "https://github.com/jonschlinkert/contains-path",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
+ "hash" : {
+ "value" : "fe8cf184ff6670b6baef01a9d4861a5cbec4120a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/contains-path.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/contains-path.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::convert-source-map:1.9.0",
+ "purl" : "pkg:npm/convert-source-map@1.9.0",
+ "authors" : [ "Thorsten Lorenz" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Converts a source-map from/to different formats and allows adding/changing properties.",
+ "homepage_url" : "https://github.com/thlorenz/convert-source-map",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "hash" : {
+ "value" : "7faae62353fb4213366d0ca98358d22e8368b05f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/thlorenz/convert-source-map.git",
+ "revision" : "46c2b78aa56d25a77d3ea237051aeb5d9e7f750c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/thlorenz/convert-source-map.git",
+ "revision" : "46c2b78aa56d25a77d3ea237051aeb5d9e7f750c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::cross-spawn:6.0.5",
+ "purl" : "pkg:npm/cross-spawn@6.0.5",
+ "authors" : [ "André Cruz" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Cross platform child_process#spawn and child_process#spawnSync",
+ "homepage_url" : "https://github.com/moxystudio/node-cross-spawn",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "hash" : {
+ "value" : "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/moxystudio/node-cross-spawn.git",
+ "revision" : "301187a05b7509aa1d6ff35d8ff6d6064f597bc9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/moxystudio/node-cross-spawn.git",
+ "revision" : "301187a05b7509aa1d6ff35d8ff6d6064f597bc9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::cross-spawn:7.0.3",
+ "purl" : "pkg:npm/cross-spawn@7.0.3",
+ "authors" : [ "André Cruz" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Cross platform child_process#spawn and child_process#spawnSync",
+ "homepage_url" : "https://github.com/moxystudio/node-cross-spawn",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "hash" : {
+ "value" : "f73a85b9d5d41d045551c177e2882d4ac85728a6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/moxystudio/node-cross-spawn.git",
+ "revision" : "7bc42bc409d9da6ad691df8d1d5ef69003bf1dc3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/moxystudio/node-cross-spawn.git",
+ "revision" : "7bc42bc409d9da6ad691df8d1d5ef69003bf1dc3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::debug:2.6.9",
+ "purl" : "pkg:npm/debug@2.6.9",
+ "authors" : [ "TJ Holowaychuk" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "small debugging utility",
+ "homepage_url" : "https://github.com/visionmedia/debug#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "hash" : {
+ "value" : "5d128515df134ff327e90a4c93f4e077a536341f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/visionmedia/debug.git",
+ "revision" : "13abeae468fea297d0dccc50bc55590809241083",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/debug.git",
+ "revision" : "13abeae468fea297d0dccc50bc55590809241083",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::debug:3.2.6",
+ "purl" : "pkg:npm/debug@3.2.6",
+ "authors" : [ "TJ Holowaychuk" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "small debugging utility",
+ "homepage_url" : "https://github.com/visionmedia/debug#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
+ "hash" : {
+ "value" : "e83d17de16d8a7efb7717edbe5fb10135eee629b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/visionmedia/debug.git",
+ "revision" : "a7a17c9955460435592de2a4d3c722e9b32047a8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/debug.git",
+ "revision" : "a7a17c9955460435592de2a4d3c722e9b32047a8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::debug:3.2.7",
+ "purl" : "pkg:npm/debug@3.2.7",
+ "authors" : [ "TJ Holowaychuk" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "small debugging utility",
+ "homepage_url" : "https://github.com/visionmedia/debug#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "hash" : {
+ "value" : "72580b7e9145fb39b6676f9c5e5fb100b934179a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/visionmedia/debug.git",
+ "revision" : "338326076faaf6d230090903de97f459c4bccabc",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/debug.git",
+ "revision" : "338326076faaf6d230090903de97f459c4bccabc",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::debug:4.3.4",
+ "purl" : "pkg:npm/debug@4.3.4",
+ "authors" : [ "Josh Junon" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Lightweight debugging utility for Node.js and the browser",
+ "homepage_url" : "https://github.com/debug-js/debug#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "hash" : {
+ "value" : "1319f6579357f2338d3337d2cdd4914bb5dcc865",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/debug-js/debug.git",
+ "revision" : "da66c86c5fd71ef570f36b5b1edfa4472149f1bc",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/debug-js/debug.git",
+ "revision" : "da66c86c5fd71ef570f36b5b1edfa4472149f1bc",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::decamelize:1.2.0",
+ "purl" : "pkg:npm/decamelize@1.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow",
+ "homepage_url" : "https://github.com/sindresorhus/decamelize#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+ "hash" : {
+ "value" : "f6534d15148269b20352e7bee26f501f9a191290",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/decamelize.git",
+ "revision" : "95980ab6fb44c40eaca7792bdf93aff7c210c805",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/decamelize.git",
+ "revision" : "95980ab6fb44c40eaca7792bdf93aff7c210c805",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::deep-is:0.1.4",
+ "purl" : "pkg:npm/deep-is@0.1.4",
+ "authors" : [ "Thorsten Lorenz" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "node's assert.deepEqual algorithm except for NaN being equal to NaN",
+ "homepage_url" : "https://github.com/thlorenz/deep-is#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "hash" : {
+ "value" : "a6f2dce612fadd2ef1f519b73551f17e85199831",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/thlorenz/deep-is.git",
+ "revision" : "2f94b606a8be7df8c5c1c536cce4e32f5eeef1e1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/thlorenz/deep-is.git",
+ "revision" : "2f94b606a8be7df8c5c1c536cce4e32f5eeef1e1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::default-require-extensions:3.0.1",
+ "purl" : "pkg:npm/default-require-extensions@3.0.1",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Node's default require extensions as a separate module",
+ "homepage_url" : "https://github.com/avajs/default-require-extensions#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz",
+ "hash" : {
+ "value" : "bfae00feeaeada68c2ae256c62540f60b80625bd",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/avajs/default-require-extensions.git",
+ "revision" : "409345923c4a4d1c751b3dec37ec750ee0b1a8f1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/avajs/default-require-extensions.git",
+ "revision" : "409345923c4a4d1c751b3dec37ec750ee0b1a8f1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::define-properties:1.1.4",
+ "purl" : "pkg:npm/define-properties@1.1.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
+ "homepage_url" : "https://github.com/ljharb/define-properties#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
+ "hash" : {
+ "value" : "0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/define-properties.git",
+ "revision" : "08fa234e22964a179aad624bed13eca44ad8c6b4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/define-properties.git",
+ "revision" : "08fa234e22964a179aad624bed13eca44ad8c6b4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::diff:3.5.0",
+ "purl" : "pkg:npm/diff@3.5.0",
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "A javascript text diff implementation.",
+ "homepage_url" : "https://github.com/kpdecker/jsdiff#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
+ "hash" : {
+ "value" : "800c0dd1e0a8bfbc95835c202ad220fe317e5a12",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/kpdecker/jsdiff.git",
+ "revision" : "e9ab94893a77f1f7d7ea8483b873083e6c6a390a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/kpdecker/jsdiff.git",
+ "revision" : "e9ab94893a77f1f7d7ea8483b873083e6c6a390a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::doctrine:1.5.0",
+ "purl" : "pkg:npm/doctrine@1.5.0",
+ "declared_licenses" : [ "BSD" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause",
+ "mapped" : {
+ "BSD" : "BSD-3-Clause"
+ }
+ },
+ "description" : "JSDoc parser",
+ "homepage_url" : "https://github.com/eslint/doctrine",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
+ "hash" : {
+ "value" : "379dce730f6166f76cefa4e6707a159b02c5a6fa",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/eslint/doctrine.git",
+ "revision" : "dcd631feb5dd5bcd0899dd35548da2752ea2263e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/doctrine.git",
+ "revision" : "dcd631feb5dd5bcd0899dd35548da2752ea2263e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::doctrine:3.0.0",
+ "purl" : "pkg:npm/doctrine@3.0.0",
+ "declared_licenses" : [ "Apache-2.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "Apache-2.0"
+ },
+ "description" : "JSDoc parser",
+ "homepage_url" : "https://github.com/eslint/doctrine",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "hash" : {
+ "value" : "addebead72a6574db783639dc87a121773973961",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/eslint/doctrine.git",
+ "revision" : "42434ca1f85b264a88afcfd317487a7417e6004b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/doctrine.git",
+ "revision" : "42434ca1f85b264a88afcfd317487a7417e6004b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::electron-to-chromium:1.4.284",
+ "purl" : "pkg:npm/electron-to-chromium@1.4.284",
+ "authors" : [ "Kilian Valkhof" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Provides a list of electron-to-chromium version mappings",
+ "homepage_url" : "https://github.com/kilian/electron-to-chromium#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz",
+ "hash" : {
+ "value" : "61046d1e4cab3a25238f6bf7413795270f125592",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/kilian/electron-to-chromium.git",
+ "revision" : "107f7d7bd48c0128618554f95cfc101709597c63",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/kilian/electron-to-chromium.git",
+ "revision" : "107f7d7bd48c0128618554f95cfc101709597c63",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::emoji-regex:7.0.3",
+ "purl" : "pkg:npm/emoji-regex@7.0.3",
+ "authors" : [ "Mathias Bynens" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
+ "homepage_url" : "https://mths.be/emoji-regex",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "hash" : {
+ "value" : "933a04052860c85e83c122479c4748a8e4c72156",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "3cbaf44e18f4996464ce97f1484ef425bbe8864a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "3cbaf44e18f4996464ce97f1484ef425bbe8864a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::emoji-regex:8.0.0",
+ "purl" : "pkg:npm/emoji-regex@8.0.0",
+ "authors" : [ "Mathias Bynens" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
+ "homepage_url" : "https://mths.be/emoji-regex",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "hash" : {
+ "value" : "e818fd69ce5ccfcb404594f842963bf53164cc37",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "a9f2e514523d4c0931974aff5059052da10c52c5",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "a9f2e514523d4c0931974aff5059052da10c52c5",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::error-ex:1.3.2",
+ "purl" : "pkg:npm/error-ex@1.3.2",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Easy error subclassing and stack customization",
+ "homepage_url" : "https://github.com/qix-/node-error-ex#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "hash" : {
+ "value" : "b4ac40648107fdcdcfae242f428bea8a14d4f1bf",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/qix-/node-error-ex.git",
+ "revision" : "3953ebb9e4a33287e67676a70a8ad72bbbe38075",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/qix-/node-error-ex.git",
+ "revision" : "3953ebb9e4a33287e67676a70a8ad72bbbe38075",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::es-abstract:1.21.1",
+ "purl" : "pkg:npm/es-abstract@1.21.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ECMAScript spec abstract operations.",
+ "homepage_url" : "https://github.com/ljharb/es-abstract#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz",
+ "hash" : {
+ "value" : "e6105a099967c08377830a0c9cb589d570dd86c6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/es-abstract.git",
+ "revision" : "b3fc2d4f7af5dd9a22811e423cf19360f7d4da6d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-abstract.git",
+ "revision" : "b3fc2d4f7af5dd9a22811e423cf19360f7d4da6d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::es-array-method-boxes-properly:1.0.0",
+ "purl" : "pkg:npm/es-array-method-boxes-properly@1.0.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Utility package to determine if an `Array.prototype` method properly boxes the callback's receiver and third argument.",
+ "homepage_url" : "https://github.com/ljharb/es-array-method-boxes-properly#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz",
+ "hash" : {
+ "value" : "873f3e84418de4ee19c5be752990b2e44718d09e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/es-array-method-boxes-properly.git",
+ "revision" : "3eaba7ec973da0af31aaae4ac40c720d486d24f9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-array-method-boxes-properly.git",
+ "revision" : "3eaba7ec973da0af31aaae4ac40c720d486d24f9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::es-set-tostringtag:2.0.1",
+ "purl" : "pkg:npm/es-set-tostringtag@2.0.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A helper to optimistically set Symbol.toStringTag, when possible.",
+ "homepage_url" : "https://github.com/es-shims/es-set-tostringtag#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
+ "hash" : {
+ "value" : "338d502f6f674301d710b80c8592de8a15f09cd8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/es-shims/es-set-tostringtag.git",
+ "revision" : "3cb0d8ae33b2982c8244648a412f9af70a720bb2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/es-set-tostringtag.git",
+ "revision" : "3cb0d8ae33b2982c8244648a412f9af70a720bb2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::es-shim-unscopables:1.0.0",
+ "purl" : "pkg:npm/es-shim-unscopables@1.0.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Helper package to shim a method into `Array.prototype[Symbol.unscopables]`",
+ "homepage_url" : "https://github.com/ljharb/es-shim-unscopables#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
+ "hash" : {
+ "value" : "702e632193201e3edf8713635d083d378e510241",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/es-shim-unscopables.git",
+ "revision" : "4927833211c6ca86d5a892b979b6804f1edc4c71",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-shim-unscopables.git",
+ "revision" : "4927833211c6ca86d5a892b979b6804f1edc4c71",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::es-to-primitive:1.2.1",
+ "purl" : "pkg:npm/es-to-primitive@1.2.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.",
+ "homepage_url" : "https://github.com/ljharb/es-to-primitive#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "hash" : {
+ "value" : "e55cd4c9cdc188bcefb03b366c736323fc5c898a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/es-to-primitive.git",
+ "revision" : "fc864b766689e70707a0b86a136b0ec0021e4d17",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-to-primitive.git",
+ "revision" : "fc864b766689e70707a0b86a136b0ec0021e4d17",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::es6-error:4.1.1",
+ "purl" : "pkg:npm/es6-error@4.1.1",
+ "authors" : [ "Ben Youngblood" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Easily-extendable error for use with ES6 classes",
+ "homepage_url" : "https://github.com/bjyoungblood/es6-error",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
+ "hash" : {
+ "value" : "9e3af407459deed47e9a91f9b885a84eb05c561d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/bjyoungblood/es6-error.git",
+ "revision" : "5b553293429bac6b15d8caeab8a4174faeb38fa0",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/bjyoungblood/es6-error.git",
+ "revision" : "5b553293429bac6b15d8caeab8a4174faeb38fa0",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::escalade:3.1.1",
+ "purl" : "pkg:npm/escalade@3.1.1",
+ "authors" : [ "Luke Edwards" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A tiny (183B to 210B) and fast utility to ascend parent directories",
+ "homepage_url" : "https://github.com/lukeed/escalade#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "hash" : {
+ "value" : "d8cfdc7000965c5a0174b4a82eaa5c0552742e40",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/lukeed/escalade.git",
+ "revision" : "2477005062cdbd8407afc90d3f48f4930354252b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/lukeed/escalade.git",
+ "revision" : "2477005062cdbd8407afc90d3f48f4930354252b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::escape-string-regexp:1.0.5",
+ "purl" : "pkg:npm/escape-string-regexp@1.0.5",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Escape RegExp special characters",
+ "homepage_url" : "https://github.com/sindresorhus/escape-string-regexp",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "hash" : {
+ "value" : "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/escape-string-regexp",
+ "revision" : "db124a3e1aae9d692c4899e42a5c6c3e329eaa20",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/escape-string-regexp.git",
+ "revision" : "db124a3e1aae9d692c4899e42a5c6c3e329eaa20",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint:6.8.0",
+ "purl" : "pkg:npm/eslint@6.8.0",
+ "authors" : [ "Nicholas C. Zakas" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "An AST-based pattern checker for JavaScript.",
+ "homepage_url" : "https://eslint.org",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz",
+ "hash" : {
+ "value" : "62262d6729739f9275723824302fb227c8c93ffb",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/eslint/eslint.git",
+ "revision" : "9738f8cc864d769988ccf42bb70f524444df1349",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint.git",
+ "revision" : "9738f8cc864d769988ccf42bb70f524444df1349",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-config-standard:14.1.0",
+ "purl" : "pkg:npm/eslint-config-standard@14.1.0",
+ "authors" : [ "Feross Aboukhadijeh" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "JavaScript Standard Style - ESLint Shareable Config",
+ "homepage_url" : "https://github.com/standard/eslint-config-standard",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-14.1.0.tgz",
+ "hash" : {
+ "value" : "b23da2b76fe5a2eba668374f246454e7058f15d4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/standard/eslint-config-standard.git",
+ "revision" : "d1dacfc552850080e6b397a0237c6a9396b88aa1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/standard/eslint-config-standard.git",
+ "revision" : "d1dacfc552850080e6b397a0237c6a9396b88aa1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-import-resolver-node:0.3.7",
+ "purl" : "pkg:npm/eslint-import-resolver-node@0.3.7",
+ "authors" : [ "Ben Mosher" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Node default behavior import resolution plugin for eslint-plugin-import.",
+ "homepage_url" : "https://github.com/import-js/eslint-plugin-import",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
+ "hash" : {
+ "value" : "83b375187d412324a1963d84fa664377a23eb4d7",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "74e2a9562c010aa0f875c83c644e929600fa64c8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "74e2a9562c010aa0f875c83c644e929600fa64c8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-module-utils:2.7.4",
+ "purl" : "pkg:npm/eslint-module-utils@2.7.4",
+ "authors" : [ "Ben Mosher" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Core utilities to support eslint-plugin-import and other module-related plugins.",
+ "homepage_url" : "https://github.com/import-js/eslint-plugin-import#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz",
+ "hash" : {
+ "value" : "4f3e41116aaf13a20792261e61d3a2e7e0583974",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "d85bc4414cf3516e9ba96aa83eab919e8bd01979",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "d85bc4414cf3516e9ba96aa83eab919e8bd01979",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-es:3.0.1",
+ "purl" : "pkg:npm/eslint-plugin-es@3.0.1",
+ "authors" : [ "Toru Nagashima" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ESLint plugin about ECMAScript syntactic features.",
+ "homepage_url" : "https://github.com/mysticatea/eslint-plugin-es#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz",
+ "hash" : {
+ "value" : "75a7cdfdccddc0589934aeeb384175f221c57893",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mysticatea/eslint-plugin-es.git",
+ "revision" : "d86abb11c0c10fc1695cc5545ef5ab4f1b78581a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-plugin-es.git",
+ "revision" : "d86abb11c0c10fc1695cc5545ef5ab4f1b78581a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-import:2.19.1",
+ "purl" : "pkg:npm/eslint-plugin-import@2.19.1",
+ "authors" : [ "Ben Mosher" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Import with sanity.",
+ "homepage_url" : "https://github.com/benmosher/eslint-plugin-import",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.19.1.tgz",
+ "hash" : {
+ "value" : "5654e10b7839d064dd0d46cd1b88ec2133a11448",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/benmosher/eslint-plugin-import.git",
+ "revision" : "bc3b034b59a034b4aa47b8a9e74f48fe0e14e997",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/benmosher/eslint-plugin-import.git",
+ "revision" : "bc3b034b59a034b4aa47b8a9e74f48fe0e14e997",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-node:11.0.0",
+ "purl" : "pkg:npm/eslint-plugin-node@11.0.0",
+ "authors" : [ "Toru Nagashima" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Additional ESLint's rules for Node.js",
+ "homepage_url" : "https://github.com/mysticatea/eslint-plugin-node#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.0.0.tgz",
+ "hash" : {
+ "value" : "365944bb0804c5d1d501182a9bc41a0ffefed726",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mysticatea/eslint-plugin-node.git",
+ "revision" : "b8f99452c0e1a808af7aa349d417dca0837e3a67",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-plugin-node.git",
+ "revision" : "b8f99452c0e1a808af7aa349d417dca0837e3a67",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-promise:4.2.1",
+ "purl" : "pkg:npm/eslint-plugin-promise@4.2.1",
+ "authors" : [ "jden" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Enforce best practices for JavaScript promises",
+ "homepage_url" : "https://github.com/xjamundx/eslint-plugin-promise#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz",
+ "hash" : {
+ "value" : "845fd8b2260ad8f82564c1222fce44ad71d9418a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/xjamundx/eslint-plugin-promise.git",
+ "revision" : "5b935bdd3c3760a2e58eea9b89c86b6d3243e321",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/xjamundx/eslint-plugin-promise.git",
+ "revision" : "5b935bdd3c3760a2e58eea9b89c86b6d3243e321",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-standard:4.0.1",
+ "purl" : "pkg:npm/eslint-plugin-standard@4.0.1",
+ "authors" : [ "Jamund Ferguson" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ESlint Plugin for the Standard Linter",
+ "homepage_url" : "https://github.com/standard/eslint-plugin-standard#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz",
+ "hash" : {
+ "value" : "ff0519f7ffaff114f76d1bd7c3996eef0f6e20b4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/standard/eslint-plugin-standard.git",
+ "revision" : "116eb98b8cd26a04edcfa758e9513a9422f35b5e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/standard/eslint-plugin-standard.git",
+ "revision" : "116eb98b8cd26a04edcfa758e9513a9422f35b5e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-scope:5.1.1",
+ "purl" : "pkg:npm/eslint-scope@5.1.1",
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "ECMAScript scope analyzer for ESLint",
+ "homepage_url" : "http://github.com/eslint/eslint-scope",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "hash" : {
+ "value" : "e786e59a66cb92b3f6c1fb0d508aab174848f48c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/eslint/eslint-scope.git",
+ "revision" : "8a7a21cce3a4bf17753d588f6444742235566a92",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint-scope.git",
+ "revision" : "8a7a21cce3a4bf17753d588f6444742235566a92",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-utils:1.4.3",
+ "purl" : "pkg:npm/eslint-utils@1.4.3",
+ "authors" : [ "Toru Nagashima" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Utilities for ESLint plugins.",
+ "homepage_url" : "https://github.com/mysticatea/eslint-utils#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
+ "hash" : {
+ "value" : "74fec7c54d0776b6f67e0251040b5806564e981f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23f4ddc58eda5e6aec3d6a43c6266acbe19345cd",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23f4ddc58eda5e6aec3d6a43c6266acbe19345cd",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-utils:2.1.0",
+ "purl" : "pkg:npm/eslint-utils@2.1.0",
+ "authors" : [ "Toru Nagashima" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Utilities for ESLint plugins.",
+ "homepage_url" : "https://github.com/mysticatea/eslint-utils#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
+ "hash" : {
+ "value" : "d2de5e03424e707dc10c74068ddedae708741b27",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23709f84c8e21f1a38f61ad689c82a8763e0737f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23709f84c8e21f1a38f61ad689c82a8763e0737f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::eslint-visitor-keys:1.3.0",
+ "purl" : "pkg:npm/eslint-visitor-keys@1.3.0",
+ "authors" : [ "Toru Nagashima" ],
+ "declared_licenses" : [ "Apache-2.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "Apache-2.0"
+ },
+ "description" : "Constants and utilities about visitor keys to traverse AST.",
+ "homepage_url" : "https://github.com/eslint/eslint-visitor-keys#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "hash" : {
+ "value" : "30ebd1ef7c2fdff01c3a4f151044af25fab0523e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/eslint/eslint-visitor-keys.git",
+ "revision" : "80a3ee826297902d8fb777706670622536889eaf",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint-visitor-keys.git",
+ "revision" : "80a3ee826297902d8fb777706670622536889eaf",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::espree:6.2.1",
+ "purl" : "pkg:npm/espree@6.2.1",
+ "authors" : [ "Nicholas C. Zakas" ],
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "An Esprima-compatible JavaScript parser built on Acorn",
+ "homepage_url" : "https://github.com/eslint/espree",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz",
+ "hash" : {
+ "value" : "77fc72e1fd744a2052c20f38a5b575832e82734a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/eslint/espree.git",
+ "revision" : "6b7d0b8100537dcd5c84a7fb17bbe28edcabe05d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/espree.git",
+ "revision" : "6b7d0b8100537dcd5c84a7fb17bbe28edcabe05d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::esprima:4.0.1",
+ "purl" : "pkg:npm/esprima@4.0.1",
+ "authors" : [ "Ariya Hidayat" ],
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "ECMAScript parsing infrastructure for multipurpose analysis",
+ "homepage_url" : "http://esprima.org",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "hash" : {
+ "value" : "13b04cdb3e6c5d19df91ab6987a8695619b0aa71",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jquery/esprima.git",
+ "revision" : "0ed4b8afdf2abd416f738977672c6232836f410a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jquery/esprima.git",
+ "revision" : "0ed4b8afdf2abd416f738977672c6232836f410a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::esquery:1.4.0",
+ "purl" : "pkg:npm/esquery@1.4.0",
+ "authors" : [ "Joel Feenstra" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "A query library for ECMAScript AST using a CSS selector like query language.",
+ "homepage_url" : "https://github.com/estools/esquery/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
+ "hash" : {
+ "value" : "2148ffc38b82e8c7057dfed48425b3e61f0f24a5",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/estools/esquery.git",
+ "revision" : "7c3800a4b2ff5c7b3eb3b2cf742865b7c908981f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/estools/esquery.git",
+ "revision" : "7c3800a4b2ff5c7b3eb3b2cf742865b7c908981f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::esrecurse:4.3.0",
+ "purl" : "pkg:npm/esrecurse@4.3.0",
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "ECMAScript AST recursive visitor",
+ "homepage_url" : "https://github.com/estools/esrecurse",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "hash" : {
+ "value" : "7ad7964d679abb28bee72cec63758b1c5d2c9921",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/estools/esrecurse.git",
+ "revision" : "8ceb63797813d9ac69572a671b95cf58ffdf35b6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/estools/esrecurse.git",
+ "revision" : "8ceb63797813d9ac69572a671b95cf58ffdf35b6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::estraverse:4.3.0",
+ "purl" : "pkg:npm/estraverse@4.3.0",
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "ECMAScript JS AST traversal functions",
+ "homepage_url" : "https://github.com/estools/estraverse",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "hash" : {
+ "value" : "398ad3f3c5a24948be7725e83d11a7de28cdbd1d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/estools/estraverse.git",
+ "revision" : "54d608c4ce0eb36d9bade685edcc3177e90e9f3c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/estools/estraverse.git",
+ "revision" : "54d608c4ce0eb36d9bade685edcc3177e90e9f3c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::estraverse:5.3.0",
+ "purl" : "pkg:npm/estraverse@5.3.0",
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "ECMAScript JS AST traversal functions",
+ "homepage_url" : "https://github.com/estools/estraverse",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "hash" : {
+ "value" : "2eea5290702f26ab8fe5370370ff86c965d21123",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/estools/estraverse.git",
+ "revision" : "ec3f900528eac270a51f7b079edeae086e7ebce4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/estools/estraverse.git",
+ "revision" : "ec3f900528eac270a51f7b079edeae086e7ebce4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::esutils:2.0.3",
+ "purl" : "pkg:npm/esutils@2.0.3",
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "utility box for ECMAScript language tools",
+ "homepage_url" : "https://github.com/estools/esutils",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "hash" : {
+ "value" : "74d2eb4de0b8da1293711910d50775b9b710ef64",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/estools/esutils.git",
+ "revision" : "8c2741c0154723fb92da137a0c97845b03b0943a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/estools/esutils.git",
+ "revision" : "8c2741c0154723fb92da137a0c97845b03b0943a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::external-editor:3.1.0",
+ "purl" : "pkg:npm/external-editor@3.1.0",
+ "authors" : [ "Kevin Gravier" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT",
+ "homepage_url" : "https://github.com/mrkmg/node-external-editor#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+ "hash" : {
+ "value" : "cb03f740befae03ea4d283caed2741a83f335495",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mrkmg/node-external-editor.git",
+ "revision" : "3069d69f023f7e46ab06a01791d256655ccf634e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mrkmg/node-external-editor.git",
+ "revision" : "3069d69f023f7e46ab06a01791d256655ccf634e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::fast-deep-equal:3.1.3",
+ "purl" : "pkg:npm/fast-deep-equal@3.1.3",
+ "authors" : [ "Evgeny Poberezkin" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Fast deep equal",
+ "homepage_url" : "https://github.com/epoberezkin/fast-deep-equal#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "hash" : {
+ "value" : "3a7d56b559d6cbc3eb512325244e619a65c6c525",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/epoberezkin/fast-deep-equal.git",
+ "revision" : "d807ffc5013e710deb1c63d463a03f729bcd144d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/fast-deep-equal.git",
+ "revision" : "d807ffc5013e710deb1c63d463a03f729bcd144d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::fast-json-stable-stringify:2.1.0",
+ "purl" : "pkg:npm/fast-json-stable-stringify@2.1.0",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify",
+ "homepage_url" : "https://github.com/epoberezkin/fast-json-stable-stringify",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "hash" : {
+ "value" : "874bf69c6f404c2b5d99c481341399fd55892633",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/epoberezkin/fast-json-stable-stringify.git",
+ "revision" : "b3ab8bdfb91cb182c93475c2c3518d6224672bb4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/fast-json-stable-stringify.git",
+ "revision" : "b3ab8bdfb91cb182c93475c2c3518d6224672bb4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::fast-levenshtein:2.0.6",
+ "purl" : "pkg:npm/fast-levenshtein@2.0.6",
+ "authors" : [ "Ramesh Nair" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Efficient implementation of Levenshtein algorithm with locale-specific collator support.",
+ "homepage_url" : "https://github.com/hiddentao/fast-levenshtein#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "hash" : {
+ "value" : "3d8a5c66883a16a30ca8643e851f19baa7797917",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/hiddentao/fast-levenshtein.git",
+ "revision" : "5bffe7151f99fb02f319f70a004e653105a760fb",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/hiddentao/fast-levenshtein.git",
+ "revision" : "5bffe7151f99fb02f319f70a004e653105a760fb",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::figures:3.2.0",
+ "purl" : "pkg:npm/figures@3.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Unicode symbols with Windows CMD fallbacks",
+ "homepage_url" : "https://github.com/sindresorhus/figures#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+ "hash" : {
+ "value" : "625c18bd293c604dc4a8ddb2febf0c88341746af",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/figures.git",
+ "revision" : "add96242a5467efdcca234433a21da6554df6410",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/figures.git",
+ "revision" : "add96242a5467efdcca234433a21da6554df6410",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::file-entry-cache:5.0.1",
+ "purl" : "pkg:npm/file-entry-cache@5.0.1",
+ "authors" : [ "Roy Riojas" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process",
+ "homepage_url" : "https://github.com/royriojas/file-entry-cache#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
+ "hash" : {
+ "value" : "ca0f6efa6dd3d561333fb14515065c2fafdf439c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/royriojas/file-entry-cache.git",
+ "revision" : "03f700c99b76133dc14648b465a1550ec2930e5c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/royriojas/file-entry-cache.git",
+ "revision" : "03f700c99b76133dc14648b465a1550ec2930e5c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::fill-range:7.0.1",
+ "purl" : "pkg:npm/fill-range@7.0.1",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`",
+ "homepage_url" : "https://github.com/jonschlinkert/fill-range",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "hash" : {
+ "value" : "1919a6a7c75fe38b2c7c77e5198535da9acdda40",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/fill-range.git",
+ "revision" : "39f421b499d5c97b62e955c179fa34c062aab2a5",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/fill-range.git",
+ "revision" : "39f421b499d5c97b62e955c179fa34c062aab2a5",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::find-cache-dir:3.3.2",
+ "purl" : "pkg:npm/find-cache-dir@3.3.2",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Finds the common standard cache directory",
+ "homepage_url" : "https://github.com/avajs/find-cache-dir#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "hash" : {
+ "value" : "b30c5b6eff0730731aea9bbd9dbecbd80256d64b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/avajs/find-cache-dir.git",
+ "revision" : "21ae9442c2188b5c6f2a22219af779a2476e77a0",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/avajs/find-cache-dir.git",
+ "revision" : "21ae9442c2188b5c6f2a22219af779a2476e77a0",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::find-up:2.1.0",
+ "purl" : "pkg:npm/find-up@2.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Find a file by walking up parent directories",
+ "homepage_url" : "https://github.com/sindresorhus/find-up#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "hash" : {
+ "value" : "45d1b7e506c717ddd482775a2b77920a3c0c57a7",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/find-up.git",
+ "revision" : "10202fb1621f0c277d5d5eeaf01c1c32b008fbef",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "10202fb1621f0c277d5d5eeaf01c1c32b008fbef",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::find-up:3.0.0",
+ "purl" : "pkg:npm/find-up@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Find a file or directory by walking up parent directories",
+ "homepage_url" : "https://github.com/sindresorhus/find-up#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "hash" : {
+ "value" : "49169f1d7993430646da61ecc5ae355c21c97b73",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/find-up.git",
+ "revision" : "2319b79a9e728fc13fc1a1a15e84bf5df100719e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "2319b79a9e728fc13fc1a1a15e84bf5df100719e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::find-up:4.1.0",
+ "purl" : "pkg:npm/find-up@4.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Find a file or directory by walking up parent directories",
+ "homepage_url" : "https://github.com/sindresorhus/find-up#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "hash" : {
+ "value" : "97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/find-up.git",
+ "revision" : "6c32f0caed1684ef778053b6f79b13a772e22ba4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "6c32f0caed1684ef778053b6f79b13a772e22ba4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::flat:4.1.1",
+ "purl" : "pkg:npm/flat@4.1.1",
+ "authors" : [ "Hugh Kennedy" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Take a nested Javascript object and flatten it, or unflatten an object with delimited keys",
+ "homepage_url" : "https://github.com/hughsk/flat",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz",
+ "hash" : {
+ "value" : "a392059cc382881ff98642f5da4dde0a959f309b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/hughsk/flat.git",
+ "revision" : "d2ed12bea2bce66254b3d013e5a1cfc73b77c71e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/hughsk/flat.git",
+ "revision" : "d2ed12bea2bce66254b3d013e5a1cfc73b77c71e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::flat-cache:2.0.1",
+ "purl" : "pkg:npm/flat-cache@2.0.1",
+ "authors" : [ "Roy Riojas" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A stupidly simple key/value storage using files to persist some data",
+ "homepage_url" : "https://github.com/royriojas/flat-cache#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
+ "hash" : {
+ "value" : "5d296d6f04bda44a4630a301413bdbc2ec085ec0",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/royriojas/flat-cache.git",
+ "revision" : "9e95cdca746ccc5c066d277f1edde9c9b9f95348",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/royriojas/flat-cache.git",
+ "revision" : "9e95cdca746ccc5c066d277f1edde9c9b9f95348",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::flatted:2.0.2",
+ "purl" : "pkg:npm/flatted@2.0.2",
+ "authors" : [ "Andrea Giammarchi" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "A super light and fast circular JSON parser.",
+ "homepage_url" : "https://github.com/WebReflection/flatted#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
+ "hash" : {
+ "value" : "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/WebReflection/flatted.git",
+ "revision" : "5e3ec39a3e613e70c56f3775c790ddebdbc363a6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/WebReflection/flatted.git",
+ "revision" : "5e3ec39a3e613e70c56f3775c790ddebdbc363a6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::for-each:0.3.3",
+ "purl" : "pkg:npm/for-each@0.3.3",
+ "authors" : [ "Raynos" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A better forEach",
+ "homepage_url" : "https://github.com/Raynos/for-each",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
+ "hash" : {
+ "value" : "69b447e88a0a5d32c3e7084f3f1710034b21376e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/Raynos/for-each.git",
+ "revision" : "7adaf8162a12d55f6ea3fb0bf5e999035dfd303a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/Raynos/for-each.git",
+ "revision" : "7adaf8162a12d55f6ea3fb0bf5e999035dfd303a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::foreground-child:2.0.0",
+ "purl" : "pkg:npm/foreground-child@2.0.0",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.",
+ "homepage_url" : "https://github.com/tapjs/foreground-child#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
+ "hash" : {
+ "value" : "71b32800c9f15aa8f2f83f4a6bd9bff35d861a53",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/tapjs/foreground-child.git",
+ "revision" : "efba8bb6d7607b5c3b0d3e3897c73727577c8b45",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/tapjs/foreground-child.git",
+ "revision" : "efba8bb6d7607b5c3b0d3e3897c73727577c8b45",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::fromentries:1.3.2",
+ "purl" : "pkg:npm/fromentries@1.3.2",
+ "authors" : [ "Feross Aboukhadijeh" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Object.fromEntries() ponyfill (in 6 lines)",
+ "homepage_url" : "https://github.com/feross/fromentries",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz",
+ "hash" : {
+ "value" : "e4bca6808816bf8f93b52750f1127f5a6fd86e3a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/feross/fromentries.git",
+ "revision" : "31c73f61eeed912788f15c1bc9abc3ef71650185",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/fromentries.git",
+ "revision" : "31c73f61eeed912788f15c1bc9abc3ef71650185",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::fs.realpath:1.0.0",
+ "purl" : "pkg:npm/fs.realpath@1.0.0",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Use node's fs.realpath, but fall back to the JS implementation if the native one fails",
+ "homepage_url" : "https://github.com/isaacs/fs.realpath#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "hash" : {
+ "value" : "1504ad2523158caa40db4a2787cb01411994ea4f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/isaacs/fs.realpath.git",
+ "revision" : "03e7c884431fe185dfebbc9b771aeca339c1807a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/fs.realpath.git",
+ "revision" : "03e7c884431fe185dfebbc9b771aeca339c1807a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::function-bind:1.1.1",
+ "purl" : "pkg:npm/function-bind@1.1.1",
+ "authors" : [ "Raynos" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Implementation of Function.prototype.bind",
+ "homepage_url" : "https://github.com/Raynos/function-bind",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "hash" : {
+ "value" : "a56899d3ea3c9bab874bb9773b7c5ede92f4895d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/Raynos/function-bind.git",
+ "revision" : "1213f807066d1cb8d39a0592d5118f4b1f03de4a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/Raynos/function-bind.git",
+ "revision" : "1213f807066d1cb8d39a0592d5118f4b1f03de4a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::function.prototype.name:1.1.5",
+ "purl" : "pkg:npm/function.prototype.name@1.1.5",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "An ES2015 spec-compliant `Function.prototype.name` shim",
+ "homepage_url" : "https://github.com/es-shims/Function.prototype.name#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
+ "hash" : {
+ "value" : "cce0505fe1ffb80503e6f9e46cc64e46a12a9621",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/Function.prototype.name.git",
+ "revision" : "1753ed2a9aa6558e6c4971b85f05bbaf7a371d22",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Function.prototype.name.git",
+ "revision" : "1753ed2a9aa6558e6c4971b85f05bbaf7a371d22",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::functional-red-black-tree:1.0.1",
+ "purl" : "pkg:npm/functional-red-black-tree@1.0.1",
+ "authors" : [ "Mikola Lysenko" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A fully persistent balanced binary search tree",
+ "homepage_url" : "https://github.com/mikolalysenko/functional-red-black-tree",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
+ "hash" : {
+ "value" : "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/mikolalysenko/functional-red-black-tree.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mikolalysenko/functional-red-black-tree.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::functions-have-names:1.2.3",
+ "purl" : "pkg:npm/functions-have-names@1.2.3",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Does this JS environment support the `name` property on functions?",
+ "homepage_url" : "https://github.com/inspect-js/functions-have-names#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
+ "hash" : {
+ "value" : "0404fe4ee2ba2f607f0e0ec3c80bae994133b834",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/functions-have-names.git",
+ "revision" : "3ac881daaf2066bff7c422fd606271f4976efa8f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/functions-have-names.git",
+ "revision" : "3ac881daaf2066bff7c422fd606271f4976efa8f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::gensync:1.0.0-beta.2",
+ "purl" : "pkg:npm/gensync@1.0.0-beta.2",
+ "authors" : [ "Logan Smyth" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Allows users to use generators in order to write common functions that can be both sync or async.",
+ "homepage_url" : "https://github.com/loganfsmyth/gensync",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "hash" : {
+ "value" : "32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/loganfsmyth/gensync.git",
+ "revision" : "a182868db47da283a1a044cb15bfd388697a632f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/loganfsmyth/gensync.git",
+ "revision" : "a182868db47da283a1a044cb15bfd388697a632f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::get-caller-file:2.0.5",
+ "purl" : "pkg:npm/get-caller-file@2.0.5",
+ "authors" : [ "Stefan Penner" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "[](https://travis-ci.org/stefanpenner/get-caller-file) [](https://ci.a",
+ "homepage_url" : "https://github.com/stefanpenner/get-caller-file#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "hash" : {
+ "value" : "4f94412a82db32f36e3b0b9741f8a97feb031f7e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/stefanpenner/get-caller-file.git",
+ "revision" : "2383bf9e98ed3c568ff69d7586cf59c0f1dcb9d3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/stefanpenner/get-caller-file.git",
+ "revision" : "2383bf9e98ed3c568ff69d7586cf59c0f1dcb9d3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::get-intrinsic:1.2.0",
+ "purl" : "pkg:npm/get-intrinsic@1.2.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get and robustly cache all JS language-level intrinsics at first require time",
+ "homepage_url" : "https://github.com/ljharb/get-intrinsic#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz",
+ "hash" : {
+ "value" : "7ad1dc0535f3a2904bba075772763e5051f6d05f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/get-intrinsic.git",
+ "revision" : "0b60d7ac9d93e8824a36ddd52635be1fc13758d1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/get-intrinsic.git",
+ "revision" : "0b60d7ac9d93e8824a36ddd52635be1fc13758d1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::get-package-type:0.1.0",
+ "purl" : "pkg:npm/get-package-type@0.1.0",
+ "authors" : [ "Corey Farrell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determine the `package.json#type` which applies to a location",
+ "homepage_url" : "https://github.com/cfware/get-package-type#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
+ "hash" : {
+ "value" : "8de2d803cff44df3bc6c456e6668b36c3926e11a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/cfware/get-package-type.git",
+ "revision" : "53f035a197b349125e43f60c8b8896664daf3942",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/get-package-type.git",
+ "revision" : "53f035a197b349125e43f60c8b8896664daf3942",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::get-symbol-description:1.0.0",
+ "purl" : "pkg:npm/get-symbol-description@1.0.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Gets the description of a Symbol. Handles `Symbol()` vs `Symbol('')` properly when possible.",
+ "homepage_url" : "https://github.com/inspect-js/get-symbol-description#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
+ "hash" : {
+ "value" : "7fdb81c900101fbd564dd5f1a30af5aadc1e58d6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/get-symbol-description.git",
+ "revision" : "6579bf3c250bc1cf12fec4900956ac7f08f34a41",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/get-symbol-description.git",
+ "revision" : "6579bf3c250bc1cf12fec4900956ac7f08f34a41",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::glob:7.1.3",
+ "purl" : "pkg:npm/glob@7.1.3",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "a little globber",
+ "homepage_url" : "https://github.com/isaacs/node-glob#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
+ "hash" : {
+ "value" : "3960832d3f1574108342dafd3a67b332c0969df1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/node-glob.git",
+ "revision" : "8882c8fccabbe459465e73cc2581e121a5fdd25b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-glob.git",
+ "revision" : "8882c8fccabbe459465e73cc2581e121a5fdd25b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::glob:7.2.3",
+ "purl" : "pkg:npm/glob@7.2.3",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "a little globber",
+ "homepage_url" : "https://github.com/isaacs/node-glob#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "hash" : {
+ "value" : "b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/node-glob.git",
+ "revision" : "c3cd57ae128faa0e9190492acc743bb779ac4054",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-glob.git",
+ "revision" : "c3cd57ae128faa0e9190492acc743bb779ac4054",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::glob-parent:5.1.2",
+ "purl" : "pkg:npm/glob-parent@5.1.2",
+ "authors" : [ "Gulp Team" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Extract the non-magic parent path from a glob string.",
+ "homepage_url" : "https://github.com/gulpjs/glob-parent#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "hash" : {
+ "value" : "869832c58034fe68a4093c17dc15e8340d8401c4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/gulpjs/glob-parent.git",
+ "revision" : "eb2c439de448c779b450472e591a2bc9e37e9668",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/gulpjs/glob-parent.git",
+ "revision" : "eb2c439de448c779b450472e591a2bc9e37e9668",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::globals:11.12.0",
+ "purl" : "pkg:npm/globals@11.12.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Global identifiers from different JavaScript environments",
+ "homepage_url" : "https://github.com/sindresorhus/globals#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "hash" : {
+ "value" : "ab8795338868a0babd8525758018c2a7eb95c42e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/globals.git",
+ "revision" : "6bf39e6d2aaf5b107a840fd18f29be45760f2749",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/globals.git",
+ "revision" : "6bf39e6d2aaf5b107a840fd18f29be45760f2749",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::globals:12.4.0",
+ "purl" : "pkg:npm/globals@12.4.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Global identifiers from different JavaScript environments",
+ "homepage_url" : "https://github.com/sindresorhus/globals#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
+ "hash" : {
+ "value" : "a18813576a41b00a24a97e7f815918c2e19925f8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/globals.git",
+ "revision" : "92bbb85fc797e03465fbf6e69fb881be4f07e23d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/globals.git",
+ "revision" : "92bbb85fc797e03465fbf6e69fb881be4f07e23d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::globalthis:1.0.3",
+ "purl" : "pkg:npm/globalthis@1.0.3",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ECMAScript spec-compliant polyfill/shim for `globalThis`",
+ "homepage_url" : "https://github.com/ljharb/System.global#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
+ "hash" : {
+ "value" : "5852882a52b80dc301b0660273e1ed082f0b6ccf",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/System.global.git",
+ "revision" : "8bc4bb4c715f89390fe083f2e2ed277474775972",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/System.global.git",
+ "revision" : "8bc4bb4c715f89390fe083f2e2ed277474775972",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::gopd:1.0.1",
+ "purl" : "pkg:npm/gopd@1.0.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.",
+ "homepage_url" : "https://github.com/ljharb/gopd#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
+ "hash" : {
+ "value" : "29ff76de69dac7489b7c0918a5788e56477c332c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/gopd.git",
+ "revision" : "e3236ba6cdee15eef18be63dcc46045c035d4429",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/gopd.git",
+ "revision" : "e3236ba6cdee15eef18be63dcc46045c035d4429",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::graceful-fs:4.2.10",
+ "purl" : "pkg:npm/graceful-fs@4.2.10",
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "A drop-in replacement for fs, making various improvements.",
+ "homepage_url" : "https://github.com/isaacs/node-graceful-fs#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
+ "hash" : {
+ "value" : "147d3a006da4ca3ce14728c7aefc287c367d7a6c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/isaacs/node-graceful-fs.git",
+ "revision" : "1f19b0b467e4144260b397343cd60f37c5bdcfda",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-graceful-fs.git",
+ "revision" : "1f19b0b467e4144260b397343cd60f37c5bdcfda",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::growl:1.10.5",
+ "purl" : "pkg:npm/growl@1.10.5",
+ "authors" : [ "TJ Holowaychuk" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Growl unobtrusive notifications",
+ "homepage_url" : "https://github.com/tj/node-growl#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz",
+ "hash" : {
+ "value" : "f2735dc2283674fa67478b10181059355c369e5e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/tj/node-growl.git",
+ "revision" : "95393c8da0d8bab06522a5eb36658a639c24a621",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/tj/node-growl.git",
+ "revision" : "95393c8da0d8bab06522a5eb36658a639c24a621",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has:1.0.3",
+ "purl" : "pkg:npm/has@1.0.3",
+ "authors" : [ "Thiago de Arruda" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Object.prototype.hasOwnProperty.call shortcut",
+ "homepage_url" : "https://github.com/tarruda/has",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "hash" : {
+ "value" : "722d7cbfc1f6aa8241f16dd814e011e1f41e8796",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/tarruda/has.git",
+ "revision" : "4edf96f2dec87ad6b6e68482e8f6d7c8eb7e07e6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/tarruda/has.git",
+ "revision" : "4edf96f2dec87ad6b6e68482e8f6d7c8eb7e07e6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has-bigints:1.0.2",
+ "purl" : "pkg:npm/has-bigints@1.0.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determine if the JS environment has BigInt support.",
+ "homepage_url" : "https://github.com/ljharb/has-bigints#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
+ "hash" : {
+ "value" : "0871bd3e3d51626f6ca0966668ba35d5602d6eaa",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/has-bigints.git",
+ "revision" : "6aa1ab523edade31d6c558d57d34204639318633",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/has-bigints.git",
+ "revision" : "6aa1ab523edade31d6c558d57d34204639318633",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has-flag:3.0.0",
+ "purl" : "pkg:npm/has-flag@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if argv has a specific flag",
+ "homepage_url" : "https://github.com/sindresorhus/has-flag#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "hash" : {
+ "value" : "b5d454dc2199ae225699f3467e5a07f3b955bafd",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/has-flag.git",
+ "revision" : "8b2ca7e693b2c742b29f2399194077b64b9ff781",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/has-flag.git",
+ "revision" : "8b2ca7e693b2c742b29f2399194077b64b9ff781",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has-flag:4.0.0",
+ "purl" : "pkg:npm/has-flag@4.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if argv has a specific flag",
+ "homepage_url" : "https://github.com/sindresorhus/has-flag#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "hash" : {
+ "value" : "944771fd9c81c81265c4d6941860da06bb59479b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/has-flag.git",
+ "revision" : "474aa39afca7333d356c022fc5be4d31732bbba3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/has-flag.git",
+ "revision" : "474aa39afca7333d356c022fc5be4d31732bbba3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has-property-descriptors:1.0.0",
+ "purl" : "pkg:npm/has-property-descriptors@1.0.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD.",
+ "homepage_url" : "https://github.com/inspect-js/has-property-descriptors#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
+ "hash" : {
+ "value" : "610708600606d36961ed04c196193b6a607fa861",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/has-property-descriptors.git",
+ "revision" : "3771c8b4f20e963d3a64b101b3233c20791c32ae",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-property-descriptors.git",
+ "revision" : "3771c8b4f20e963d3a64b101b3233c20791c32ae",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has-proto:1.0.1",
+ "purl" : "pkg:npm/has-proto@1.0.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?",
+ "homepage_url" : "https://github.com/inspect-js/has-proto#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
+ "hash" : {
+ "value" : "1885c1305538958aff469fef37937c22795408e0",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/has-proto.git",
+ "revision" : "21f977f068b3e59597576c32f13b4a4ec899adbf",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-proto.git",
+ "revision" : "21f977f068b3e59597576c32f13b4a4ec899adbf",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has-symbols:1.0.3",
+ "purl" : "pkg:npm/has-symbols@1.0.3",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determine if the JS environment has Symbol support. Supports spec, or shams.",
+ "homepage_url" : "https://github.com/ljharb/has-symbols#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+ "hash" : {
+ "value" : "bb7b2c4349251dce87b125f7bdf874aa7c8b39f8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/has-symbols.git",
+ "revision" : "444dc14d035df9891743a28cbc5d6ecdb0cb3b01",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-symbols.git",
+ "revision" : "444dc14d035df9891743a28cbc5d6ecdb0cb3b01",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::has-tostringtag:1.0.0",
+ "purl" : "pkg:npm/has-tostringtag@1.0.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.",
+ "homepage_url" : "https://github.com/inspect-js/has-tostringtag#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
+ "hash" : {
+ "value" : "7e133818a7d394734f941e73c3d3f9291e658b25",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/has-tostringtag.git",
+ "revision" : "011dfc074077ece0eaa7aa740bb4d50623dec774",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-tostringtag.git",
+ "revision" : "011dfc074077ece0eaa7aa740bb4d50623dec774",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::hasha:5.2.2",
+ "purl" : "pkg:npm/hasha@5.2.2",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Hashing made simple. Get the hash of a buffer/string/stream/file.",
+ "homepage_url" : "https://github.com/sindresorhus/hasha#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz",
+ "hash" : {
+ "value" : "a48477989b3b327aea3c04f53096d816d97522a1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/hasha.git",
+ "revision" : "6e9d961913bd446167b23007e76bd00ef470736c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/hasha.git",
+ "revision" : "6e9d961913bd446167b23007e76bd00ef470736c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::he:1.2.0",
+ "purl" : "pkg:npm/he@1.2.0",
+ "authors" : [ "Mathias Bynens" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A robust HTML entities encoder/decoder with full Unicode support.",
+ "homepage_url" : "https://mths.be/he",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "hash" : {
+ "value" : "84ae65fa7eafb165fddb61566ae14baf05664f0f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mathiasbynens/he.git",
+ "revision" : "36afe179392226cf1b6ccdb16ebbb7a5a844d93a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/he.git",
+ "revision" : "36afe179392226cf1b6ccdb16ebbb7a5a844d93a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::hosted-git-info:2.8.9",
+ "purl" : "pkg:npm/hosted-git-info@2.8.9",
+ "authors" : [ "Rebecca Turner" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab",
+ "homepage_url" : "https://github.com/npm/hosted-git-info",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "hash" : {
+ "value" : "dffc0bf9a21c02209090f2aa69429e1414daf3f9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/npm/hosted-git-info.git",
+ "revision" : "8d4b3697d79bcd89cdb36d1db165e3696c783a01",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/hosted-git-info.git",
+ "revision" : "8d4b3697d79bcd89cdb36d1db165e3696c783a01",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::html-escaper:2.0.2",
+ "purl" : "pkg:npm/html-escaper@2.0.2",
+ "authors" : [ "Andrea Giammarchi" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "fast and safe way to escape and unescape &<>'\" chars",
+ "homepage_url" : "https://github.com/WebReflection/html-escaper",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
+ "hash" : {
+ "value" : "dfd60027da36a36dfcbe236262c00a5822681453",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/WebReflection/html-escaper.git",
+ "revision" : "88f420ad94369f9be46c24ca52eb77e3da224f37",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/WebReflection/html-escaper.git",
+ "revision" : "88f420ad94369f9be46c24ca52eb77e3da224f37",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::iconv-lite:0.4.24",
+ "purl" : "pkg:npm/iconv-lite@0.4.24",
+ "authors" : [ "Alexander Shtuchkin" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Convert character encodings in pure javascript.",
+ "homepage_url" : "https://github.com/ashtuchkin/iconv-lite",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "hash" : {
+ "value" : "2022b4b25fbddc21d2f524974a474aafe733908b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ashtuchkin/iconv-lite.git",
+ "revision" : "efbbb0937ca8dda1c14e0b69958b9d6f20771f7a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ashtuchkin/iconv-lite.git",
+ "revision" : "efbbb0937ca8dda1c14e0b69958b9d6f20771f7a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ignore:4.0.6",
+ "purl" : "pkg:npm/ignore@4.0.6",
+ "authors" : [ "kael" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Ignore is a manager and filter for .gitignore rules.",
+ "homepage_url" : "https://github.com/kaelzhang/node-ignore#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "hash" : {
+ "value" : "750e3db5862087b4737ebac8207ffd1ef27b25fc",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/kaelzhang/node-ignore.git",
+ "revision" : "56976cef6d5ec0e5651910801669f9aa3daa8120",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/kaelzhang/node-ignore.git",
+ "revision" : "56976cef6d5ec0e5651910801669f9aa3daa8120",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ignore:5.2.4",
+ "purl" : "pkg:npm/ignore@5.2.4",
+ "authors" : [ "kael" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
+ "homepage_url" : "https://github.com/kaelzhang/node-ignore#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
+ "hash" : {
+ "value" : "a291c0c6178ff1b960befe47fcdec301674a6324",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/kaelzhang/node-ignore.git",
+ "revision" : "45a5a9f4e033a8b21b9caa9e27e0e821379ecc60",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/kaelzhang/node-ignore.git",
+ "revision" : "45a5a9f4e033a8b21b9caa9e27e0e821379ecc60",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::import-fresh:3.3.0",
+ "purl" : "pkg:npm/import-fresh@3.3.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Import a module while bypassing the cache",
+ "homepage_url" : "https://github.com/sindresorhus/import-fresh#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "hash" : {
+ "value" : "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/import-fresh.git",
+ "revision" : "f1dddc06da4f1cdfb44a3aaba1f2c353c00dea02",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/import-fresh.git",
+ "revision" : "f1dddc06da4f1cdfb44a3aaba1f2c353c00dea02",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::imurmurhash:0.1.4",
+ "purl" : "pkg:npm/imurmurhash@0.1.4",
+ "authors" : [ "Jens Taylor" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "An incremental implementation of MurmurHash3",
+ "homepage_url" : "https://github.com/jensyt/imurmurhash-js",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "hash" : {
+ "value" : "9218b9b2b928a238b13dc4fb6b6d576f231453ea",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/jensyt/imurmurhash-js",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jensyt/imurmurhash-js.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::indent-string:4.0.0",
+ "purl" : "pkg:npm/indent-string@4.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Indent each line in a string",
+ "homepage_url" : "https://github.com/sindresorhus/indent-string#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "hash" : {
+ "value" : "624f8f4497d619b2d9768531d58f4122854d7251",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/indent-string.git",
+ "revision" : "99280aa24669a3fab303bb231d6caafd7d5029d3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/indent-string.git",
+ "revision" : "99280aa24669a3fab303bb231d6caafd7d5029d3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::inflight:1.0.6",
+ "purl" : "pkg:npm/inflight@1.0.6",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Add callbacks to requests in flight to avoid async duplication",
+ "homepage_url" : "https://github.com/isaacs/inflight",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "hash" : {
+ "value" : "49bd6331d7d02d0c09bc910a1075ba8165b56df9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/npm/inflight.git",
+ "revision" : "a547881738c8f57b27795e584071d67cf6ac1a57",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/inflight.git",
+ "revision" : "a547881738c8f57b27795e584071d67cf6ac1a57",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::inherits:2.0.4",
+ "purl" : "pkg:npm/inherits@2.0.4",
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Browser-friendly inheritance fully compatible with standard node.js inherits()",
+ "homepage_url" : "https://github.com/isaacs/inherits#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "hash" : {
+ "value" : "0fa2c64f932917c3433a0ded55363aae37416b7c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/inherits.git",
+ "revision" : "9a2c29400c6d491e0b7beefe0c32efa3b462545d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/inherits.git",
+ "revision" : "9a2c29400c6d491e0b7beefe0c32efa3b462545d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::inquirer:7.3.3",
+ "purl" : "pkg:npm/inquirer@7.3.3",
+ "authors" : [ "Simon Boudrias" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A collection of common interactive command line user interfaces.",
+ "homepage_url" : "https://github.com/SBoudrias/Inquirer.js#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz",
+ "hash" : {
+ "value" : "04d176b2af04afc157a83fd7c100e98ee0aad003",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/SBoudrias/Inquirer.js.git",
+ "revision" : "808d5538531c1ca1c34f832d77bc98dfd0ba4000",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/SBoudrias/Inquirer.js.git",
+ "revision" : "808d5538531c1ca1c34f832d77bc98dfd0ba4000",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::internal-slot:1.0.4",
+ "purl" : "pkg:npm/internal-slot@1.0.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES spec-like internal slots",
+ "homepage_url" : "https://github.com/ljharb/internal-slot#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz",
+ "hash" : {
+ "value" : "8551e7baf74a7a6ba5f749cfb16aa60722f0d6f3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/internal-slot.git",
+ "revision" : "36eb820fff0dd696f966ab9ed597ddabdd401b3c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/internal-slot.git",
+ "revision" : "36eb820fff0dd696f966ab9ed597ddabdd401b3c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-array-buffer:3.0.1",
+ "purl" : "pkg:npm/is-array-buffer@3.0.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS ArrayBuffer?",
+ "homepage_url" : "https://github.com/inspect-js/is-array-buffer#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz",
+ "hash" : {
+ "value" : "deb1db4fcae48308d54ef2442706c0393997052a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/is-array-buffer.git",
+ "revision" : "1ac0ffe4f48f86e9cb1777bdb972d1bc47bf3225",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-array-buffer.git",
+ "revision" : "1ac0ffe4f48f86e9cb1777bdb972d1bc47bf3225",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-arrayish:0.2.1",
+ "purl" : "pkg:npm/is-arrayish@0.2.1",
+ "authors" : [ "Qix" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determines if an object can be used as an array",
+ "homepage_url" : "https://github.com/qix-/node-is-arrayish#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "hash" : {
+ "value" : "77c99840527aa8ecb1a8ba697b80645a7a926a9d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/qix-/node-is-arrayish.git",
+ "revision" : "53f22aa6ce557d7d31a3d1152a590a2df220df9d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/qix-/node-is-arrayish.git",
+ "revision" : "53f22aa6ce557d7d31a3d1152a590a2df220df9d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-bigint:1.0.4",
+ "purl" : "pkg:npm/is-bigint@1.0.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value an ES BigInt?",
+ "homepage_url" : "https://github.com/inspect-js/is-bigint#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
+ "hash" : {
+ "value" : "08147a1875bc2b32005d41ccd8291dffc6691df3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/is-bigint.git",
+ "revision" : "726750ea98291eaf3ac6aae247f638eb3a94d343",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-bigint.git",
+ "revision" : "726750ea98291eaf3ac6aae247f638eb3a94d343",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-binary-path:2.1.0",
+ "purl" : "pkg:npm/is-binary-path@2.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if a file path is a binary file",
+ "homepage_url" : "https://github.com/sindresorhus/is-binary-path#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "hash" : {
+ "value" : "ea1f7f3b80f064236e83470f86c09c254fb45b09",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/is-binary-path.git",
+ "revision" : "efe99d8b3d0ef825925e8b986d047e39bee173c3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-binary-path.git",
+ "revision" : "efe99d8b3d0ef825925e8b986d047e39bee173c3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-boolean-object:1.1.2",
+ "purl" : "pkg:npm/is-boolean-object@1.1.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
+ "homepage_url" : "https://github.com/inspect-js/is-boolean-object#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
+ "hash" : {
+ "value" : "5c6dc200246dd9321ae4b885a114bb1f75f63719",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-boolean-object.git",
+ "revision" : "586b4a72c8d6973e5416610a2eaca65c1fb6da3d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-boolean-object.git",
+ "revision" : "586b4a72c8d6973e5416610a2eaca65c1fb6da3d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-buffer:2.0.5",
+ "purl" : "pkg:npm/is-buffer@2.0.5",
+ "authors" : [ "Feross Aboukhadijeh" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determine if an object is a Buffer",
+ "homepage_url" : "https://github.com/feross/is-buffer#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "hash" : {
+ "value" : "ebc252e400d22ff8d77fa09888821a24a658c191",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/feross/is-buffer.git",
+ "revision" : "ec4bf3415108e8971375e6717ad63dde752faebf",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/is-buffer.git",
+ "revision" : "ec4bf3415108e8971375e6717ad63dde752faebf",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-callable:1.2.7",
+ "purl" : "pkg:npm/is-callable@1.2.7",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
+ "homepage_url" : "https://github.com/inspect-js/is-callable#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "hash" : {
+ "value" : "3bc2a85ea742d9e36205dcacdd72ca1fdc51b055",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-callable.git",
+ "revision" : "f23584dd25c26473e702e80a5e8e7e79e2a89aee",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-callable.git",
+ "revision" : "f23584dd25c26473e702e80a5e8e7e79e2a89aee",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-core-module:2.11.0",
+ "purl" : "pkg:npm/is-core-module@2.11.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this specifier a node.js core module?",
+ "homepage_url" : "https://github.com/inspect-js/is-core-module",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
+ "hash" : {
+ "value" : "ad4cb3e3863e814523c96f3f58d26cc570ff0144",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/is-core-module.git",
+ "revision" : "12cfb2d3bcefc3de19264b3a39208d29f5432516",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-core-module.git",
+ "revision" : "12cfb2d3bcefc3de19264b3a39208d29f5432516",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-date-object:1.0.5",
+ "purl" : "pkg:npm/is-date-object@1.0.5",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
+ "homepage_url" : "https://github.com/inspect-js/is-date-object#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
+ "hash" : {
+ "value" : "0841d5536e724c25597bf6ea62e1bd38298df31f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-date-object.git",
+ "revision" : "61eab012a36b7b5141f7e7dd09a6cdd11008668f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-date-object.git",
+ "revision" : "61eab012a36b7b5141f7e7dd09a6cdd11008668f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-extglob:2.1.1",
+ "purl" : "pkg:npm/is-extglob@2.1.1",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Returns true if a string has an extglob.",
+ "homepage_url" : "https://github.com/jonschlinkert/is-extglob",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "hash" : {
+ "value" : "a88c02535791f02ed37c76a1b9ea9773c833f8c2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/is-extglob.git",
+ "revision" : "10a74787acbe79abf02141c5d487950d1b197b15",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-extglob.git",
+ "revision" : "10a74787acbe79abf02141c5d487950d1b197b15",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-fullwidth-code-point:2.0.0",
+ "purl" : "pkg:npm/is-fullwidth-code-point@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if the character represented by a given Unicode code point is fullwidth",
+ "homepage_url" : "https://github.com/sindresorhus/is-fullwidth-code-point#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "hash" : {
+ "value" : "a3b30a5c4f199183167aaab93beefae3ddfb654f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "e94a78056056c5546f2bf4c4cf812a2163a46dae",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "e94a78056056c5546f2bf4c4cf812a2163a46dae",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-fullwidth-code-point:3.0.0",
+ "purl" : "pkg:npm/is-fullwidth-code-point@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if the character represented by a given Unicode code point is fullwidth",
+ "homepage_url" : "https://github.com/sindresorhus/is-fullwidth-code-point#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "hash" : {
+ "value" : "f116f8064fe90b3f7844a38997c0b75051269f1d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "80e5e314d86e5f76bd1b0573aa9d33e615a372db",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "80e5e314d86e5f76bd1b0573aa9d33e615a372db",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-glob:4.0.3",
+ "purl" : "pkg:npm/is-glob@4.0.3",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.",
+ "homepage_url" : "https://github.com/micromatch/is-glob",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "hash" : {
+ "value" : "64f61e42cbbb2eec2071a9dac0b28ba1e65d5084",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/micromatch/is-glob.git",
+ "revision" : "627ca7e552c69e8d62d620b4715a2658267b3d17",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/is-glob.git",
+ "revision" : "627ca7e552c69e8d62d620b4715a2658267b3d17",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-negative-zero:2.0.2",
+ "purl" : "pkg:npm/is-negative-zero@2.0.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value negative zero? === will lie to you",
+ "homepage_url" : "https://github.com/inspect-js/is-negative-zero",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
+ "hash" : {
+ "value" : "7bf6f03a28003b8b3965de3ac26f664d765f3150",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-negative-zero.git",
+ "revision" : "360cdcc36d5194992f0dae68a624c02d2c945a94",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-negative-zero.git",
+ "revision" : "360cdcc36d5194992f0dae68a624c02d2c945a94",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-number:7.0.0",
+ "purl" : "pkg:npm/is-number@7.0.0",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.",
+ "homepage_url" : "https://github.com/jonschlinkert/is-number",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "hash" : {
+ "value" : "7535345b896734d5f80c4d06c50955527a14f12b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/is-number.git",
+ "revision" : "98e8ff1da1a89f93d1397a24d7413ed15421c139",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-number.git",
+ "revision" : "98e8ff1da1a89f93d1397a24d7413ed15421c139",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-number-object:1.0.7",
+ "purl" : "pkg:npm/is-number-object@1.0.7",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
+ "homepage_url" : "https://github.com/inspect-js/is-number-object#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
+ "hash" : {
+ "value" : "59d50ada4c45251784e9904f5246c742f07a42fc",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-number-object.git",
+ "revision" : "50c53ae827537cd9d951c87e9e6286339575d402",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-number-object.git",
+ "revision" : "50c53ae827537cd9d951c87e9e6286339575d402",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-regex:1.1.4",
+ "purl" : "pkg:npm/is-regex@1.1.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag",
+ "homepage_url" : "https://github.com/inspect-js/is-regex",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+ "hash" : {
+ "value" : "eef5663cd59fa4c0ae339505323df6854bb15958",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-regex.git",
+ "revision" : "13598e3491ac8f05d257d339cbf8bae0bb049a0d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-regex.git",
+ "revision" : "13598e3491ac8f05d257d339cbf8bae0bb049a0d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-shared-array-buffer:1.0.2",
+ "purl" : "pkg:npm/is-shared-array-buffer@1.0.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS SharedArrayBuffer?",
+ "homepage_url" : "https://github.com/inspect-js/is-shared-array-buffer#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
+ "hash" : {
+ "value" : "8f259c573b60b6a32d4058a1a07430c0a7344c79",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/is-shared-array-buffer.git",
+ "revision" : "0a8c0a3a53fa882f24f4e378b8c9ed30af35e0e4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-shared-array-buffer.git",
+ "revision" : "0a8c0a3a53fa882f24f4e378b8c9ed30af35e0e4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-stream:2.0.1",
+ "purl" : "pkg:npm/is-stream@2.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if something is a Node.js stream",
+ "homepage_url" : "https://github.com/sindresorhus/is-stream#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "hash" : {
+ "value" : "fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/is-stream.git",
+ "revision" : "fb8caed475b4107cee3c22be3252a904020eb2d4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-stream.git",
+ "revision" : "fb8caed475b4107cee3c22be3252a904020eb2d4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-string:1.0.7",
+ "purl" : "pkg:npm/is-string@1.0.7",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS String object or primitive? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
+ "homepage_url" : "https://github.com/ljharb/is-string#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
+ "hash" : {
+ "value" : "0dd12bf2006f255bb58f695110eff7491eebc0fd",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/is-string.git",
+ "revision" : "e8a5b6d659f59e744ae03b2557e0482cd69194b3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/is-string.git",
+ "revision" : "e8a5b6d659f59e744ae03b2557e0482cd69194b3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-symbol:1.0.4",
+ "purl" : "pkg:npm/is-symbol@1.0.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determine if a value is an ES6 Symbol or not.",
+ "homepage_url" : "https://github.com/inspect-js/is-symbol#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
+ "hash" : {
+ "value" : "a6dac93b635b063ca6872236de88910a57af139c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-symbol.git",
+ "revision" : "962084d30f3a2a83dff90d59504d03b85ffa5c17",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-symbol.git",
+ "revision" : "962084d30f3a2a83dff90d59504d03b85ffa5c17",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-typed-array:1.1.10",
+ "purl" : "pkg:npm/is-typed-array@1.1.10",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
+ "homepage_url" : "https://github.com/inspect-js/is-typed-array#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz",
+ "hash" : {
+ "value" : "36a5b5cb4189b575d1a3e4b08536bfb485801e3f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/is-typed-array.git",
+ "revision" : "0f7c619d10400f28a6131ed2ef6352bfe22dc1a6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-typed-array.git",
+ "revision" : "0f7c619d10400f28a6131ed2ef6352bfe22dc1a6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-typedarray:1.0.0",
+ "purl" : "pkg:npm/is-typedarray@1.0.0",
+ "authors" : [ "Hugh Kennedy" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Detect whether or not an object is a Typed Array",
+ "homepage_url" : "https://github.com/hughsk/is-typedarray",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "hash" : {
+ "value" : "e479c80858df0c1b11ddda6940f96011fcda4a9a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/hughsk/is-typedarray.git",
+ "revision" : "0617cfa871686cf541af62b144f130488f44f6fe",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/hughsk/is-typedarray.git",
+ "revision" : "0617cfa871686cf541af62b144f130488f44f6fe",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-weakref:1.0.2",
+ "purl" : "pkg:npm/is-weakref@1.0.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Is this value a JS WeakRef? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
+ "homepage_url" : "https://github.com/inspect-js/is-weakref#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
+ "hash" : {
+ "value" : "9529f383a9338205e89765e0392efc2f100f06f2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/is-weakref.git",
+ "revision" : "f63853b41b499be00bc3d4b519a4c6e3844a467c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-weakref.git",
+ "revision" : "f63853b41b499be00bc3d4b519a4c6e3844a467c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::is-windows:1.0.2",
+ "purl" : "pkg:npm/is-windows@1.0.2",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.",
+ "homepage_url" : "https://github.com/jonschlinkert/is-windows",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+ "hash" : {
+ "value" : "d1850eb9791ecd18e6182ce12a30f396634bb19d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/is-windows.git",
+ "revision" : "4dcfff4ed9e36ad761a1a24d3899c832382d7254",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-windows.git",
+ "revision" : "4dcfff4ed9e36ad761a1a24d3899c832382d7254",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::isarray:1.0.0",
+ "purl" : "pkg:npm/isarray@1.0.0",
+ "authors" : [ "Julian Gruber" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Array#isArray for older browsers",
+ "homepage_url" : "https://github.com/juliangruber/isarray",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "hash" : {
+ "value" : "bb935d48582cba168c06834957a54a3e07124f11",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/juliangruber/isarray.git",
+ "revision" : "2a23a281f369e9ae06394c0fb4d2381355a6ba33",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/isarray.git",
+ "revision" : "2a23a281f369e9ae06394c0fb4d2381355a6ba33",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::isexe:2.0.0",
+ "purl" : "pkg:npm/isexe@2.0.0",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Minimal module to check if a file is executable.",
+ "homepage_url" : "https://github.com/isaacs/isexe#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "hash" : {
+ "value" : "e8fbf374dc556ff8947a10dcb0572d633f2cfa10",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/isaacs/isexe.git",
+ "revision" : "10f8be491aab2e158c7e20df64a7f90ab5b5475c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/isexe.git",
+ "revision" : "10f8be491aab2e158c7e20df64a7f90ab5b5475c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-coverage:3.2.0",
+ "purl" : "pkg:npm/istanbul-lib-coverage@3.2.0",
+ "authors" : [ "Krishnan Anantheswaran" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Data library for istanbul coverage objects",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
+ "hash" : {
+ "value" : "189e7909d0a39fa5a3dfad5b03f71947770191d3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-lib-coverage"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-lib-coverage"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-hook:3.0.0",
+ "purl" : "pkg:npm/istanbul-lib-hook@3.0.0",
+ "authors" : [ "Krishnan Anantheswaran" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Hooks for require, vm and script used in istanbul",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz",
+ "hash" : {
+ "value" : "8f84c9434888cc6b1d0a9d7092a76d239ebf0cc6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b",
+ "path" : "packages/istanbul-lib-hook"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b",
+ "path" : "packages/istanbul-lib-hook"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-instrument:4.0.3",
+ "purl" : "pkg:npm/istanbul-lib-instrument@4.0.3",
+ "authors" : [ "Krishnan Anantheswaran" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Core istanbul API for JS code coverage",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
+ "hash" : {
+ "value" : "873c6fff897450118222774696a3f28902d77c1d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "2c6f0e24680d050503d404de0ebff53467fefbff",
+ "path" : "packages/istanbul-lib-instrument"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "2c6f0e24680d050503d404de0ebff53467fefbff",
+ "path" : "packages/istanbul-lib-instrument"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-processinfo:2.0.3",
+ "purl" : "pkg:npm/istanbul-lib-processinfo@2.0.3",
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "A utility for managing the `processinfo` folder that NYC uses.",
+ "homepage_url" : "https://github.com/istanbuljs/istanbul-lib-processinfo#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz",
+ "hash" : {
+ "value" : "366d454cd0dcb7eb6e0e419378e60072c8626169",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/istanbuljs/istanbul-lib-processinfo.git",
+ "revision" : "b9cd52cf6eb140cf3bff24ba5df34d5812845d66",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/istanbul-lib-processinfo.git",
+ "revision" : "b9cd52cf6eb140cf3bff24ba5df34d5812845d66",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-report:3.0.0",
+ "purl" : "pkg:npm/istanbul-lib-report@3.0.0",
+ "authors" : [ "Krishnan Anantheswaran" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Base reporting library for istanbul",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "hash" : {
+ "value" : "7518fe52ea44de372f460a76b5ecda9ffb73d8a6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b",
+ "path" : "packages/istanbul-lib-report"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b",
+ "path" : "packages/istanbul-lib-report"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-source-maps:4.0.1",
+ "purl" : "pkg:npm/istanbul-lib-source-maps@4.0.1",
+ "authors" : [ "Krishnan Anantheswaran" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Source maps support for istanbul",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
+ "hash" : {
+ "value" : "895f3a709fcfba34c6de5a42939022f3e4358551",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-lib-source-maps"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-lib-source-maps"
+ }
+ }, {
+ "id" : "NPM::istanbul-reports:3.1.5",
+ "purl" : "pkg:npm/istanbul-reports@3.1.5",
+ "authors" : [ "Krishnan Anantheswaran" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "istanbul reports",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz",
+ "hash" : {
+ "value" : "cc9a6ab25cb25659810e4785ed9d9fb742578bae",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-reports"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-reports"
+ }
+ }, {
+ "id" : "NPM::js-tokens:4.0.0",
+ "purl" : "pkg:npm/js-tokens@4.0.0",
+ "authors" : [ "Simon Lydell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A regex that tokenizes JavaScript.",
+ "homepage_url" : "https://github.com/lydell/js-tokens#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "hash" : {
+ "value" : "19203fb59991df98e3a287050d4647cdeaf32499",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/lydell/js-tokens.git",
+ "revision" : "0eb6e9daee32160ab0fca979b6dc91a1991b720c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/lydell/js-tokens.git",
+ "revision" : "0eb6e9daee32160ab0fca979b6dc91a1991b720c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::js-yaml:3.13.1",
+ "purl" : "pkg:npm/js-yaml@3.13.1",
+ "authors" : [ "Vladimir Zapparov" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "YAML 1.2 parser and serializer",
+ "homepage_url" : "https://github.com/nodeca/js-yaml",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
+ "hash" : {
+ "value" : "aff151b30bfdfa8e49e05da22e7415e9dfa37847",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/nodeca/js-yaml.git",
+ "revision" : "665aadda42349dcae869f12040d9b10ef18d12da",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/js-yaml.git",
+ "revision" : "665aadda42349dcae869f12040d9b10ef18d12da",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::js-yaml:3.14.1",
+ "purl" : "pkg:npm/js-yaml@3.14.1",
+ "authors" : [ "Vladimir Zapparov" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "YAML 1.2 parser and serializer",
+ "homepage_url" : "https://github.com/nodeca/js-yaml",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "hash" : {
+ "value" : "dae812fdb3825fa306609a8717383c50c36a0537",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/nodeca/js-yaml.git",
+ "revision" : "37caaad57dc37d350d9a4577a5da53f482bb2983",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/js-yaml.git",
+ "revision" : "37caaad57dc37d350d9a4577a5da53f482bb2983",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::jsesc:2.5.2",
+ "purl" : "pkg:npm/jsesc@2.5.2",
+ "authors" : [ "Mathias Bynens" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data.",
+ "homepage_url" : "https://mths.be/jsesc",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
+ "hash" : {
+ "value" : "80564d2e483dacf6e8ef209650a67df3f0c283a4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mathiasbynens/jsesc.git",
+ "revision" : "5169a48f015437b7cdaffecaa10db52f155dace7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/jsesc.git",
+ "revision" : "5169a48f015437b7cdaffecaa10db52f155dace7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::json-schema-traverse:0.4.1",
+ "purl" : "pkg:npm/json-schema-traverse@0.4.1",
+ "authors" : [ "Evgeny Poberezkin" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Traverse JSON Schema passing each schema object to callback",
+ "homepage_url" : "https://github.com/epoberezkin/json-schema-traverse#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "hash" : {
+ "value" : "69f6a87d9513ab8bb8fe63bdb0979c448e684660",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/epoberezkin/json-schema-traverse.git",
+ "revision" : "bc898eeee723833fc9d604523e00014350bcc4e1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/json-schema-traverse.git",
+ "revision" : "bc898eeee723833fc9d604523e00014350bcc4e1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::json-stable-stringify-without-jsonify:1.0.1",
+ "purl" : "pkg:npm/json-stable-stringify-without-jsonify@1.0.1",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results, with no public domain dependencies",
+ "homepage_url" : "https://github.com/samn/json-stable-stringify",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "hash" : {
+ "value" : "9db7b59496ad3f3cfef30a75142d2d930ad72651",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/samn/json-stable-stringify.git",
+ "revision" : "c0b3c36d976c54e31a814c492cd1c2557a4d3758",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/samn/json-stable-stringify.git",
+ "revision" : "c0b3c36d976c54e31a814c492cd1c2557a4d3758",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::json5:2.2.3",
+ "purl" : "pkg:npm/json5@2.2.3",
+ "authors" : [ "Aseem Kishore" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "JSON for Humans",
+ "homepage_url" : "http://json5.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "hash" : {
+ "value" : "78cd6f1a19bdc12b73db5ad0c61efd66c1e29283",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/json5/json5.git",
+ "revision" : "c3a75242772a5026a49c4017a16d9b3543b62776",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/json5/json5.git",
+ "revision" : "c3a75242772a5026a49c4017a16d9b3543b62776",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::levn:0.3.0",
+ "purl" : "pkg:npm/levn@0.3.0",
+ "authors" : [ "George Zahariev" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible",
+ "homepage_url" : "https://github.com/gkz/levn",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "hash" : {
+ "value" : "3b09924edf9f083c0490fdd4c0bc4421e04764ee",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/gkz/levn.git",
+ "revision" : "a92b9acf928282ba81134b4ae8e6a5f29e1f5e1e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/levn.git",
+ "revision" : "a92b9acf928282ba81134b4ae8e6a5f29e1f5e1e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::load-json-file:2.0.0",
+ "purl" : "pkg:npm/load-json-file@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Read and parse a JSON file",
+ "homepage_url" : "https://github.com/sindresorhus/load-json-file#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
+ "hash" : {
+ "value" : "7947e42149af80d696cbf797bcaabcfe1fe29ca8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/load-json-file.git",
+ "revision" : "49620f12bce627dc2459a08f5ef18cd2ff151eb2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/load-json-file.git",
+ "revision" : "49620f12bce627dc2459a08f5ef18cd2ff151eb2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::locate-path:2.0.0",
+ "purl" : "pkg:npm/locate-path@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the first path that exists on disk of multiple paths",
+ "homepage_url" : "https://github.com/sindresorhus/locate-path#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "hash" : {
+ "value" : "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/locate-path.git",
+ "revision" : "a30b86df0934329c66ff6a2be395db03d65478b8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "a30b86df0934329c66ff6a2be395db03d65478b8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::locate-path:3.0.0",
+ "purl" : "pkg:npm/locate-path@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the first path that exists on disk of multiple paths",
+ "homepage_url" : "https://github.com/sindresorhus/locate-path#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "hash" : {
+ "value" : "dbec3b3ab759758071b58fe59fc41871af21400e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/locate-path.git",
+ "revision" : "d6f19ffa31544161ee94118963deb3b683418151",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "d6f19ffa31544161ee94118963deb3b683418151",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::locate-path:5.0.0",
+ "purl" : "pkg:npm/locate-path@5.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the first path that exists on disk of multiple paths",
+ "homepage_url" : "https://github.com/sindresorhus/locate-path#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "hash" : {
+ "value" : "1afba396afd676a6d42504d0a67a3a7eb9f62aa0",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/locate-path.git",
+ "revision" : "630c0bbd609055c1895089c715649e21000a1ab7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "630c0bbd609055c1895089c715649e21000a1ab7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::lodash:4.17.21",
+ "purl" : "pkg:npm/lodash@4.17.21",
+ "authors" : [ "John-David Dalton" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Lodash modular utilities.",
+ "homepage_url" : "https://lodash.com/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "hash" : {
+ "value" : "679591c564c3bffaae8454cf0b3df370c3d6911c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/lodash/lodash.git",
+ "revision" : "c6e281b878b315c7a10d90f9c2af4cdb112d9625",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/lodash/lodash.git",
+ "revision" : "c6e281b878b315c7a10d90f9c2af4cdb112d9625",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::lodash.flattendeep:4.4.0",
+ "purl" : "pkg:npm/lodash.flattendeep@4.4.0",
+ "authors" : [ "John-David Dalton" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "The lodash method `_.flattenDeep` exported as a module.",
+ "homepage_url" : "https://lodash.com/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz",
+ "hash" : {
+ "value" : "fb030917f86a3134e5bc9bec0d69e0013ddfedb2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/lodash/lodash.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/lodash/lodash.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::log-symbols:2.2.0",
+ "purl" : "pkg:npm/log-symbols@2.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Colored symbols for various log levels. Example: ✔︎ Success",
+ "homepage_url" : "https://github.com/sindresorhus/log-symbols#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
+ "hash" : {
+ "value" : "5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/log-symbols.git",
+ "revision" : "029dbb35f81c0e8471a4fa1fcf014af416d3230d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/log-symbols.git",
+ "revision" : "029dbb35f81c0e8471a4fa1fcf014af416d3230d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::lru-cache:5.1.1",
+ "purl" : "pkg:npm/lru-cache@5.1.1",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "A cache object that deletes the least-recently-used items.",
+ "homepage_url" : "https://github.com/isaacs/node-lru-cache#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "hash" : {
+ "value" : "1da27e6710271947695daf6848e847f01d84b920",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/node-lru-cache.git",
+ "revision" : "a71be6cd547d28b24d28957a15b10cd3eb34555a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-lru-cache.git",
+ "revision" : "a71be6cd547d28b24d28957a15b10cd3eb34555a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::make-dir:3.1.0",
+ "purl" : "pkg:npm/make-dir@3.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Make a directory and its parents if needed - Think `mkdir -p`",
+ "homepage_url" : "https://github.com/sindresorhus/make-dir#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "hash" : {
+ "value" : "415e967046b3a7f1d185277d84aa58203726a13f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/make-dir.git",
+ "revision" : "6d029fe1f75f1a02fcdd7a67f34eadf0941a424f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/make-dir.git",
+ "revision" : "6d029fe1f75f1a02fcdd7a67f34eadf0941a424f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::mime-db:1.43.0",
+ "purl" : "pkg:npm/mime-db@1.43.0",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Media Type Database",
+ "homepage_url" : "https://github.com/jshttp/mime-db#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz",
+ "hash" : {
+ "value" : "0a12e0502650e473d735535050e7c8f4eb4fae58",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jshttp/mime-db.git",
+ "revision" : "c28146bfd5a10f3bc1da482e1751e7782817a60b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-db.git",
+ "revision" : "c28146bfd5a10f3bc1da482e1751e7782817a60b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::mimic-fn:2.1.0",
+ "purl" : "pkg:npm/mimic-fn@2.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Make a function mimic another one",
+ "homepage_url" : "https://github.com/sindresorhus/mimic-fn#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "hash" : {
+ "value" : "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/mimic-fn.git",
+ "revision" : "d29f5387f4c19814a042d03a780ff4481ceac5a3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/mimic-fn.git",
+ "revision" : "d29f5387f4c19814a042d03a780ff4481ceac5a3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::minimatch:3.0.4",
+ "purl" : "pkg:npm/minimatch@3.0.4",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "a glob matcher in javascript",
+ "homepage_url" : "https://github.com/isaacs/minimatch#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "hash" : {
+ "value" : "5166e286457f03306064be5497e8dbb0c3d32083",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/minimatch.git",
+ "revision" : "e46989a323d5f0aa4781eff5e2e6e7aafa223321",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/minimatch.git",
+ "revision" : "e46989a323d5f0aa4781eff5e2e6e7aafa223321",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::minimatch:3.1.2",
+ "purl" : "pkg:npm/minimatch@3.1.2",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "a glob matcher in javascript",
+ "homepage_url" : "https://github.com/isaacs/minimatch#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "hash" : {
+ "value" : "19cd194bfd3e428f049a70817c038d89ab4be35b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/minimatch.git",
+ "revision" : "699c459443a6bd98f5b28197978f76e7f71467ac",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/minimatch.git",
+ "revision" : "699c459443a6bd98f5b28197978f76e7f71467ac",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::minimist:0.0.8",
+ "purl" : "pkg:npm/minimist@0.0.8",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "parse argument options",
+ "homepage_url" : "https://github.com/substack/minimist",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
+ "hash" : {
+ "value" : "857fcabfc3397d2625b8228262e86aa7a011b05d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/substack/minimist.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/minimist.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::minimist:1.2.7",
+ "purl" : "pkg:npm/minimist@1.2.7",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "parse argument options",
+ "homepage_url" : "https://github.com/minimistjs/minimist",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
+ "hash" : {
+ "value" : "daa1c4d91f507390437c6a8bc01078e7000c4d18",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/minimistjs/minimist.git",
+ "revision" : "c590d75b741a12b5423e2b299f38a7f7c7d25a18",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/minimistjs/minimist.git",
+ "revision" : "c590d75b741a12b5423e2b299f38a7f7c7d25a18",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::mkdirp:0.5.1",
+ "purl" : "pkg:npm/mkdirp@0.5.1",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Recursively mkdir, like `mkdir -p`",
+ "homepage_url" : "https://github.com/substack/node-mkdirp#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "hash" : {
+ "value" : "30057438eac6cf7f8c4767f38648d6697d75c903",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/substack/node-mkdirp.git",
+ "revision" : "d4eff0f06093aed4f387e88e9fc301cb76beedc7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-mkdirp.git",
+ "revision" : "d4eff0f06093aed4f387e88e9fc301cb76beedc7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::mkdirp:0.5.6",
+ "purl" : "pkg:npm/mkdirp@0.5.6",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Recursively mkdir, like `mkdir -p`",
+ "homepage_url" : "https://github.com/substack/node-mkdirp#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
+ "hash" : {
+ "value" : "7def03d2432dcae4ba1d611445c48396062255f6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/substack/node-mkdirp.git",
+ "revision" : "92f086d2e28c6848951776fbe8ecadcf54c80c29",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-mkdirp.git",
+ "revision" : "92f086d2e28c6848951776fbe8ecadcf54c80c29",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::mocha:7.0.0",
+ "purl" : "pkg:npm/mocha@7.0.0",
+ "authors" : [ "TJ Holowaychuk" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "simple, flexible, fun test framework",
+ "homepage_url" : "https://mochajs.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/mocha/-/mocha-7.0.0.tgz",
+ "hash" : {
+ "value" : "c60d14bf3de9601f549b3ff5be657eb8381c54bf",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mochajs/mocha.git",
+ "revision" : "69339a3e7710a790b106b922ce53fcb87772f689",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mochajs/mocha.git",
+ "revision" : "69339a3e7710a790b106b922ce53fcb87772f689",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ms:2.0.0",
+ "purl" : "pkg:npm/ms@2.0.0",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Tiny milisecond conversion utility",
+ "homepage_url" : "https://github.com/zeit/ms#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "hash" : {
+ "value" : "5608aeadfc00be6c2901df5f9861788de0d597c8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/zeit/ms.git",
+ "revision" : "9b88d1568a52ec9bb67ecc8d2aa224fa38fd41f4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/zeit/ms.git",
+ "revision" : "9b88d1568a52ec9bb67ecc8d2aa224fa38fd41f4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ms:2.1.1",
+ "purl" : "pkg:npm/ms@2.1.1",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Tiny millisecond conversion utility",
+ "homepage_url" : "https://github.com/zeit/ms#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
+ "hash" : {
+ "value" : "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/zeit/ms.git",
+ "revision" : "fe0bae301a6c41f68a01595658a4f4f0dcba0e84",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/zeit/ms.git",
+ "revision" : "fe0bae301a6c41f68a01595658a4f4f0dcba0e84",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::ms:2.1.2",
+ "purl" : "pkg:npm/ms@2.1.2",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Tiny millisecond conversion utility",
+ "homepage_url" : "https://github.com/zeit/ms#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "hash" : {
+ "value" : "d09d1f357b443f493382a8eb3ccd183872ae6009",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/zeit/ms.git",
+ "revision" : "7920885eb232fbe7a5efdab956d3e7c507c92ddf",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/zeit/ms.git",
+ "revision" : "7920885eb232fbe7a5efdab956d3e7c507c92ddf",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::mute-stream:0.0.8",
+ "purl" : "pkg:npm/mute-stream@0.0.8",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Bytes go in, but they don't come out (when muted).",
+ "homepage_url" : "https://github.com/isaacs/mute-stream#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+ "hash" : {
+ "value" : "1630c42b2251ff81e2a283de96a5497ea92e5e0d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/mute-stream.git",
+ "revision" : "aa4a4baeaff5eeec83b5717738a44642f6948a9f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/mute-stream.git",
+ "revision" : "aa4a4baeaff5eeec83b5717738a44642f6948a9f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::natural-compare:1.4.0",
+ "purl" : "pkg:npm/natural-compare@1.4.0",
+ "authors" : [ "Lauri Rooden" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Compare strings containing a mix of letters and numbers in the way a human being would in sort order.",
+ "homepage_url" : "https://github.com/litejs/natural-compare-lite#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "hash" : {
+ "value" : "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/litejs/natural-compare-lite.git",
+ "revision" : "eec83eee67cfac84d6db30cdd65363f155673770",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/litejs/natural-compare-lite.git",
+ "revision" : "eec83eee67cfac84d6db30cdd65363f155673770",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::nice-try:1.0.5",
+ "purl" : "pkg:npm/nice-try@1.0.5",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Tries to execute a function and discards any error that occurs",
+ "homepage_url" : "https://github.com/electerious/nice-try",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+ "hash" : {
+ "value" : "a3378a7696ce7d223e88fc9b764bd7ef1089e366",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/electerious/nice-try.git",
+ "revision" : "87013431e0877520763863f77dcb77dfd11eb2a9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/electerious/nice-try.git",
+ "revision" : "87013431e0877520763863f77dcb77dfd11eb2a9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::node-environment-flags:1.0.6",
+ "purl" : "pkg:npm/node-environment-flags@1.0.6",
+ "authors" : [ "Christopher Hiller" ],
+ "declared_licenses" : [ "Apache-2.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "Apache-2.0"
+ },
+ "description" : "> Polyfill/shim for `process.allowedNodeEnvironmentFlags`",
+ "homepage_url" : "https://github.com/boneskull/node-environment-flags#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.6.tgz",
+ "hash" : {
+ "value" : "a30ac13621f6f7d674260a54dede048c3982c088",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/boneskull/node-environment-flags.git",
+ "revision" : "fbf451941e4721392c7c346de843514d7ad14a95",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/boneskull/node-environment-flags.git",
+ "revision" : "fbf451941e4721392c7c346de843514d7ad14a95",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::node-preload:0.2.1",
+ "purl" : "pkg:npm/node-preload@0.2.1",
+ "authors" : [ "Corey Farrell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Request that Node.js child processes preload modules",
+ "homepage_url" : "https://github.com/cfware/node-preload#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz",
+ "hash" : {
+ "value" : "c03043bb327f417a18fee7ab7ee57b408a144301",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/cfware/node-preload.git",
+ "revision" : "f59d60cb94bafc4f4259d598ec26b543d293586d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/node-preload.git",
+ "revision" : "f59d60cb94bafc4f4259d598ec26b543d293586d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::node-releases:2.0.9",
+ "purl" : "pkg:npm/node-releases@2.0.9",
+ "authors" : [ "Sergey Rubanov" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Node.js releases data",
+ "homepage_url" : "https://github.com/chicoxyzzy/node-releases#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/node-releases/-/node-releases-2.0.9.tgz",
+ "hash" : {
+ "value" : "fe66405285382b0c4ac6bcfbfbe7e8a510650b4d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chicoxyzzy/node-releases.git",
+ "revision" : "90b2db5f3f3f34d8a9ffd2599a493f0ba8f63d87",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chicoxyzzy/node-releases.git",
+ "revision" : "90b2db5f3f3f34d8a9ffd2599a493f0ba8f63d87",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::normalize-package-data:2.5.0",
+ "purl" : "pkg:npm/normalize-package-data@2.5.0",
+ "authors" : [ "Meryn Stol" ],
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "Normalizes data that can be found in package.json files.",
+ "homepage_url" : "https://github.com/npm/normalize-package-data#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "hash" : {
+ "value" : "e66db1838b200c1dfc233225d12cb36520e234a8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/npm/normalize-package-data.git",
+ "revision" : "dedb606de22fa4bdf21c3679dece5fd07b4a0b1a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/normalize-package-data.git",
+ "revision" : "dedb606de22fa4bdf21c3679dece5fd07b4a0b1a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::normalize-path:3.0.0",
+ "purl" : "pkg:npm/normalize-path@3.0.0",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
+ "homepage_url" : "https://github.com/jonschlinkert/normalize-path",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "hash" : {
+ "value" : "0dcd69ff23a1c9b11fd0978316644a0388216a65",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/normalize-path.git",
+ "revision" : "0979eb807a1725d83d5a996347d41067cf773d1f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/normalize-path.git",
+ "revision" : "0979eb807a1725d83d5a996347d41067cf773d1f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::nyc:15.0.0",
+ "purl" : "pkg:npm/nyc@15.0.0",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "the Istanbul command line interface",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/nyc/-/nyc-15.0.0.tgz",
+ "hash" : {
+ "value" : "eb32db2c0f29242c2414fe46357f230121cfc162",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/istanbuljs/nyc.git",
+ "revision" : "bebf4d68c6a2cb0c5fd66ba3513a8e68ad5a284f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/nyc.git",
+ "revision" : "bebf4d68c6a2cb0c5fd66ba3513a8e68ad5a284f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::object-inspect:1.12.3",
+ "purl" : "pkg:npm/object-inspect@1.12.3",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "string representations of objects in node and the browser",
+ "homepage_url" : "https://github.com/inspect-js/object-inspect",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
+ "hash" : {
+ "value" : "ba62dffd67ee256c8c086dfae69e016cd1f198b9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/object-inspect.git",
+ "revision" : "8155d9e0721dcf8d2c07a3d262ae29f444f35e37",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/object-inspect.git",
+ "revision" : "8155d9e0721dcf8d2c07a3d262ae29f444f35e37",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::object-keys:1.1.1",
+ "purl" : "pkg:npm/object-keys@1.1.1",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim",
+ "homepage_url" : "https://github.com/ljharb/object-keys#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "hash" : {
+ "value" : "1c47f272df277f3b1daf061677d9c82e2322c60e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/object-keys.git",
+ "revision" : "ba2c1989270c7de969aa8498fc3b7c8e677806f3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object-keys.git",
+ "revision" : "ba2c1989270c7de969aa8498fc3b7c8e677806f3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::object.assign:4.1.0",
+ "purl" : "pkg:npm/object.assign@4.1.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim",
+ "homepage_url" : "https://github.com/ljharb/object.assign#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
+ "hash" : {
+ "value" : "968bf1100d7956bb3ca086f006f846b3bc4008da",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/object.assign.git",
+ "revision" : "5fd74aee40aba36e9a8eb0c329abd33a07b93164",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object.assign.git",
+ "revision" : "5fd74aee40aba36e9a8eb0c329abd33a07b93164",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::object.assign:4.1.4",
+ "purl" : "pkg:npm/object.assign@4.1.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim",
+ "homepage_url" : "https://github.com/ljharb/object.assign#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
+ "hash" : {
+ "value" : "9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/ljharb/object.assign.git",
+ "revision" : "025e374fb6436c378918e91b47049a7a043f4b5b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object.assign.git",
+ "revision" : "025e374fb6436c378918e91b47049a7a043f4b5b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::object.getownpropertydescriptors:2.1.5",
+ "purl" : "pkg:npm/object.getownpropertydescriptors@2.1.5",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.",
+ "homepage_url" : "https://github.com/es-shims/object.getownpropertydescriptors#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz",
+ "hash" : {
+ "value" : "db5a9002489b64eef903df81d6623c07e5b4b4d3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/object.getownpropertydescriptors.git",
+ "revision" : "cb869d59e110d4044b3b06edc0ec11595be17653",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/object.getownpropertydescriptors.git",
+ "revision" : "cb869d59e110d4044b3b06edc0ec11595be17653",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::object.values:1.1.6",
+ "purl" : "pkg:npm/object.values@1.1.6",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES2017 spec-compliant Object.values shim.",
+ "homepage_url" : "https://github.com/es-shims/Object.values#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
+ "hash" : {
+ "value" : "4abbaa71eba47d63589d402856f908243eea9b1d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/Object.values.git",
+ "revision" : "da744e066168573d2b4b13b9d9bd4daa386786bf",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Object.values.git",
+ "revision" : "da744e066168573d2b4b13b9d9bd4daa386786bf",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::once:1.4.0",
+ "purl" : "pkg:npm/once@1.4.0",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Run a function exactly one time",
+ "homepage_url" : "https://github.com/isaacs/once#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "hash" : {
+ "value" : "583b1aa775961d4b113ac17d9c50baef9dd76bd1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/once.git",
+ "revision" : "0e614d9f5a7e6f0305c625f6b581f6d80b33b8a6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/once.git",
+ "revision" : "0e614d9f5a7e6f0305c625f6b581f6d80b33b8a6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::onetime:5.1.2",
+ "purl" : "pkg:npm/onetime@5.1.2",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Ensure a function is only called once",
+ "homepage_url" : "https://github.com/sindresorhus/onetime#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "hash" : {
+ "value" : "d0e96ebb56b07476df1dd9c4806e5237985ca45e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/onetime.git",
+ "revision" : "4fa3c9a40798476514fec36a1720dc85b897cc04",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/onetime.git",
+ "revision" : "4fa3c9a40798476514fec36a1720dc85b897cc04",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::optionator:0.8.3",
+ "purl" : "pkg:npm/optionator@0.8.3",
+ "authors" : [ "George Zahariev" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "option parsing and help generation",
+ "homepage_url" : "https://github.com/gkz/optionator",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "hash" : {
+ "value" : "84fa1d036fe9d3c7e21d99884b601167ec8fb495",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/gkz/optionator.git",
+ "revision" : "80318611b86ad28a38671f811d6c80bf564cdbda",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/optionator.git",
+ "revision" : "80318611b86ad28a38671f811d6c80bf564cdbda",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::os-tmpdir:1.0.2",
+ "purl" : "pkg:npm/os-tmpdir@1.0.2",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Node.js os.tmpdir() ponyfill",
+ "homepage_url" : "https://github.com/sindresorhus/os-tmpdir#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+ "hash" : {
+ "value" : "bbe67406c79aa85c5cfec766fe5734555dfa1274",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/os-tmpdir.git",
+ "revision" : "1abf9cf5611b4be7377060ea67054b45cbf6813c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/os-tmpdir.git",
+ "revision" : "1abf9cf5611b4be7377060ea67054b45cbf6813c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-limit:1.3.0",
+ "purl" : "pkg:npm/p-limit@1.3.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Run multiple promise-returning & async functions with limited concurrency",
+ "homepage_url" : "https://github.com/sindresorhus/p-limit#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "hash" : {
+ "value" : "b86bd5f0c25690911c7590fcbfc2010d54b3ccb8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-limit.git",
+ "revision" : "cf076d73844ebbfda8ae4e184fc436396998ecb2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-limit.git",
+ "revision" : "cf076d73844ebbfda8ae4e184fc436396998ecb2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-limit:2.3.0",
+ "purl" : "pkg:npm/p-limit@2.3.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Run multiple promise-returning & async functions with limited concurrency",
+ "homepage_url" : "https://github.com/sindresorhus/p-limit#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "hash" : {
+ "value" : "3dd33c647a214fdfffd835933eb086da0dc21db1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-limit.git",
+ "revision" : "a11f02bc5c04490b7c3de2663d866c211fb915ea",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-limit.git",
+ "revision" : "a11f02bc5c04490b7c3de2663d866c211fb915ea",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-locate:2.0.0",
+ "purl" : "pkg:npm/p-locate@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the first fulfilled promise that satisfies the provided testing function",
+ "homepage_url" : "https://github.com/sindresorhus/p-locate#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "hash" : {
+ "value" : "20a0103b222a70c8fd39cc2e580680f3dde5ec43",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-locate.git",
+ "revision" : "6300abb6451f04bbaa760f42844ec1c501d79120",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "6300abb6451f04bbaa760f42844ec1c501d79120",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-locate:3.0.0",
+ "purl" : "pkg:npm/p-locate@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the first fulfilled promise that satisfies the provided testing function",
+ "homepage_url" : "https://github.com/sindresorhus/p-locate#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "hash" : {
+ "value" : "322d69a05c0264b25997d9f40cd8a891ab0064a4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-locate.git",
+ "revision" : "d37f108c0b04779e307b4e7203981caa367bac57",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "d37f108c0b04779e307b4e7203981caa367bac57",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-locate:4.1.0",
+ "purl" : "pkg:npm/p-locate@4.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the first fulfilled promise that satisfies the provided testing function",
+ "homepage_url" : "https://github.com/sindresorhus/p-locate#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "hash" : {
+ "value" : "a3428bb7088b3a60292f66919278b7c297ad4f07",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-locate.git",
+ "revision" : "a650b26e49713a8cca58f669a7f8aef9b655554c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "a650b26e49713a8cca58f669a7f8aef9b655554c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-map:3.0.0",
+ "purl" : "pkg:npm/p-map@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Map over promises concurrently",
+ "homepage_url" : "https://github.com/sindresorhus/p-map#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
+ "hash" : {
+ "value" : "d704d9af8a2ba684e2600d9a215983d4141a979d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-map.git",
+ "revision" : "a8c06732e440214da89c410fa8d0cd74e110868e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-map.git",
+ "revision" : "a8c06732e440214da89c410fa8d0cd74e110868e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-try:1.0.0",
+ "purl" : "pkg:npm/p-try@1.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "`Promise#try()` ponyfill - Starts a promise chain",
+ "homepage_url" : "https://github.com/sindresorhus/p-try#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "hash" : {
+ "value" : "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-try.git",
+ "revision" : "8a6f2c232b80e12c138714e553fc8dd6313604c2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-try.git",
+ "revision" : "8a6f2c232b80e12c138714e553fc8dd6313604c2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::p-try:2.2.0",
+ "purl" : "pkg:npm/p-try@2.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "`Start a promise chain",
+ "homepage_url" : "https://github.com/sindresorhus/p-try#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "hash" : {
+ "value" : "cb2868540e313d61de58fafbe35ce9004d5540e6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/p-try.git",
+ "revision" : "e80e2e130b2d16807345be02aa03541e6e085952",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-try.git",
+ "revision" : "e80e2e130b2d16807345be02aa03541e6e085952",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::package-hash:4.0.0",
+ "purl" : "pkg:npm/package-hash@4.0.0",
+ "authors" : [ "Mark Wubben" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Generates a hash for an installed npm package, useful for salting caches",
+ "homepage_url" : "https://github.com/novemberborn/package-hash#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz",
+ "hash" : {
+ "value" : "3537f654665ec3cc38827387fc904c163c54f506",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/novemberborn/package-hash.git",
+ "revision" : "6afce110db308d4ed70dbdb5658fc4ec50522c86",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/novemberborn/package-hash.git",
+ "revision" : "6afce110db308d4ed70dbdb5658fc4ec50522c86",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::parent-module:1.0.1",
+ "purl" : "pkg:npm/parent-module@1.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the path of the parent module",
+ "homepage_url" : "https://github.com/sindresorhus/parent-module#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "hash" : {
+ "value" : "691d2709e78c79fae3a156622452d00762caaaa2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/parent-module.git",
+ "revision" : "48267d001c4d215ba21a701a6882dba30fb8d614",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/parent-module.git",
+ "revision" : "48267d001c4d215ba21a701a6882dba30fb8d614",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::parse-json:2.2.0",
+ "purl" : "pkg:npm/parse-json@2.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Parse JSON with more helpful errors",
+ "homepage_url" : "https://github.com/sindresorhus/parse-json",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+ "hash" : {
+ "value" : "f480f40434ef80741f8469099f8dea18f55a4dc9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/parse-json",
+ "revision" : "419b0cbb83e67af53f9fd3f7ff98605ea2020eb6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/parse-json.git",
+ "revision" : "419b0cbb83e67af53f9fd3f7ff98605ea2020eb6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::path-exists:3.0.0",
+ "purl" : "pkg:npm/path-exists@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if a path exists",
+ "homepage_url" : "https://github.com/sindresorhus/path-exists#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "hash" : {
+ "value" : "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/path-exists.git",
+ "revision" : "4696c60a8b2b9ac61902aa9eab7cb326ab6005c8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-exists.git",
+ "revision" : "4696c60a8b2b9ac61902aa9eab7cb326ab6005c8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::path-exists:4.0.0",
+ "purl" : "pkg:npm/path-exists@4.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if a path exists",
+ "homepage_url" : "https://github.com/sindresorhus/path-exists#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "hash" : {
+ "value" : "513bdbe2d3b95d7762e8c1137efa195c6c61b5b3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/path-exists.git",
+ "revision" : "26b1adf80aa6761a7db35927a20cf59e0fd1a00d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-exists.git",
+ "revision" : "26b1adf80aa6761a7db35927a20cf59e0fd1a00d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::path-is-absolute:1.0.1",
+ "purl" : "pkg:npm/path-is-absolute@1.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Node.js 0.12 path.isAbsolute() ponyfill",
+ "homepage_url" : "https://github.com/sindresorhus/path-is-absolute#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "hash" : {
+ "value" : "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/path-is-absolute.git",
+ "revision" : "edc91d348b21dac2ab65ea2fbec2868e2eff5eb6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-is-absolute.git",
+ "revision" : "edc91d348b21dac2ab65ea2fbec2868e2eff5eb6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::path-key:2.0.1",
+ "purl" : "pkg:npm/path-key@2.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the PATH environment variable key cross-platform",
+ "homepage_url" : "https://github.com/sindresorhus/path-key#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "hash" : {
+ "value" : "411cadb574c5a140d3a4b1910d40d80cc9f40b40",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/path-key.git",
+ "revision" : "d60207f9ab9dc9e60d49c87faacf415a4946287c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-key.git",
+ "revision" : "d60207f9ab9dc9e60d49c87faacf415a4946287c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::path-key:3.1.1",
+ "purl" : "pkg:npm/path-key@3.1.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the PATH environment variable key cross-platform",
+ "homepage_url" : "https://github.com/sindresorhus/path-key#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "hash" : {
+ "value" : "581f6ade658cbba65a0d3380de7753295054f375",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/path-key.git",
+ "revision" : "caea269db3a5eb0c09c793f4be5435312971d2fa",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-key.git",
+ "revision" : "caea269db3a5eb0c09c793f4be5435312971d2fa",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::path-parse:1.0.7",
+ "purl" : "pkg:npm/path-parse@1.0.7",
+ "authors" : [ "Javier Blanco" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Node.js path.parse() ponyfill",
+ "homepage_url" : "https://github.com/jbgutierrez/path-parse#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "hash" : {
+ "value" : "fbc114b60ca42b30d9daf5858e4bd68bbedb6735",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jbgutierrez/path-parse.git",
+ "revision" : "9f1db2802ffbc572e6b447f66126697e33b0055e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jbgutierrez/path-parse.git",
+ "revision" : "9f1db2802ffbc572e6b447f66126697e33b0055e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::path-type:2.0.0",
+ "purl" : "pkg:npm/path-type@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Check if a path is a file, directory, or symlink",
+ "homepage_url" : "https://github.com/sindresorhus/path-type#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
+ "hash" : {
+ "value" : "f012ccb8415b7096fc2daa1054c3d72389594c73",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/path-type.git",
+ "revision" : "ef08bdbd35fa01342ef6d80f2e8eb8b9c2cccc30",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-type.git",
+ "revision" : "ef08bdbd35fa01342ef6d80f2e8eb8b9c2cccc30",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::picocolors:1.0.0",
+ "purl" : "pkg:npm/picocolors@1.0.0",
+ "authors" : [ "Alexey Raspopov" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "The tiniest and the fastest library for terminal output formatting with ANSI colors",
+ "homepage_url" : "https://github.com/alexeyraspopov/picocolors#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "hash" : {
+ "value" : "cb5bdc74ff3f51892236eaf79d68bc44564ab81c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/alexeyraspopov/picocolors.git",
+ "revision" : "228cea3fa726857785b8c069cccc58e9743cd71d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/alexeyraspopov/picocolors.git",
+ "revision" : "228cea3fa726857785b8c069cccc58e9743cd71d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::picomatch:2.3.1",
+ "purl" : "pkg:npm/picomatch@2.3.1",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
+ "homepage_url" : "https://github.com/micromatch/picomatch",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "hash" : {
+ "value" : "3ba3833733646d9d3e4995946c1365a67fb07a42",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/micromatch/picomatch.git",
+ "revision" : "5467a5a9638472610de4f30709991b9a56bb5613",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/picomatch.git",
+ "revision" : "5467a5a9638472610de4f30709991b9a56bb5613",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::pify:2.3.0",
+ "purl" : "pkg:npm/pify@2.3.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Promisify a callback-style function",
+ "homepage_url" : "https://github.com/sindresorhus/pify",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "hash" : {
+ "value" : "ed141a6ac043a849ea588498e7dca8b15330e90c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/pify",
+ "revision" : "2dd0d8b880e4ebcc5cc33ae126b02647418e4440",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/pify.git",
+ "revision" : "2dd0d8b880e4ebcc5cc33ae126b02647418e4440",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::pkg-dir:4.2.0",
+ "purl" : "pkg:npm/pkg-dir@4.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Find the root directory of a Node.js project or npm package",
+ "homepage_url" : "https://github.com/sindresorhus/pkg-dir#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "hash" : {
+ "value" : "f099133df7ede422e81d1d8448270eeb3e4261f3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/pkg-dir.git",
+ "revision" : "e25e5342c5ec425bb4a2c93787a880c29cbf0a49",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/pkg-dir.git",
+ "revision" : "e25e5342c5ec425bb4a2c93787a880c29cbf0a49",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::prelude-ls:1.1.2",
+ "purl" : "pkg:npm/prelude-ls@1.1.2",
+ "authors" : [ "George Zahariev" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.",
+ "homepage_url" : "http://preludels.com",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "hash" : {
+ "value" : "21932a549f5e52ffd9a827f570e04be62a97da54",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/gkz/prelude-ls.git",
+ "revision" : "d69be8fd8a682321ba24eced17caf3a1b8ca73b8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/prelude-ls.git",
+ "revision" : "d69be8fd8a682321ba24eced17caf3a1b8ca73b8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::process-on-spawn:1.0.0",
+ "purl" : "pkg:npm/process-on-spawn@1.0.0",
+ "authors" : [ "Corey Farrell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Execute callbacks when child processes are spawned",
+ "homepage_url" : "https://github.com/cfware/process-on-spawn#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz",
+ "hash" : {
+ "value" : "95b05a23073d30a17acfdc92a440efd2baefdc93",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/cfware/process-on-spawn.git",
+ "revision" : "333106fa246ae4577ce010f8a5405d38061ec359",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/process-on-spawn.git",
+ "revision" : "333106fa246ae4577ce010f8a5405d38061ec359",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::progress:2.0.3",
+ "purl" : "pkg:npm/progress@2.0.3",
+ "authors" : [ "TJ Holowaychuk" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Flexible ascii progress bar",
+ "homepage_url" : "https://github.com/visionmedia/node-progress#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+ "hash" : {
+ "value" : "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/visionmedia/node-progress.git",
+ "revision" : "0790207ef077cbfb7ebde24a1dd9895ebf4643e1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/node-progress.git",
+ "revision" : "0790207ef077cbfb7ebde24a1dd9895ebf4643e1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::punycode:2.3.0",
+ "purl" : "pkg:npm/punycode@2.3.0",
+ "authors" : [ "Mathias Bynens" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
+ "homepage_url" : "https://mths.be/punycode",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
+ "hash" : {
+ "value" : "f67fa67c94da8f4d0cfff981aee4118064199b8f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mathiasbynens/punycode.js.git",
+ "revision" : "44e6200b96c186ebc5de72dcce2bcdfe8a32bfbc",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/punycode.js.git",
+ "revision" : "44e6200b96c186ebc5de72dcce2bcdfe8a32bfbc",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::read-pkg:2.0.0",
+ "purl" : "pkg:npm/read-pkg@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Read a package.json file",
+ "homepage_url" : "https://github.com/sindresorhus/read-pkg#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
+ "hash" : {
+ "value" : "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/read-pkg.git",
+ "revision" : "c1664a2f42d1f1898b7648534576e6dcfa1f48c8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/read-pkg.git",
+ "revision" : "c1664a2f42d1f1898b7648534576e6dcfa1f48c8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::read-pkg-up:2.0.0",
+ "purl" : "pkg:npm/read-pkg-up@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Read the closest package.json file",
+ "homepage_url" : "https://github.com/sindresorhus/read-pkg-up#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
+ "hash" : {
+ "value" : "6b72a8048984e0c41e79510fd5e9fa99b3b549be",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/read-pkg-up.git",
+ "revision" : "3b8a594ab581f000f705e43e8abdb1a23e8822f2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/read-pkg-up.git",
+ "revision" : "3b8a594ab581f000f705e43e8abdb1a23e8822f2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::readdirp:3.2.0",
+ "purl" : "pkg:npm/readdirp@3.2.0",
+ "authors" : [ "Thorsten Lorenz" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Recursive version of fs.readdir with streaming api.",
+ "homepage_url" : "https://github.com/paulmillr/readdirp",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz",
+ "hash" : {
+ "value" : "c30c33352b12c96dfb4b895421a49fd5a9593839",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/paulmillr/readdirp.git",
+ "revision" : "cdfb3df2192e0721be258b28c19b9be1d43fcdd0",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/paulmillr/readdirp.git",
+ "revision" : "cdfb3df2192e0721be258b28c19b9be1d43fcdd0",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::regexp.prototype.flags:1.4.3",
+ "purl" : "pkg:npm/regexp.prototype.flags@1.4.3",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES6 spec-compliant RegExp.prototype.flags shim.",
+ "homepage_url" : "https://github.com/es-shims/RegExp.prototype.flags#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
+ "hash" : {
+ "value" : "87cab30f80f66660181a3bb7bf5981a872b367ac",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/RegExp.prototype.flags.git",
+ "revision" : "0ed48d003353a0157f14ca8f2b5e3034830dd179",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/RegExp.prototype.flags.git",
+ "revision" : "0ed48d003353a0157f14ca8f2b5e3034830dd179",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::regexpp:2.0.1",
+ "purl" : "pkg:npm/regexpp@2.0.1",
+ "authors" : [ "Toru Nagashima" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression parser for ECMAScript 2018.",
+ "homepage_url" : "https://github.com/mysticatea/regexpp#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
+ "hash" : {
+ "value" : "8d19d31cf632482b589049f8281f93dbcba4d07f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mysticatea/regexpp.git",
+ "revision" : "d68b435cbf6d37e3fa6af186965a7b6c738bf685",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/regexpp.git",
+ "revision" : "d68b435cbf6d37e3fa6af186965a7b6c738bf685",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::regexpp:3.2.0",
+ "purl" : "pkg:npm/regexpp@3.2.0",
+ "authors" : [ "Toru Nagashima" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression parser for ECMAScript.",
+ "homepage_url" : "https://github.com/mysticatea/regexpp#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
+ "hash" : {
+ "value" : "0425a2768d8f23bad70ca4b90461fa2f1213e1b2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/mysticatea/regexpp.git",
+ "revision" : "b8bc4e82885a9cff44b908d247685cde129cd863",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/regexpp.git",
+ "revision" : "b8bc4e82885a9cff44b908d247685cde129cd863",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::release-zalgo:1.0.0",
+ "purl" : "pkg:npm/release-zalgo@1.0.0",
+ "authors" : [ "Mark Wubben" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Helps you write code with promise-like chains that can run both synchronously and asynchronously",
+ "homepage_url" : "https://github.com/novemberborn/release-zalgo#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz",
+ "hash" : {
+ "value" : "09700b7e5074329739330e535c5a90fb67851730",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/novemberborn/release-zalgo.git",
+ "revision" : "696e6ac92340120fe4b26fce4152f0197b45183b",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/novemberborn/release-zalgo.git",
+ "revision" : "696e6ac92340120fe4b26fce4152f0197b45183b",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::require-directory:2.1.1",
+ "purl" : "pkg:npm/require-directory@2.1.1",
+ "authors" : [ "Troy Goode" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.",
+ "homepage_url" : "https://github.com/troygoode/node-require-directory/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "hash" : {
+ "value" : "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/troygoode/node-require-directory.git",
+ "revision" : "cc71c23dd0c16cefd26855303c16ca1b9b50a36d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/troygoode/node-require-directory.git",
+ "revision" : "cc71c23dd0c16cefd26855303c16ca1b9b50a36d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::require-main-filename:2.0.0",
+ "purl" : "pkg:npm/require-main-filename@2.0.0",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "shim for require.main.filename() that works in as many environments as possible",
+ "homepage_url" : "https://github.com/yargs/require-main-filename#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "hash" : {
+ "value" : "d0b329ecc7cc0f61649f62215be69af54aa8989b",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/yargs/require-main-filename.git",
+ "revision" : "1acaf42e8ababa22c191319b319f25df833ffd79",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/require-main-filename.git",
+ "revision" : "1acaf42e8ababa22c191319b319f25df833ffd79",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::resolve:1.22.1",
+ "purl" : "pkg:npm/resolve@1.22.1",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "resolve like require.resolve() on behalf of files asynchronously and synchronously",
+ "homepage_url" : "https://github.com/browserify/resolve#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
+ "hash" : {
+ "value" : "27cb2ebb53f91abb49470a928bba7558066ac177",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/browserify/resolve.git",
+ "revision" : "8eea601093612229da100e9dfbeb4b2b47693aa6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserify/resolve.git",
+ "revision" : "8eea601093612229da100e9dfbeb4b2b47693aa6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::resolve-from:4.0.0",
+ "purl" : "pkg:npm/resolve-from@4.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Resolve the path of a module like `require.resolve()` but from a given path",
+ "homepage_url" : "https://github.com/sindresorhus/resolve-from#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "hash" : {
+ "value" : "4abcd852ad32dd7baabfe9b40e00a36db5f392e6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "60cd04e69135b96b98b848fff719b1276a5610c0",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "60cd04e69135b96b98b848fff719b1276a5610c0",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::resolve-from:5.0.0",
+ "purl" : "pkg:npm/resolve-from@5.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Resolve the path of a module like `require.resolve()` but from a given path",
+ "homepage_url" : "https://github.com/sindresorhus/resolve-from#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "hash" : {
+ "value" : "c35225843df8f776df21c57557bc087e9dfdfc69",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "53f4a1b40f972dbfc4dda9627d24068000eae897",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "53f4a1b40f972dbfc4dda9627d24068000eae897",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::restore-cursor:3.1.0",
+ "purl" : "pkg:npm/restore-cursor@3.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Gracefully restore the CLI cursor on exit",
+ "homepage_url" : "https://github.com/sindresorhus/restore-cursor#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+ "hash" : {
+ "value" : "39f67c54b3a7a58cea5236d95cf0034239631f7e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/restore-cursor.git",
+ "revision" : "32accb3425dbcde0b303583b9137857451b67045",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/restore-cursor.git",
+ "revision" : "32accb3425dbcde0b303583b9137857451b67045",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::rimraf:2.6.3",
+ "purl" : "pkg:npm/rimraf@2.6.3",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "A deep deletion module for node (like `rm -rf`)",
+ "homepage_url" : "https://github.com/isaacs/rimraf#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+ "hash" : {
+ "value" : "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/rimraf.git",
+ "revision" : "9442819908e52f2c32620e8fa609d7a5d472cc2c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/rimraf.git",
+ "revision" : "9442819908e52f2c32620e8fa609d7a5d472cc2c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::rimraf:3.0.2",
+ "purl" : "pkg:npm/rimraf@3.0.2",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "A deep deletion module for node (like `rm -rf`)",
+ "homepage_url" : "https://github.com/isaacs/rimraf#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "hash" : {
+ "value" : "f1a5402ba6220ad52cc1282bac1ae3aa49fd061a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/rimraf.git",
+ "revision" : "8c10fb8d685d5cc35708e0ffc4dac9ec5dd5b444",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/rimraf.git",
+ "revision" : "8c10fb8d685d5cc35708e0ffc4dac9ec5dd5b444",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::run-async:2.4.1",
+ "purl" : "pkg:npm/run-async@2.4.1",
+ "authors" : [ "Simon Boudrias" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.",
+ "homepage_url" : "https://github.com/SBoudrias/run-async#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
+ "hash" : {
+ "value" : "8440eccf99ea3e70bd409d49aab88e10c189a455",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/SBoudrias/run-async.git",
+ "revision" : "f3e0a18abf6e9569abfcf327daa9351c95f109b1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/SBoudrias/run-async.git",
+ "revision" : "f3e0a18abf6e9569abfcf327daa9351c95f109b1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::rxjs:6.6.7",
+ "purl" : "pkg:npm/rxjs@6.6.7",
+ "authors" : [ "Ben Lesh" ],
+ "declared_licenses" : [ "Apache-2.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "Apache-2.0"
+ },
+ "description" : "Reactive Extensions for modern JavaScript",
+ "homepage_url" : "https://github.com/ReactiveX/RxJS",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
+ "hash" : {
+ "value" : "90ac018acabf491bf65044235d5863c4dab804c9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/reactivex/rxjs.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/reactivex/rxjs.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::safe-regex-test:1.0.0",
+ "purl" : "pkg:npm/safe-regex-test@1.0.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Give a regex, get a robust predicate function that tests it against a string.",
+ "homepage_url" : "https://github.com/ljharb/safe-regex-test#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
+ "hash" : {
+ "value" : "793b874d524eb3640d1873aad03596db2d4f2295",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/safe-regex-test.git",
+ "revision" : "5ff385f943afbe6d23a0e01e5e0444d88b4bee93",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/safe-regex-test.git",
+ "revision" : "5ff385f943afbe6d23a0e01e5e0444d88b4bee93",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::safer-buffer:2.1.2",
+ "purl" : "pkg:npm/safer-buffer@2.1.2",
+ "authors" : [ "Nikita Skovoroda" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Modern Buffer API polyfill without footguns",
+ "homepage_url" : "https://github.com/ChALkeR/safer-buffer#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "hash" : {
+ "value" : "44fa161b0187b9549dd84bb91802f9bd8385cd6a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ChALkeR/safer-buffer.git",
+ "revision" : "e8ac214944eda30e1e6c6b7d7e7f6a21cf7dce7c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ChALkeR/safer-buffer.git",
+ "revision" : "e8ac214944eda30e1e6c6b7d7e7f6a21cf7dce7c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::semver:5.7.1",
+ "purl" : "pkg:npm/semver@5.7.1",
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "The semantic version parser used by npm.",
+ "homepage_url" : "https://github.com/npm/node-semver#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "hash" : {
+ "value" : "a954f931aeba508d307bbf069eff0c01c96116f7",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/npm/node-semver.git",
+ "revision" : "c83c18cf84f9ccaea3431c929bb285fd168c01e4",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/node-semver.git",
+ "revision" : "c83c18cf84f9ccaea3431c929bb285fd168c01e4",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::semver:6.3.0",
+ "purl" : "pkg:npm/semver@6.3.0",
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "The semantic version parser used by npm.",
+ "homepage_url" : "https://github.com/npm/node-semver#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "hash" : {
+ "value" : "ee0a64c8af5e8ceea67687b133761e1becbd1d3d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/npm/node-semver.git",
+ "revision" : "0eeceecfba490d136eb3ccae3a8dc118a28565a0",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/node-semver.git",
+ "revision" : "0eeceecfba490d136eb3ccae3a8dc118a28565a0",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::set-blocking:2.0.0",
+ "purl" : "pkg:npm/set-blocking@2.0.0",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "set blocking stdio and stderr ensuring that terminal output does not truncate",
+ "homepage_url" : "https://github.com/yargs/set-blocking#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "hash" : {
+ "value" : "045f9782d011ae9a6803ddd382b24392b3d890f7",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/yargs/set-blocking.git",
+ "revision" : "7eec10577b5fff264de477ba3b9d07f404946eff",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/set-blocking.git",
+ "revision" : "7eec10577b5fff264de477ba3b9d07f404946eff",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::shebang-command:1.2.0",
+ "purl" : "pkg:npm/shebang-command@1.2.0",
+ "authors" : [ "Kevin Martensson" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the command from a shebang",
+ "homepage_url" : "https://github.com/kevva/shebang-command#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "hash" : {
+ "value" : "44aac65b695b03398968c39f363fee5deafdf1ea",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/kevva/shebang-command.git",
+ "revision" : "01de9b7d355f21e00417650a6fb1eb56321bc23c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/shebang-command.git",
+ "revision" : "01de9b7d355f21e00417650a6fb1eb56321bc23c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::shebang-command:2.0.0",
+ "purl" : "pkg:npm/shebang-command@2.0.0",
+ "authors" : [ "Kevin Mårtensson" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the command from a shebang",
+ "homepage_url" : "https://github.com/kevva/shebang-command#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "hash" : {
+ "value" : "ccd0af4f8835fbdc265b82461aaf0c36663f34ea",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/kevva/shebang-command.git",
+ "revision" : "003c4c7d6882d029aa8b3e5777716d726894d734",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/shebang-command.git",
+ "revision" : "003c4c7d6882d029aa8b3e5777716d726894d734",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::shebang-regex:1.0.0",
+ "purl" : "pkg:npm/shebang-regex@1.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression for matching a shebang",
+ "homepage_url" : "https://github.com/sindresorhus/shebang-regex",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "hash" : {
+ "value" : "da42f49740c0b42db2ca9728571cb190c98efea3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/shebang-regex",
+ "revision" : "cb774c70d5f569479ca997abf8ee7e558e617284",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/shebang-regex.git",
+ "revision" : "cb774c70d5f569479ca997abf8ee7e558e617284",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::shebang-regex:3.0.0",
+ "purl" : "pkg:npm/shebang-regex@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Regular expression for matching a shebang line",
+ "homepage_url" : "https://github.com/sindresorhus/shebang-regex#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "hash" : {
+ "value" : "ae16f1644d873ecad843b0307b143362d4c42172",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/shebang-regex.git",
+ "revision" : "27a9a6f0f85c04b9c37a43cf7503fdb58f5ae8d6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/shebang-regex.git",
+ "revision" : "27a9a6f0f85c04b9c37a43cf7503fdb58f5ae8d6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::side-channel:1.0.4",
+ "purl" : "pkg:npm/side-channel@1.0.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Store information about any JS value in a side channel. Uses WeakMap if available.",
+ "homepage_url" : "https://github.com/ljharb/side-channel#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "hash" : {
+ "value" : "efce5c8fdc104ee751b25c58d4290011fa5ea2cf",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/side-channel.git",
+ "revision" : "5c3c3fe90858eff0dd5c24d1f6a8351f8810755e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/side-channel.git",
+ "revision" : "5c3c3fe90858eff0dd5c24d1f6a8351f8810755e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::signal-exit:3.0.7",
+ "purl" : "pkg:npm/signal-exit@3.0.7",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "when you want to fire an event no matter how a process exits.",
+ "homepage_url" : "https://github.com/tapjs/signal-exit",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "hash" : {
+ "value" : "a9a1767f8af84155114eaabd73f99273c8f59ad9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/tapjs/signal-exit.git",
+ "revision" : "03dd77a96caa309c6a02c59274d58c812a2dce45",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/tapjs/signal-exit.git",
+ "revision" : "03dd77a96caa309c6a02c59274d58c812a2dce45",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::slice-ansi:2.1.0",
+ "purl" : "pkg:npm/slice-ansi@2.1.0",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Slice a string with ANSI escape codes",
+ "homepage_url" : "https://github.com/chalk/slice-ansi#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
+ "hash" : {
+ "value" : "cacd7693461a637a5788d92a7dd4fba068e81636",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/slice-ansi.git",
+ "revision" : "bfb33a3eb13f2d3b8023f37ddb421eff3ea7a3ae",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/slice-ansi.git",
+ "revision" : "bfb33a3eb13f2d3b8023f37ddb421eff3ea7a3ae",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::source-map:0.6.1",
+ "purl" : "pkg:npm/source-map@0.6.1",
+ "authors" : [ "Nick Fitzgerald" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Generates and consumes source maps",
+ "homepage_url" : "https://github.com/mozilla/source-map",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "hash" : {
+ "value" : "74722af32e9614e9c287a8d0bbde48b5e2f1a263",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/mozilla/source-map.git",
+ "revision" : "ac518d2f21818146f3310557bd51c13d8cff2ba8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/mozilla/source-map.git",
+ "revision" : "ac518d2f21818146f3310557bd51c13d8cff2ba8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::spawn-wrap:2.0.0",
+ "purl" : "pkg:npm/spawn-wrap@2.0.0",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.",
+ "homepage_url" : "https://github.com/istanbuljs/spawn-wrap#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz",
+ "hash" : {
+ "value" : "103685b8b8f9b79771318827aa78650a610d457e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/istanbuljs/spawn-wrap.git",
+ "revision" : "c1c6cea28dc9d6760ae2c4eebeff8a60a80d7fd7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/spawn-wrap.git",
+ "revision" : "c1c6cea28dc9d6760ae2c4eebeff8a60a80d7fd7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::spdx-correct:3.1.1",
+ "purl" : "pkg:npm/spdx-correct@3.1.1",
+ "authors" : [ "Kyle E. Mitchell" ],
+ "declared_licenses" : [ "Apache-2.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "Apache-2.0"
+ },
+ "description" : "correct invalid SPDX expressions",
+ "homepage_url" : "https://github.com/jslicense/spdx-correct.js#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
+ "hash" : {
+ "value" : "dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jslicense/spdx-correct.js.git",
+ "revision" : "24954c75aba5ace68365345154ff21bcd3580302",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-correct.js.git",
+ "revision" : "24954c75aba5ace68365345154ff21bcd3580302",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::spdx-exceptions:2.3.0",
+ "purl" : "pkg:npm/spdx-exceptions@2.3.0",
+ "authors" : [ "The Linux Foundation" ],
+ "declared_licenses" : [ "CC-BY-3.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "CC-BY-3.0"
+ },
+ "description" : "list of SPDX standard license exceptions",
+ "homepage_url" : "https://github.com/kemitchell/spdx-exceptions.json#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+ "hash" : {
+ "value" : "3f28ce1a77a00372683eade4a433183527a2163d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/kemitchell/spdx-exceptions.json.git",
+ "revision" : "b1405b421074aae250f5cfefc1adff1c6085b293",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/kemitchell/spdx-exceptions.json.git",
+ "revision" : "b1405b421074aae250f5cfefc1adff1c6085b293",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::spdx-expression-parse:3.0.1",
+ "purl" : "pkg:npm/spdx-expression-parse@3.0.1",
+ "authors" : [ "Kyle E. Mitchell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "parse SPDX license expressions",
+ "homepage_url" : "https://github.com/jslicense/spdx-expression-parse.js#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "hash" : {
+ "value" : "cf70f50482eefdc98e3ce0a6833e4a53ceeba679",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jslicense/spdx-expression-parse.js.git",
+ "revision" : "d7daff468ce455f636838a8375d8699cf36be64d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-expression-parse.js.git",
+ "revision" : "d7daff468ce455f636838a8375d8699cf36be64d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::spdx-license-ids:3.0.12",
+ "purl" : "pkg:npm/spdx-license-ids@3.0.12",
+ "authors" : [ "Shinnosuke Watanabe" ],
+ "declared_licenses" : [ "CC0-1.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "CC0-1.0"
+ },
+ "description" : "A list of SPDX license identifiers",
+ "homepage_url" : "https://github.com/jslicense/spdx-license-ids#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz",
+ "hash" : {
+ "value" : "69077835abe2710b65f03969898b6637b505a779",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jslicense/spdx-license-ids.git",
+ "revision" : "d2623744e1e6afa1b393491dda5e8e5168de1aef",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-license-ids.git",
+ "revision" : "d2623744e1e6afa1b393491dda5e8e5168de1aef",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::sprintf-js:1.0.3",
+ "purl" : "pkg:npm/sprintf-js@1.0.3",
+ "authors" : [ "Alexandru Marasteanu" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "JavaScript sprintf implementation",
+ "homepage_url" : "https://github.com/alexei/sprintf.js#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "hash" : {
+ "value" : "04e6926f662895354f3dd015203633b857297e2c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/alexei/sprintf.js.git",
+ "revision" : "747b806c2dab5b64d5c9958c42884946a187c3b1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/alexei/sprintf.js.git",
+ "revision" : "747b806c2dab5b64d5c9958c42884946a187c3b1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::string-width:2.1.1",
+ "purl" : "pkg:npm/string-width@2.1.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the visual width of a string - the number of columns required to display it",
+ "homepage_url" : "https://github.com/sindresorhus/string-width#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "hash" : {
+ "value" : "ab93f27a8dc13d28cac815c462143a6d9012ae9e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/string-width.git",
+ "revision" : "74d8d552b465692790c41169b123409669d41079",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "74d8d552b465692790c41169b123409669d41079",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::string-width:3.1.0",
+ "purl" : "pkg:npm/string-width@3.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the visual width of a string - the number of columns required to display it",
+ "homepage_url" : "https://github.com/sindresorhus/string-width#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "hash" : {
+ "value" : "22767be21b62af1081574306f69ac51b62203961",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/string-width.git",
+ "revision" : "3b3da68dfea82e193f9d6deee77224cf8e5c3803",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "3b3da68dfea82e193f9d6deee77224cf8e5c3803",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::string-width:4.2.3",
+ "purl" : "pkg:npm/string-width@4.2.3",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Get the visual width of a string - the number of columns required to display it",
+ "homepage_url" : "https://github.com/sindresorhus/string-width#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "hash" : {
+ "value" : "269c7117d27b05ad2e536830a8ec895ef9c6d010",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/string-width.git",
+ "revision" : "e7a2755c834246c59a4cc5de9471bef2d531a6b1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "e7a2755c834246c59a4cc5de9471bef2d531a6b1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::string.prototype.trimend:1.0.6",
+ "purl" : "pkg:npm/string.prototype.trimend@1.0.6",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES2019 spec-compliant String.prototype.trimEnd shim.",
+ "homepage_url" : "https://github.com/es-shims/String.prototype.trimEnd#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
+ "hash" : {
+ "value" : "c4a27fa026d979d79c04f17397f250a462944533",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/String.prototype.trimEnd.git",
+ "revision" : "a4f90ea11058764f941e8a0e4b9dd1b519c421e6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/String.prototype.trimEnd.git",
+ "revision" : "a4f90ea11058764f941e8a0e4b9dd1b519c421e6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::string.prototype.trimstart:1.0.6",
+ "purl" : "pkg:npm/string.prototype.trimstart@1.0.6",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "ES2019 spec-compliant String.prototype.trimStart shim.",
+ "homepage_url" : "https://github.com/es-shims/String.prototype.trimStart#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
+ "hash" : {
+ "value" : "e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/es-shims/String.prototype.trimStart.git",
+ "revision" : "535a3a63a25c84c7ea4c9250f7f70aff1a0eddfe",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/String.prototype.trimStart.git",
+ "revision" : "535a3a63a25c84c7ea4c9250f7f70aff1a0eddfe",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::strip-ansi:4.0.0",
+ "purl" : "pkg:npm/strip-ansi@4.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Strip ANSI escape codes",
+ "homepage_url" : "https://github.com/chalk/strip-ansi#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "hash" : {
+ "value" : "a8479022eb1ac368a871389b635262c505ee368f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/strip-ansi.git",
+ "revision" : "c299056a42b31d7a479d6a89b41318b2a2462cc7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "c299056a42b31d7a479d6a89b41318b2a2462cc7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::strip-ansi:5.2.0",
+ "purl" : "pkg:npm/strip-ansi@5.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Strip ANSI escape codes from a string",
+ "homepage_url" : "https://github.com/chalk/strip-ansi#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "hash" : {
+ "value" : "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/strip-ansi.git",
+ "revision" : "b9c492921b72c48f93568565dbdc929cf63c20e1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "b9c492921b72c48f93568565dbdc929cf63c20e1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::strip-ansi:6.0.1",
+ "purl" : "pkg:npm/strip-ansi@6.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Strip ANSI escape codes from a string",
+ "homepage_url" : "https://github.com/chalk/strip-ansi#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "hash" : {
+ "value" : "9e26c63d30f53443e9489495b2105d37b67a85d9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/strip-ansi.git",
+ "revision" : "59533da99981f9d550de1ae0eb9d1a93c2383be3",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "59533da99981f9d550de1ae0eb9d1a93c2383be3",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::strip-bom:3.0.0",
+ "purl" : "pkg:npm/strip-bom@3.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Strip UTF-8 byte order mark (BOM) from a string",
+ "homepage_url" : "https://github.com/sindresorhus/strip-bom#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "hash" : {
+ "value" : "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "8258d09a069a5d5eb3d787c1d5d29737df1c8bba",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "8258d09a069a5d5eb3d787c1d5d29737df1c8bba",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::strip-bom:4.0.0",
+ "purl" : "pkg:npm/strip-bom@4.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Strip UTF-8 byte order mark (BOM) from a string",
+ "homepage_url" : "https://github.com/sindresorhus/strip-bom#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
+ "hash" : {
+ "value" : "9c3505c1db45bcedca3d9cf7a16f5c5aa3901878",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "9aef0f38ffefca91d3852c82cd6366e5d36d6dd1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "9aef0f38ffefca91d3852c82cd6366e5d36d6dd1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::strip-json-comments:2.0.1",
+ "purl" : "pkg:npm/strip-json-comments@2.0.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Strip comments from JSON. Lets you use comments in your JSON files!",
+ "homepage_url" : "https://github.com/sindresorhus/strip-json-comments#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
+ "hash" : {
+ "value" : "3c531942e908c2697c0ec344858c286c7ca0a60a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "1aef99eaa70d07981156e8aaa722e750c3b4eaf9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "1aef99eaa70d07981156e8aaa722e750c3b4eaf9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::strip-json-comments:3.1.1",
+ "purl" : "pkg:npm/strip-json-comments@3.1.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Strip comments from JSON. Lets you use comments in your JSON files!",
+ "homepage_url" : "https://github.com/sindresorhus/strip-json-comments#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "hash" : {
+ "value" : "31f1281b3832630434831c310c01cccda8cbe006",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "6355b5792682c7c7a2480e5cbe73fc7ad578e432",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "6355b5792682c7c7a2480e5cbe73fc7ad578e432",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::supports-color:5.5.0",
+ "purl" : "pkg:npm/supports-color@5.5.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Detect whether a terminal supports color",
+ "homepage_url" : "https://github.com/chalk/supports-color#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "hash" : {
+ "value" : "e2e69a44ac8772f78a1ec0b35b689df6530efc8f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/supports-color.git",
+ "revision" : "7759fc135b1be07cb7411178d7b1ac33d367fec8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "7759fc135b1be07cb7411178d7b1ac33d367fec8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::supports-color:6.0.0",
+ "purl" : "pkg:npm/supports-color@6.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Detect whether a terminal supports color",
+ "homepage_url" : "https://github.com/chalk/supports-color#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz",
+ "hash" : {
+ "value" : "76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/supports-color.git",
+ "revision" : "bfbe6692d549b423230292946756f3fdd79a808e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "bfbe6692d549b423230292946756f3fdd79a808e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::supports-color:7.2.0",
+ "purl" : "pkg:npm/supports-color@7.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Detect whether a terminal supports color",
+ "homepage_url" : "https://github.com/chalk/supports-color#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "hash" : {
+ "value" : "1b7dcdcb32b8138801b3e478ba6a51caa89648da",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/supports-color.git",
+ "revision" : "c5edf46896d1fc1826cb1183a60d61eecb65d749",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "c5edf46896d1fc1826cb1183a60d61eecb65d749",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::supports-preserve-symlinks-flag:1.0.0",
+ "purl" : "pkg:npm/supports-preserve-symlinks-flag@1.0.0",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Determine if the current node version supports the `--preserve-symlinks` flag.",
+ "homepage_url" : "https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "hash" : {
+ "value" : "6eda4bd344a3c94aea376d4cc31bc77311039e09",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git",
+ "revision" : "1f7cac19c0c298cf40b3f2f3c735477ad579ac61",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git",
+ "revision" : "1f7cac19c0c298cf40b3f2f3c735477ad579ac61",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::table:5.4.6",
+ "purl" : "pkg:npm/table@5.4.6",
+ "authors" : [ "Gajus Kuizinas" ],
+ "declared_licenses" : [ "BSD-3-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-3-Clause"
+ },
+ "description" : "Formats data into a string table.",
+ "homepage_url" : "https://github.com/gajus/table#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
+ "hash" : {
+ "value" : "1292d19500ce3f86053b05f0e8e7e4a3bb21079e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/gajus/table.git",
+ "revision" : "db1ad68d74b8e859448deebaeb823da39e40fa98",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/gajus/table.git",
+ "revision" : "db1ad68d74b8e859448deebaeb823da39e40fa98",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::test-exclude:6.0.0",
+ "purl" : "pkg:npm/test-exclude@6.0.0",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "test for inclusion or exclusion of paths using globs",
+ "homepage_url" : "https://istanbul.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
+ "hash" : {
+ "value" : "04a8698661d805ea6fa293b6cb9e63ac044ef15e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/istanbuljs/test-exclude.git",
+ "revision" : "b788e7bd7cfdec8b471ad7b79d0d4a44975e2e99",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/test-exclude.git",
+ "revision" : "b788e7bd7cfdec8b471ad7b79d0d4a44975e2e99",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::text-table:0.2.0",
+ "purl" : "pkg:npm/text-table@0.2.0",
+ "authors" : [ "James Halliday" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "borderless text tables with alignment",
+ "homepage_url" : "https://github.com/substack/text-table",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "hash" : {
+ "value" : "7f5ee823ae805207c00af2df4a84ec3fcfa570b4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/substack/text-table.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/text-table.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::through:2.3.8",
+ "purl" : "pkg:npm/through@2.3.8",
+ "authors" : [ "Dominic Tarr" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "simplified stream construction",
+ "homepage_url" : "https://github.com/dominictarr/through",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+ "hash" : {
+ "value" : "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/dominictarr/through.git",
+ "revision" : "2c5a6f9a0cc54da759b6e10964f2081c358e49dc",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/dominictarr/through.git",
+ "revision" : "2c5a6f9a0cc54da759b6e10964f2081c358e49dc",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::tmp:0.0.33",
+ "purl" : "pkg:npm/tmp@0.0.33",
+ "authors" : [ "KARASZI István" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Temporary file and directory creator",
+ "homepage_url" : "http://github.com/raszi/node-tmp",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "hash" : {
+ "value" : "6d34335889768d21b2bcda0aa277ced3b1bfadf9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/raszi/node-tmp.git",
+ "revision" : "0900dd5b112ac7a482e4bdf3cb002bfe1b3acf77",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/raszi/node-tmp.git",
+ "revision" : "0900dd5b112ac7a482e4bdf3cb002bfe1b3acf77",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::to-fast-properties:2.0.0",
+ "purl" : "pkg:npm/to-fast-properties@2.0.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Force V8 to use fast properties for an object",
+ "homepage_url" : "https://github.com/sindresorhus/to-fast-properties#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "hash" : {
+ "value" : "dc5e698cbd079265bc73e0377681a4e4e83f616e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/to-fast-properties.git",
+ "revision" : "5b2ddf09843cacf5e9c2f9403155ef5a742edd83",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/to-fast-properties.git",
+ "revision" : "5b2ddf09843cacf5e9c2f9403155ef5a742edd83",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::to-regex-range:5.0.1",
+ "purl" : "pkg:npm/to-regex-range@5.0.1",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.",
+ "homepage_url" : "https://github.com/micromatch/to-regex-range",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "hash" : {
+ "value" : "1648c44aae7c8d988a326018ed72f5b4dd0392e4",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/micromatch/to-regex-range.git",
+ "revision" : "c05ef9ec07e7703d146467934098ecbde9d0bd95",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/to-regex-range.git",
+ "revision" : "c05ef9ec07e7703d146467934098ecbde9d0bd95",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::tslib:1.14.1",
+ "purl" : "pkg:npm/tslib@1.14.1",
+ "authors" : [ "Microsoft Corp." ],
+ "declared_licenses" : [ "0BSD" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "0BSD"
+ },
+ "description" : "Runtime library for TypeScript helper functions",
+ "homepage_url" : "https://www.typescriptlang.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "hash" : {
+ "value" : "cf2d38bdc34a134bcaf1091c41f6619e2f672d00",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/Microsoft/tslib.git",
+ "revision" : "7d33f3607d635dbaaaba006a4648346a81422f3a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/Microsoft/tslib.git",
+ "revision" : "7d33f3607d635dbaaaba006a4648346a81422f3a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::type-check:0.3.2",
+ "purl" : "pkg:npm/type-check@0.3.2",
+ "authors" : [ "George Zahariev" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.",
+ "homepage_url" : "https://github.com/gkz/type-check",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "hash" : {
+ "value" : "5884cab512cf1d355e3fb784f30804b2b520db72",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/gkz/type-check.git",
+ "revision" : "0ab04e7a660485d0cc3aa87e95f2f9a6464cf8e6",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/type-check.git",
+ "revision" : "0ab04e7a660485d0cc3aa87e95f2f9a6464cf8e6",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::type-fest:0.8.1",
+ "purl" : "pkg:npm/type-fest@0.8.1",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "(MIT OR CC0-1.0)" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "CC0-1.0 OR MIT"
+ },
+ "description" : "A collection of essential TypeScript types",
+ "homepage_url" : "https://github.com/sindresorhus/type-fest#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
+ "hash" : {
+ "value" : "09e249ebde851d3b1e48d27c105444667f17b83d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/type-fest.git",
+ "revision" : "92c02842eaa4f56b8dec183d10c85bcb0d447bd8",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/type-fest.git",
+ "revision" : "92c02842eaa4f56b8dec183d10c85bcb0d447bd8",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::type-fest:0.21.3",
+ "purl" : "pkg:npm/type-fest@0.21.3",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "(MIT OR CC0-1.0)" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "CC0-1.0 OR MIT"
+ },
+ "description" : "A collection of essential TypeScript types",
+ "homepage_url" : "https://github.com/sindresorhus/type-fest#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "hash" : {
+ "value" : "d260a24b0198436e133fa26a524a6d65fa3b2e37",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/sindresorhus/type-fest.git",
+ "revision" : "b40cb9c8e6dbea84bc99ec9e37bdd636c5cc6565",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/type-fest.git",
+ "revision" : "b40cb9c8e6dbea84bc99ec9e37bdd636c5cc6565",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::typed-array-length:1.0.4",
+ "purl" : "pkg:npm/typed-array-length@1.0.4",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Robustly get the length of a Typed Array",
+ "homepage_url" : "https://github.com/inspect-js/typed-array-length#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz",
+ "hash" : {
+ "value" : "89d83785e5c4098bec72e08b319651f0eac9c1bb",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/typed-array-length.git",
+ "revision" : "c30864c777e9d2565c5a459904f9a40976586bba",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/typed-array-length.git",
+ "revision" : "c30864c777e9d2565c5a459904f9a40976586bba",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::typedarray-to-buffer:3.1.5",
+ "purl" : "pkg:npm/typedarray-to-buffer@3.1.5",
+ "authors" : [ "Feross Aboukhadijeh" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Convert a typed array to a Buffer without a copy",
+ "homepage_url" : "http://feross.org",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
+ "hash" : {
+ "value" : "a97ee7a9ff42691b9f783ff1bc5112fe3fca9080",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/feross/typedarray-to-buffer.git",
+ "revision" : "328a952e480a143bdc3fc98a2133490e28e2b3a2",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/typedarray-to-buffer.git",
+ "revision" : "328a952e480a143bdc3fc98a2133490e28e2b3a2",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::unbox-primitive:1.0.2",
+ "purl" : "pkg:npm/unbox-primitive@1.0.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Unbox a boxed JS primitive value.",
+ "homepage_url" : "https://github.com/ljharb/unbox-primitive#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
+ "hash" : {
+ "value" : "29032021057d5e6cdbd08c5129c226dff8ed6f9e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ljharb/unbox-primitive.git",
+ "revision" : "c93a80dea8d62105b3bd10e4f33440943737f5d9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/unbox-primitive.git",
+ "revision" : "c93a80dea8d62105b3bd10e4f33440943737f5d9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::update-browserslist-db:1.0.10",
+ "purl" : "pkg:npm/update-browserslist-db@1.0.10",
+ "authors" : [ "Andrey Sitnik" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config",
+ "homepage_url" : "https://github.com/browserslist/update-db#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
+ "hash" : {
+ "value" : "0f54b876545726f17d00cd9a2561e6dade943ff3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/browserslist/update-db.git",
+ "revision" : "597c6d12268e9c55368c754269872786662fe4b0",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/update-db.git",
+ "revision" : "597c6d12268e9c55368c754269872786662fe4b0",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::uri-js:4.4.1",
+ "purl" : "pkg:npm/uri-js@4.4.1",
+ "authors" : [ "Gary Court" ],
+ "declared_licenses" : [ "BSD-2-Clause" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "BSD-2-Clause"
+ },
+ "description" : "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.",
+ "homepage_url" : "https://github.com/garycourt/uri-js",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "hash" : {
+ "value" : "9b1a52595225859e55f669d928f88c6c57f2a77e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/garycourt/uri-js.git",
+ "revision" : "9a328873a21262651c3790505b24c9e318a0e12d",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/garycourt/uri-js.git",
+ "revision" : "9a328873a21262651c3790505b24c9e318a0e12d",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::uuid:3.4.0",
+ "purl" : "pkg:npm/uuid@3.4.0",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "RFC4122 (v1, v4, and v5) UUIDs",
+ "homepage_url" : "https://github.com/uuidjs/uuid#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "hash" : {
+ "value" : "b23e4358afa8a202fe7a100af1f5f883f02007ee",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/uuidjs/uuid.git",
+ "revision" : "3df73a98f07c0a38a94bcaf1ecde0e384dc3b126",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/uuidjs/uuid.git",
+ "revision" : "3df73a98f07c0a38a94bcaf1ecde0e384dc3b126",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::uuid:8.3.2",
+ "purl" : "pkg:npm/uuid@8.3.2",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "RFC4122 (v1, v4, and v5) UUIDs",
+ "homepage_url" : "https://github.com/uuidjs/uuid#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
+ "hash" : {
+ "value" : "80d5b5ced271bb9af6c445f21a1a04c606cefbe2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/uuidjs/uuid.git",
+ "revision" : "ed3240154759b748f6a3b7d545f3b10759ee4ba7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/uuidjs/uuid.git",
+ "revision" : "ed3240154759b748f6a3b7d545f3b10759ee4ba7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::v8-compile-cache:2.3.0",
+ "purl" : "pkg:npm/v8-compile-cache@2.3.0",
+ "authors" : [ "Andres Suarez" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Require hook for automatic V8 compile cache persistence",
+ "homepage_url" : "https://github.com/zertosh/v8-compile-cache#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz",
+ "hash" : {
+ "value" : "2de19618c66dc247dcfb6f99338035d8245a2cee",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/zertosh/v8-compile-cache.git",
+ "revision" : "454af0b0c2f35e6afd87aa1878e1749a76eca122",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/zertosh/v8-compile-cache.git",
+ "revision" : "454af0b0c2f35e6afd87aa1878e1749a76eca122",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::validate-npm-package-license:3.0.4",
+ "purl" : "pkg:npm/validate-npm-package-license@3.0.4",
+ "authors" : [ "Kyle E. Mitchell" ],
+ "declared_licenses" : [ "Apache-2.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "Apache-2.0"
+ },
+ "description" : "Give me a string and I'll tell you if it's a valid npm package license string",
+ "homepage_url" : "https://github.com/kemitchell/validate-npm-package-license.js#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "hash" : {
+ "value" : "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/kemitchell/validate-npm-package-license.js.git",
+ "revision" : "6bbe26201fa7e5c7281516b04b9f3f4cc6db145c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/kemitchell/validate-npm-package-license.js.git",
+ "revision" : "6bbe26201fa7e5c7281516b04b9f3f4cc6db145c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::which:1.3.1",
+ "purl" : "pkg:npm/which@1.3.1",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Like which(1) unix command. Find the first instance of an executable in the PATH.",
+ "homepage_url" : "https://github.com/isaacs/node-which#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "hash" : {
+ "value" : "a45043d54f5805316da8d62f9f50918d3da70b0a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/node-which.git",
+ "revision" : "563406d75b97f97a33e506b9cc7a82b268332b6f",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-which.git",
+ "revision" : "563406d75b97f97a33e506b9cc7a82b268332b6f",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::which:2.0.2",
+ "purl" : "pkg:npm/which@2.0.2",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Like which(1) unix command. Find the first instance of an executable in the PATH.",
+ "homepage_url" : "https://github.com/isaacs/node-which#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "hash" : {
+ "value" : "7c6a8dd0a636a0327e10b59c9286eee93f3f51b1",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/isaacs/node-which.git",
+ "revision" : "6a822d836de79f92fb3170f685a6e283fbfeff87",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-which.git",
+ "revision" : "6a822d836de79f92fb3170f685a6e283fbfeff87",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::which-boxed-primitive:1.0.2",
+ "purl" : "pkg:npm/which-boxed-primitive@1.0.2",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Which kind of boxed JS primitive is this?",
+ "homepage_url" : "https://github.com/inspect-js/which-boxed-primitive#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
+ "hash" : {
+ "value" : "13757bc89b209b049fe5d86430e21cf40a89a8e6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/inspect-js/which-boxed-primitive.git",
+ "revision" : "e2572398ae2be0d87527bc1726c1393a982a2f37",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/which-boxed-primitive.git",
+ "revision" : "e2572398ae2be0d87527bc1726c1393a982a2f37",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::which-module:2.0.0",
+ "purl" : "pkg:npm/which-module@2.0.0",
+ "authors" : [ "nexdrew" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Find the module object for something that was require()d",
+ "homepage_url" : "https://github.com/nexdrew/which-module#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+ "hash" : {
+ "value" : "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/nexdrew/which-module.git",
+ "revision" : "7f78f42d0761133263c3947a3b24dde324a467ce",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/nexdrew/which-module.git",
+ "revision" : "7f78f42d0761133263c3947a3b24dde324a467ce",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::which-typed-array:1.1.9",
+ "purl" : "pkg:npm/which-typed-array@1.1.9",
+ "authors" : [ "Jordan Harband" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Which kind of Typed Array is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.",
+ "homepage_url" : "https://github.com/inspect-js/which-typed-array#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz",
+ "hash" : {
+ "value" : "307cf898025848cf995e795e8423c7f337efbde6",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/inspect-js/which-typed-array.git",
+ "revision" : "c7f7c5510fce82dbf8deb77d091b22d0f20a4695",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/which-typed-array.git",
+ "revision" : "c7f7c5510fce82dbf8deb77d091b22d0f20a4695",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::wide-align:1.1.3",
+ "purl" : "pkg:npm/wide-align@1.1.3",
+ "authors" : [ "Rebecca Turner" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "A wide-character aware text alignment function for use on the console or with fixed width fonts.",
+ "homepage_url" : "https://github.com/iarna/wide-align#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
+ "hash" : {
+ "value" : "ae074e6bdc0c14a431e804e624549c633b000457",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/iarna/wide-align.git",
+ "revision" : "6b766c9874a1e5157eda2ac75b90ccc01b313620",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/iarna/wide-align.git",
+ "revision" : "6b766c9874a1e5157eda2ac75b90ccc01b313620",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::word-wrap:1.2.3",
+ "purl" : "pkg:npm/word-wrap@1.2.3",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Wrap words to a specified length.",
+ "homepage_url" : "https://github.com/jonschlinkert/word-wrap",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+ "hash" : {
+ "value" : "610636f6b1f703891bd34771ccb17fb93b47079c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/word-wrap.git",
+ "revision" : "cdab7f263a0af97df0626043d908aa087d3d3089",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/word-wrap.git",
+ "revision" : "cdab7f263a0af97df0626043d908aa087d3d3089",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::wrap-ansi:5.1.0",
+ "purl" : "pkg:npm/wrap-ansi@5.1.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Wordwrap a string with ANSI escape codes",
+ "homepage_url" : "https://github.com/chalk/wrap-ansi#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
+ "hash" : {
+ "value" : "1fd1f67235d5b6d0fee781056001bfb694c03b09",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/wrap-ansi.git",
+ "revision" : "2a1a55446d67c55a29e84173e99eb6abc91c937c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/wrap-ansi.git",
+ "revision" : "2a1a55446d67c55a29e84173e99eb6abc91c937c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::wrap-ansi:6.2.0",
+ "purl" : "pkg:npm/wrap-ansi@6.2.0",
+ "authors" : [ "Sindre Sorhus" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Wordwrap a string with ANSI escape codes",
+ "homepage_url" : "https://github.com/chalk/wrap-ansi#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "hash" : {
+ "value" : "e9393ba07102e6c91a3b221478f0257cd2856e53",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/chalk/wrap-ansi.git",
+ "revision" : "a28eb7d6cdbf91bccb56d04d095ca9463c15d3db",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/wrap-ansi.git",
+ "revision" : "a28eb7d6cdbf91bccb56d04d095ca9463c15d3db",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::wrappy:1.0.2",
+ "purl" : "pkg:npm/wrappy@1.0.2",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Callback wrapping utility",
+ "homepage_url" : "https://github.com/npm/wrappy",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "hash" : {
+ "value" : "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/npm/wrappy.git",
+ "revision" : "71d91b6dc5bdeac37e218c2cf03f9ab55b60d214",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/wrappy.git",
+ "revision" : "71d91b6dc5bdeac37e218c2cf03f9ab55b60d214",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::write:1.0.3",
+ "purl" : "pkg:npm/write@1.0.3",
+ "authors" : [ "Jon Schlinkert" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Thin wrapper around node's native fs methods.",
+ "homepage_url" : "https://github.com/jonschlinkert/write",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/write/-/write-1.0.3.tgz",
+ "hash" : {
+ "value" : "0800e14523b923a387e415123c865616aae0f5c3",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jonschlinkert/write.git",
+ "revision" : "6a48d4e363510c52653fabc25f620a484d6058bf",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/write.git",
+ "revision" : "6a48d4e363510c52653fabc25f620a484d6058bf",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::write-file-atomic:3.0.3",
+ "purl" : "pkg:npm/write-file-atomic@3.0.3",
+ "authors" : [ "Rebecca Turner" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Write files in an atomic fashion w/configurable ownership",
+ "homepage_url" : "https://github.com/npm/write-file-atomic",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
+ "hash" : {
+ "value" : "56bd5c5a5c70481cd19c571bd39ab965a5de56e8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git://github.com/npm/write-file-atomic.git",
+ "revision" : "eb8dff15f83f16be1e0b89be54fa80200356614a",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/write-file-atomic.git",
+ "revision" : "eb8dff15f83f16be1e0b89be54fa80200356614a",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::y18n:4.0.3",
+ "purl" : "pkg:npm/y18n@4.0.3",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "the bare-bones internationalization library used by yargs",
+ "homepage_url" : "https://github.com/yargs/y18n",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+ "hash" : {
+ "value" : "b5f259c82cd6e336921efd7bfd8bf560de9eeedf",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/yargs/y18n.git",
+ "revision" : "0aa97c508ea31efadd2a27f98fed6873eefc963e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/y18n.git",
+ "revision" : "0aa97c508ea31efadd2a27f98fed6873eefc963e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::yallist:3.1.1",
+ "purl" : "pkg:npm/yallist@3.1.1",
+ "authors" : [ "Isaac Z. Schlueter" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Yet Another Linked List",
+ "homepage_url" : "https://github.com/isaacs/yallist#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "hash" : {
+ "value" : "dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/isaacs/yallist.git",
+ "revision" : "ab350a79eb94c80f7146662748a12b6fcd63729c",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/yallist.git",
+ "revision" : "ab350a79eb94c80f7146662748a12b6fcd63729c",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::yargs:13.3.0",
+ "purl" : "pkg:npm/yargs@13.3.0",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "yargs the modern, pirate-themed, successor to optimist.",
+ "homepage_url" : "https://yargs.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz",
+ "hash" : {
+ "value" : "4c657a55e07e5f2cf947f8a366567c04a0dedc83",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/yargs/yargs.git",
+ "revision" : "59739e6865d5736e32a250872bfe809e4bc1f1e9",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/yargs.git",
+ "revision" : "59739e6865d5736e32a250872bfe809e4bc1f1e9",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::yargs:15.4.1",
+ "purl" : "pkg:npm/yargs@15.4.1",
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "yargs the modern, pirate-themed, successor to optimist.",
+ "homepage_url" : "https://yargs.js.org/",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
+ "hash" : {
+ "value" : "0d87a16de01aee9d8bec2bfbf74f67851730f4f8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/yargs/yargs.git",
+ "revision" : "0b519a4672c8493d72838292ed0d60b63b88f33e",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/yargs.git",
+ "revision" : "0b519a4672c8493d72838292ed0d60b63b88f33e",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::yargs-parser:13.1.1",
+ "purl" : "pkg:npm/yargs-parser@13.1.1",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "the mighty option parser used by yargs",
+ "homepage_url" : "https://github.com/yargs/yargs-parser#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz",
+ "hash" : {
+ "value" : "d26058532aa06d365fe091f6a1fc06b2f7e5eca0",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "",
+ "url" : "git+ssh://git@github.com/yargs/yargs-parser.git",
+ "revision" : "7e01a2c8d1ba75d9d5472e5839e2852bdf2af3db",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/yargs-parser.git",
+ "revision" : "7e01a2c8d1ba75d9d5472e5839e2852bdf2af3db",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::yargs-parser:18.1.3",
+ "purl" : "pkg:npm/yargs-parser@18.1.3",
+ "authors" : [ "Ben Coe" ],
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "the mighty option parser used by yargs",
+ "homepage_url" : "https://github.com/yargs/yargs-parser#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
+ "hash" : {
+ "value" : "be68c4975c6b2abf469236b0c870362fab09a7b0",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/yargs/yargs-parser.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/yargs-parser.git",
+ "revision" : "",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM::yargs-unparser:1.6.0",
+ "purl" : "pkg:npm/yargs-unparser@1.6.0",
+ "authors" : [ "André Cruz" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Converts back a yargs argv object to its original array form",
+ "homepage_url" : "https://github.com/yargs/yargs-unparser",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz",
+ "hash" : {
+ "value" : "ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+ssh://git@github.com/yargs/yargs-unparser.git",
+ "revision" : "707b456935e881fe63a670d895ac15950cf1bbb5",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/yargs-unparser.git",
+ "revision" : "707b456935e881fe63a670d895ac15950cf1bbb5",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@ampproject:remapping:2.2.0",
+ "purl" : "pkg:npm/%40ampproject/remapping@2.2.0",
+ "authors" : [ "Justin Ridgewell" ],
+ "declared_licenses" : [ "Apache-2.0" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "Apache-2.0"
+ },
+ "description" : "Remap sequential sourcemaps through transformations to point at the original source code",
+ "homepage_url" : "https://github.com/ampproject/remapping#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
+ "hash" : {
+ "value" : "56c133824780de3174aed5ab6834f3026790154d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/ampproject/remapping.git",
+ "revision" : "ee9a0b022cb8f739ae36bd39a2ca4bfdf1d859c1",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/ampproject/remapping.git",
+ "revision" : "ee9a0b022cb8f739ae36bd39a2ca4bfdf1d859c1",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@babel:code-frame:7.18.6",
+ "purl" : "pkg:npm/%40babel/code-frame@7.18.6",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Generate errors that contain a code frame that point to source locations.",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-code-frame",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
+ "hash" : {
+ "value" : "3b25d38c89600baa2dcc219edfa88a74eb2c427a",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-code-frame"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-code-frame"
+ }
+ }, {
+ "id" : "NPM:@babel:compat-data:7.20.14",
+ "purl" : "pkg:npm/%40babel/compat-data@7.20.14",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "",
+ "homepage_url" : "",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz",
+ "hash" : {
+ "value" : "4106fc8b755f3e3ee0a0a7c27dde5de1d2b2baf8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-compat-data"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-compat-data"
+ }
+ }, {
+ "id" : "NPM:@babel:core:7.20.12",
+ "purl" : "pkg:npm/%40babel/core@7.20.12",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Babel compiler core.",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-core",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz",
+ "hash" : {
+ "value" : "7930db57443c6714ad216953d1356dac0eb8496d",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-core"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-core"
+ }
+ }, {
+ "id" : "NPM:@babel:generator:7.20.14",
+ "purl" : "pkg:npm/%40babel/generator@7.20.14",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Turns an AST into code.",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-generator",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz",
+ "hash" : {
+ "value" : "9fa772c9f86a46c6ac9b321039400712b96f64ce",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-generator"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-generator"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-compilation-targets:7.20.7",
+ "purl" : "pkg:npm/%40babel/helper-compilation-targets@7.20.7",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Helper functions on Babel compilation targets",
+ "homepage_url" : "",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz",
+ "hash" : {
+ "value" : "a6cd33e93629f5eb473b021aac05df62c4cd09bb",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-compilation-targets"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-compilation-targets"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-environment-visitor:7.18.9",
+ "purl" : "pkg:npm/%40babel/helper-environment-visitor@7.18.9",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Helper visitor to only visit nodes in the current 'this' context",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-environment-visitor",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
+ "hash" : {
+ "value" : "0c0cee9b35d2ca190478756865bb3528422f51be",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-environment-visitor"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-environment-visitor"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-function-name:7.19.0",
+ "purl" : "pkg:npm/%40babel/helper-function-name@7.19.0",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Helper function to change the property 'name' of every function",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-function-name",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
+ "hash" : {
+ "value" : "941574ed5390682e872e52d3f38ce9d1bef4648c",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-function-name"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-function-name"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-hoist-variables:7.18.6",
+ "purl" : "pkg:npm/%40babel/helper-hoist-variables@7.18.6",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Helper function to hoist variables",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-hoist-variables",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
+ "hash" : {
+ "value" : "d4d2c8fb4baeaa5c68b99cc8245c56554f926678",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-hoist-variables"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-hoist-variables"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-module-imports:7.18.6",
+ "purl" : "pkg:npm/%40babel/helper-module-imports@7.18.6",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Babel helper functions for inserting module loads",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-module-imports",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
+ "hash" : {
+ "value" : "1e3ebdbbd08aad1437b428c50204db13c5a3ca6e",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-module-imports"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-module-imports"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-module-transforms:7.20.11",
+ "purl" : "pkg:npm/%40babel/helper-module-transforms@7.20.11",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Babel helper functions for implementing ES6 module transformations",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-module-transforms",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz",
+ "hash" : {
+ "value" : "df4c7af713c557938c50ea3ad0117a7944b2f1b0",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-module-transforms"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-module-transforms"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-simple-access:7.20.2",
+ "purl" : "pkg:npm/%40babel/helper-simple-access@7.20.2",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Babel helper for ensuring that access to a given value is performed through simple accesses",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-simple-access",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz",
+ "hash" : {
+ "value" : "0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-simple-access"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-simple-access"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-split-export-declaration:7.18.6",
+ "purl" : "pkg:npm/%40babel/helper-split-export-declaration@7.18.6",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-split-export-declaration",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
+ "hash" : {
+ "value" : "7367949bc75b20c6d5a5d4a97bba2824ae8ef075",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-split-export-declaration"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-split-export-declaration"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-string-parser:7.19.4",
+ "purl" : "pkg:npm/%40babel/helper-string-parser@7.19.4",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A utility package to parse strings",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helper-string-parser",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
+ "hash" : {
+ "value" : "38d3acb654b4701a9b77fb0615a96f775c3a9e63",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-string-parser"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-string-parser"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-validator-identifier:7.19.1",
+ "purl" : "pkg:npm/%40babel/helper-validator-identifier@7.19.1",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Validate identifier/keywords name",
+ "homepage_url" : "",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
+ "hash" : {
+ "value" : "7eea834cf32901ffdc1a7ee555e2f9c27e249ca2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-validator-identifier"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-validator-identifier"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-validator-option:7.18.6",
+ "purl" : "pkg:npm/%40babel/helper-validator-option@7.18.6",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Validate plugin/preset options",
+ "homepage_url" : "",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz",
+ "hash" : {
+ "value" : "bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-validator-option"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-validator-option"
+ }
+ }, {
+ "id" : "NPM:@babel:helpers:7.20.13",
+ "purl" : "pkg:npm/%40babel/helpers@7.20.13",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Collection of helper functions used by Babel transforms.",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-helpers",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz",
+ "hash" : {
+ "value" : "e3cb731fb70dc5337134cadc24cbbad31cc87ad2",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helpers"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helpers"
+ }
+ }, {
+ "id" : "NPM:@babel:highlight:7.18.6",
+ "purl" : "pkg:npm/%40babel/highlight@7.18.6",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Syntax highlight JavaScript strings for output in terminals.",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-highlight",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
+ "hash" : {
+ "value" : "81158601e93e2563795adcbfbdf5d64be3f2ecdf",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-highlight"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-highlight"
+ }
+ }, {
+ "id" : "NPM:@babel:parser:7.20.13",
+ "purl" : "pkg:npm/%40babel/parser@7.20.13",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "A JavaScript parser",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-parser",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/parser/-/parser-7.20.13.tgz",
+ "hash" : {
+ "value" : "ddf1eb5a813588d2fb1692b70c6fce75b945c088",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-parser"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-parser"
+ }
+ }, {
+ "id" : "NPM:@babel:template:7.20.7",
+ "purl" : "pkg:npm/%40babel/template@7.20.7",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Generate an AST from a string template.",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-template",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
+ "hash" : {
+ "value" : "a15090c2839a83b02aa996c0b4994005841fd5a8",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-template"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-template"
+ }
+ }, {
+ "id" : "NPM:@babel:traverse:7.20.13",
+ "purl" : "pkg:npm/%40babel/traverse@7.20.13",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-traverse",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz",
+ "hash" : {
+ "value" : "817c1ba13d11accca89478bd5481b2d168d07473",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-traverse"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-traverse"
+ }
+ }, {
+ "id" : "NPM:@babel:types:7.20.7",
+ "purl" : "pkg:npm/%40babel/types@7.20.7",
+ "authors" : [ "The Babel Team" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Babel Types is a Lodash-esque utility library for AST nodes",
+ "homepage_url" : "https://babel.dev/docs/en/next/babel-types",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz",
+ "hash" : {
+ "value" : "54ec75e252318423fc07fb644dc6a58a64c09b7f",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-types"
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-types"
+ }
+ }, {
+ "id" : "NPM:@istanbuljs:load-nyc-config:1.1.0",
+ "purl" : "pkg:npm/%40istanbuljs/load-nyc-config@1.1.0",
+ "declared_licenses" : [ "ISC" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "ISC"
+ },
+ "description" : "Utility function to load nyc configuration",
+ "homepage_url" : "https://github.com/istanbuljs/load-nyc-config#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
+ "hash" : {
+ "value" : "fd3db1d59ecf7cf121e80650bb86712f9b55eced",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/istanbuljs/load-nyc-config.git",
+ "revision" : "2033a007672d90669c48c79e6a2d63a3cd0851a7",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/load-nyc-config.git",
+ "revision" : "2033a007672d90669c48c79e6a2d63a3cd0851a7",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@istanbuljs:schema:0.1.3",
+ "purl" : "pkg:npm/%40istanbuljs/schema@0.1.3",
+ "authors" : [ "Corey Farrell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Schemas describing various structures used by nyc and istanbuljs",
+ "homepage_url" : "https://github.com/istanbuljs/schema#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
+ "hash" : {
+ "value" : "e45e384e4b8ec16bce2fd903af78450f6bf7ec98",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/istanbuljs/schema.git",
+ "revision" : "d7da65adc197d15e06afb3761f560507ae048495",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/schema.git",
+ "revision" : "d7da65adc197d15e06afb3761f560507ae048495",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@jridgewell:gen-mapping:0.1.1",
+ "purl" : "pkg:npm/%40jridgewell/gen-mapping@0.1.1",
+ "authors" : [ "Justin Ridgewell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Generate source maps",
+ "homepage_url" : "https://github.com/jridgewell/gen-mapping#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
+ "hash" : {
+ "value" : "e5d2e450306a9491e3bd77e323e38d7aff315996",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "2464c6cbd4b98bbbd6d97bbf1889edd1a647adcc",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "2464c6cbd4b98bbbd6d97bbf1889edd1a647adcc",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@jridgewell:gen-mapping:0.3.2",
+ "purl" : "pkg:npm/%40jridgewell/gen-mapping@0.3.2",
+ "authors" : [ "Justin Ridgewell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Generate source maps",
+ "homepage_url" : "https://github.com/jridgewell/gen-mapping#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
+ "hash" : {
+ "value" : "c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "a44a71dd0aa2c4eac4a8577f3e150dbc3aafdb80",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "a44a71dd0aa2c4eac4a8577f3e150dbc3aafdb80",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@jridgewell:resolve-uri:3.1.0",
+ "purl" : "pkg:npm/%40jridgewell/resolve-uri@3.1.0",
+ "authors" : [ "Justin Ridgewell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Resolve a URI relative to an optional base URI",
+ "homepage_url" : "https://github.com/jridgewell/resolve-uri#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
+ "hash" : {
+ "value" : "2203b118c157721addfe69d47b70465463066d78",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jridgewell/resolve-uri.git",
+ "revision" : "7cc23209430909a54f44b740e07cb27573535c95",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/resolve-uri.git",
+ "revision" : "7cc23209430909a54f44b740e07cb27573535c95",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@jridgewell:set-array:1.1.2",
+ "purl" : "pkg:npm/%40jridgewell/set-array@1.1.2",
+ "authors" : [ "Justin Ridgewell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Like a Set, but provides the index of the `key` in the backing array",
+ "homepage_url" : "https://github.com/jridgewell/set-array#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
+ "hash" : {
+ "value" : "7c6cf998d6d20b914c0a55a91ae928ff25965e72",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jridgewell/set-array.git",
+ "revision" : "f1d9855dd0d7e34bcc02307249783589ed715661",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/set-array.git",
+ "revision" : "f1d9855dd0d7e34bcc02307249783589ed715661",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@jridgewell:sourcemap-codec:1.4.14",
+ "purl" : "pkg:npm/%40jridgewell/sourcemap-codec@1.4.14",
+ "authors" : [ "Rich Harris" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Encode/decode sourcemap mappings",
+ "homepage_url" : "https://github.com/jridgewell/sourcemap-codec#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
+ "hash" : {
+ "value" : "add4c98d341472a289190b424efbdb096991bb24",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jridgewell/sourcemap-codec.git",
+ "revision" : "802e17965c9b5694b338412618a1b32bd07af166",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/sourcemap-codec.git",
+ "revision" : "802e17965c9b5694b338412618a1b32bd07af166",
+ "path" : ""
+ }
+ }, {
+ "id" : "NPM:@jridgewell:trace-mapping:0.3.17",
+ "purl" : "pkg:npm/%40jridgewell/trace-mapping@0.3.17",
+ "authors" : [ "Justin Ridgewell" ],
+ "declared_licenses" : [ "MIT" ],
+ "declared_licenses_processed" : {
+ "spdx_expression" : "MIT"
+ },
+ "description" : "Trace the original position through a source map",
+ "homepage_url" : "https://github.com/jridgewell/trace-mapping#readme",
+ "binary_artifact" : {
+ "url" : "",
+ "hash" : {
+ "value" : "",
+ "algorithm" : ""
+ }
+ },
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
+ "hash" : {
+ "value" : "793041277af9073b0951a7fe0f0d8c4c98c36985",
+ "algorithm" : "SHA-1"
+ }
+ },
+ "vcs" : {
+ "type" : "Git",
+ "url" : "git+https://github.com/jridgewell/trace-mapping.git",
+ "revision" : "23ab4a29244444d825044ff8fb9a8d57f41837fa",
+ "path" : ""
+ },
+ "vcs_processed" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/trace-mapping.git",
+ "revision" : "23ab4a29244444d825044ff8fb9a8d57f41837fa",
+ "path" : ""
+ }
+ } ],
+ "issues" : {
+ "NPM::mime-types:2.1.26" : [ {
+ "timestamp" : "2023-02-02T07:52:09.576391463Z",
+ "source" : "NPM",
+ "message" : "uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.\ndebug@3.2.6: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)\nmkdirp@0.5.1: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)",
+ "severity" : "WARNING"
+ } ]
+ },
+ "dependency_graphs" : {
+ "NPM" : {
+ "packages" : [ "NPM::acorn-jsx:5.3.2", "NPM::acorn:7.4.1", "NPM::aggregate-error:3.1.0", "NPM::ajv:6.12.6", "NPM::ansi-colors:3.2.3", "NPM::ansi-escapes:4.3.2", "NPM::ansi-regex:3.0.1", "NPM::ansi-regex:4.1.1", "NPM::ansi-regex:5.0.1", "NPM::ansi-styles:3.2.1", "NPM::ansi-styles:4.3.0", "NPM::anymatch:3.1.3", "NPM::append-transform:2.0.0", "NPM::archy:1.0.0", "NPM::argparse:1.0.10", "NPM::array-includes:3.1.6", "NPM::array.prototype.flat:1.3.1", "NPM::array.prototype.reduce:1.0.5", "NPM::astral-regex:1.0.0", "NPM::available-typed-arrays:1.0.5", "NPM::balanced-match:1.0.2", "NPM::binary-extensions:2.2.0", "NPM::brace-expansion:1.1.11", "NPM::braces:3.0.2", "NPM::browser-stdout:1.3.1", "NPM::browserslist:4.21.5", "NPM::caching-transform:4.0.0", "NPM::call-bind:1.0.2", "NPM::callsites:3.1.0", "NPM::camelcase:5.3.1", "NPM::caniuse-lite:1.0.30001450", "NPM::chalk:2.4.2", "NPM::chalk:4.1.2", "NPM::chardet:0.7.0", "NPM::chokidar:3.3.0", "NPM::clean-stack:2.2.0", "NPM::cli-cursor:3.1.0", "NPM::cli-width:3.0.0", "NPM::cliui:5.0.0", "NPM::cliui:6.0.0", "NPM::color-convert:1.9.3", "NPM::color-convert:2.0.1", "NPM::color-name:1.1.3", "NPM::color-name:1.1.4", "NPM::commondir:1.0.1", "NPM::concat-map:0.0.1", "NPM::contains-path:0.1.0", "NPM::convert-source-map:1.9.0", "NPM::cross-spawn:6.0.5", "NPM::cross-spawn:7.0.3", "NPM::debug:2.6.9", "NPM::debug:3.2.6", "NPM::debug:3.2.7", "NPM::debug:4.3.4", "NPM::decamelize:1.2.0", "NPM::deep-is:0.1.4", "NPM::default-require-extensions:3.0.1", "NPM::define-properties:1.1.4", "NPM::diff:3.5.0", "NPM::doctrine:1.5.0", "NPM::doctrine:3.0.0", "NPM::electron-to-chromium:1.4.284", "NPM::emoji-regex:7.0.3", "NPM::emoji-regex:8.0.0", "NPM::error-ex:1.3.2", "NPM::es-abstract:1.21.1", "NPM::es-array-method-boxes-properly:1.0.0", "NPM::es-set-tostringtag:2.0.1", "NPM::es-shim-unscopables:1.0.0", "NPM::es-to-primitive:1.2.1", "NPM::es6-error:4.1.1", "NPM::escalade:3.1.1", "NPM::escape-string-regexp:1.0.5", "NPM::eslint-config-standard:14.1.0", "NPM::eslint-import-resolver-node:0.3.7", "NPM::eslint-module-utils:2.7.4", "NPM::eslint-plugin-es:3.0.1", "NPM::eslint-plugin-import:2.19.1", "NPM::eslint-plugin-node:11.0.0", "NPM::eslint-plugin-promise:4.2.1", "NPM::eslint-plugin-standard:4.0.1", "NPM::eslint-scope:5.1.1", "NPM::eslint-utils:1.4.3", "NPM::eslint-utils:2.1.0", "NPM::eslint-visitor-keys:1.3.0", "NPM::eslint:6.8.0", "NPM::espree:6.2.1", "NPM::esprima:4.0.1", "NPM::esquery:1.4.0", "NPM::esrecurse:4.3.0", "NPM::estraverse:4.3.0", "NPM::estraverse:5.3.0", "NPM::esutils:2.0.3", "NPM::external-editor:3.1.0", "NPM::fast-deep-equal:3.1.3", "NPM::fast-json-stable-stringify:2.1.0", "NPM::fast-levenshtein:2.0.6", "NPM::figures:3.2.0", "NPM::file-entry-cache:5.0.1", "NPM::fill-range:7.0.1", "NPM::find-cache-dir:3.3.2", "NPM::find-up:2.1.0", "NPM::find-up:3.0.0", "NPM::find-up:4.1.0", "NPM::flat-cache:2.0.1", "NPM::flat:4.1.1", "NPM::flatted:2.0.2", "NPM::for-each:0.3.3", "NPM::foreground-child:2.0.0", "NPM::fromentries:1.3.2", "NPM::fs.realpath:1.0.0", "NPM::function-bind:1.1.1", "NPM::function.prototype.name:1.1.5", "NPM::functional-red-black-tree:1.0.1", "NPM::functions-have-names:1.2.3", "NPM::gensync:1.0.0-beta.2", "NPM::get-caller-file:2.0.5", "NPM::get-intrinsic:1.2.0", "NPM::get-package-type:0.1.0", "NPM::get-symbol-description:1.0.0", "NPM::glob-parent:5.1.2", "NPM::glob:7.1.3", "NPM::glob:7.2.3", "NPM::globals:11.12.0", "NPM::globals:12.4.0", "NPM::globalthis:1.0.3", "NPM::gopd:1.0.1", "NPM::graceful-fs:4.2.10", "NPM::growl:1.10.5", "NPM::has-bigints:1.0.2", "NPM::has-flag:3.0.0", "NPM::has-flag:4.0.0", "NPM::has-property-descriptors:1.0.0", "NPM::has-proto:1.0.1", "NPM::has-symbols:1.0.3", "NPM::has-tostringtag:1.0.0", "NPM::has:1.0.3", "NPM::hasha:5.2.2", "NPM::he:1.2.0", "NPM::hosted-git-info:2.8.9", "NPM::html-escaper:2.0.2", "NPM::iconv-lite:0.4.24", "NPM::ignore:4.0.6", "NPM::ignore:5.2.4", "NPM::import-fresh:3.3.0", "NPM::imurmurhash:0.1.4", "NPM::indent-string:4.0.0", "NPM::inflight:1.0.6", "NPM::inherits:2.0.4", "NPM::inquirer:7.3.3", "NPM::internal-slot:1.0.4", "NPM::is-array-buffer:3.0.1", "NPM::is-arrayish:0.2.1", "NPM::is-bigint:1.0.4", "NPM::is-binary-path:2.1.0", "NPM::is-boolean-object:1.1.2", "NPM::is-buffer:2.0.5", "NPM::is-callable:1.2.7", "NPM::is-core-module:2.11.0", "NPM::is-date-object:1.0.5", "NPM::is-extglob:2.1.1", "NPM::is-fullwidth-code-point:2.0.0", "NPM::is-fullwidth-code-point:3.0.0", "NPM::is-glob:4.0.3", "NPM::is-negative-zero:2.0.2", "NPM::is-number-object:1.0.7", "NPM::is-number:7.0.0", "NPM::is-regex:1.1.4", "NPM::is-shared-array-buffer:1.0.2", "NPM::is-stream:2.0.1", "NPM::is-string:1.0.7", "NPM::is-symbol:1.0.4", "NPM::is-typed-array:1.1.10", "NPM::is-typedarray:1.0.0", "NPM::is-weakref:1.0.2", "NPM::is-windows:1.0.2", "NPM::isarray:1.0.0", "NPM::isexe:2.0.0", "NPM::istanbul-lib-coverage:3.2.0", "NPM::istanbul-lib-hook:3.0.0", "NPM::istanbul-lib-instrument:4.0.3", "NPM::istanbul-lib-processinfo:2.0.3", "NPM::istanbul-lib-report:3.0.0", "NPM::istanbul-lib-source-maps:4.0.1", "NPM::istanbul-reports:3.1.5", "NPM::js-tokens:4.0.0", "NPM::js-yaml:3.13.1", "NPM::js-yaml:3.14.1", "NPM::jsesc:2.5.2", "NPM::json-schema-traverse:0.4.1", "NPM::json-stable-stringify-without-jsonify:1.0.1", "NPM::json5:2.2.3", "NPM::levn:0.3.0", "NPM::load-json-file:2.0.0", "NPM::locate-path:2.0.0", "NPM::locate-path:3.0.0", "NPM::locate-path:5.0.0", "NPM::lodash.flattendeep:4.4.0", "NPM::lodash:4.17.21", "NPM::log-symbols:2.2.0", "NPM::lru-cache:5.1.1", "NPM::make-dir:3.1.0", "NPM::mime-db:1.43.0", "NPM::mimic-fn:2.1.0", "NPM::minimatch:3.0.4", "NPM::minimatch:3.1.2", "NPM::minimist:0.0.8", "NPM::minimist:1.2.7", "NPM::mkdirp:0.5.1", "NPM::mkdirp:0.5.6", "NPM::mocha:7.0.0", "NPM::ms:2.0.0", "NPM::ms:2.1.1", "NPM::ms:2.1.2", "NPM::mute-stream:0.0.8", "NPM::natural-compare:1.4.0", "NPM::nice-try:1.0.5", "NPM::node-environment-flags:1.0.6", "NPM::node-preload:0.2.1", "NPM::node-releases:2.0.9", "NPM::normalize-package-data:2.5.0", "NPM::normalize-path:3.0.0", "NPM::nyc:15.0.0", "NPM::object-inspect:1.12.3", "NPM::object-keys:1.1.1", "NPM::object.assign:4.1.0", "NPM::object.assign:4.1.4", "NPM::object.getownpropertydescriptors:2.1.5", "NPM::object.values:1.1.6", "NPM::once:1.4.0", "NPM::onetime:5.1.2", "NPM::optionator:0.8.3", "NPM::os-tmpdir:1.0.2", "NPM::p-limit:1.3.0", "NPM::p-limit:2.3.0", "NPM::p-locate:2.0.0", "NPM::p-locate:3.0.0", "NPM::p-locate:4.1.0", "NPM::p-map:3.0.0", "NPM::p-try:1.0.0", "NPM::p-try:2.2.0", "NPM::package-hash:4.0.0", "NPM::parent-module:1.0.1", "NPM::parse-json:2.2.0", "NPM::path-exists:3.0.0", "NPM::path-exists:4.0.0", "NPM::path-is-absolute:1.0.1", "NPM::path-key:2.0.1", "NPM::path-key:3.1.1", "NPM::path-parse:1.0.7", "NPM::path-type:2.0.0", "NPM::picocolors:1.0.0", "NPM::picomatch:2.3.1", "NPM::pify:2.3.0", "NPM::pkg-dir:4.2.0", "NPM::prelude-ls:1.1.2", "NPM::process-on-spawn:1.0.0", "NPM::progress:2.0.3", "NPM::punycode:2.3.0", "NPM::read-pkg-up:2.0.0", "NPM::read-pkg:2.0.0", "NPM::readdirp:3.2.0", "NPM::regexp.prototype.flags:1.4.3", "NPM::regexpp:2.0.1", "NPM::regexpp:3.2.0", "NPM::release-zalgo:1.0.0", "NPM::require-directory:2.1.1", "NPM::require-main-filename:2.0.0", "NPM::resolve-from:4.0.0", "NPM::resolve-from:5.0.0", "NPM::resolve:1.22.1", "NPM::restore-cursor:3.1.0", "NPM::rimraf:2.6.3", "NPM::rimraf:3.0.2", "NPM::run-async:2.4.1", "NPM::rxjs:6.6.7", "NPM::safe-regex-test:1.0.0", "NPM::safer-buffer:2.1.2", "NPM::semver:5.7.1", "NPM::semver:6.3.0", "NPM::set-blocking:2.0.0", "NPM::shebang-command:1.2.0", "NPM::shebang-command:2.0.0", "NPM::shebang-regex:1.0.0", "NPM::shebang-regex:3.0.0", "NPM::side-channel:1.0.4", "NPM::signal-exit:3.0.7", "NPM::slice-ansi:2.1.0", "NPM::source-map:0.6.1", "NPM::spawn-wrap:2.0.0", "NPM::spdx-correct:3.1.1", "NPM::spdx-exceptions:2.3.0", "NPM::spdx-expression-parse:3.0.1", "NPM::spdx-license-ids:3.0.12", "NPM::sprintf-js:1.0.3", "NPM::string-width:2.1.1", "NPM::string-width:3.1.0", "NPM::string-width:4.2.3", "NPM::string.prototype.trimend:1.0.6", "NPM::string.prototype.trimstart:1.0.6", "NPM::strip-ansi:4.0.0", "NPM::strip-ansi:5.2.0", "NPM::strip-ansi:6.0.1", "NPM::strip-bom:3.0.0", "NPM::strip-bom:4.0.0", "NPM::strip-json-comments:2.0.1", "NPM::strip-json-comments:3.1.1", "NPM::supports-color:5.5.0", "NPM::supports-color:6.0.0", "NPM::supports-color:7.2.0", "NPM::supports-preserve-symlinks-flag:1.0.0", "NPM::table:5.4.6", "NPM::test-exclude:6.0.0", "NPM::text-table:0.2.0", "NPM::through:2.3.8", "NPM::tmp:0.0.33", "NPM::to-fast-properties:2.0.0", "NPM::to-regex-range:5.0.1", "NPM::tslib:1.14.1", "NPM::type-check:0.3.2", "NPM::type-fest:0.21.3", "NPM::type-fest:0.8.1", "NPM::typed-array-length:1.0.4", "NPM::typedarray-to-buffer:3.1.5", "NPM::unbox-primitive:1.0.2", "NPM::update-browserslist-db:1.0.10", "NPM::uri-js:4.4.1", "NPM::uuid:3.4.0", "NPM::uuid:8.3.2", "NPM::v8-compile-cache:2.3.0", "NPM::validate-npm-package-license:3.0.4", "NPM::which-boxed-primitive:1.0.2", "NPM::which-module:2.0.0", "NPM::which-typed-array:1.1.9", "NPM::which:1.3.1", "NPM::which:2.0.2", "NPM::wide-align:1.1.3", "NPM::word-wrap:1.2.3", "NPM::wrap-ansi:5.1.0", "NPM::wrap-ansi:6.2.0", "NPM::wrappy:1.0.2", "NPM::write-file-atomic:3.0.3", "NPM::write:1.0.3", "NPM::y18n:4.0.3", "NPM::yallist:3.1.1", "NPM::yargs-parser:13.1.1", "NPM::yargs-parser:18.1.3", "NPM::yargs-unparser:1.6.0", "NPM::yargs:13.3.0", "NPM::yargs:15.4.1", "NPM:@ampproject:remapping:2.2.0", "NPM:@babel:code-frame:7.18.6", "NPM:@babel:compat-data:7.20.14", "NPM:@babel:core:7.20.12", "NPM:@babel:generator:7.20.14", "NPM:@babel:helper-compilation-targets:7.20.7", "NPM:@babel:helper-environment-visitor:7.18.9", "NPM:@babel:helper-function-name:7.19.0", "NPM:@babel:helper-hoist-variables:7.18.6", "NPM:@babel:helper-module-imports:7.18.6", "NPM:@babel:helper-module-transforms:7.20.11", "NPM:@babel:helper-simple-access:7.20.2", "NPM:@babel:helper-split-export-declaration:7.18.6", "NPM:@babel:helper-string-parser:7.19.4", "NPM:@babel:helper-validator-identifier:7.19.1", "NPM:@babel:helper-validator-option:7.18.6", "NPM:@babel:helpers:7.20.13", "NPM:@babel:highlight:7.18.6", "NPM:@babel:parser:7.20.13", "NPM:@babel:template:7.20.7", "NPM:@babel:traverse:7.20.13", "NPM:@babel:types:7.20.7", "NPM:@istanbuljs:load-nyc-config:1.1.0", "NPM:@istanbuljs:schema:0.1.3", "NPM:@jridgewell:gen-mapping:0.1.1", "NPM:@jridgewell:gen-mapping:0.3.2", "NPM:@jridgewell:resolve-uri:3.1.0", "NPM:@jridgewell:set-array:1.1.2", "NPM:@jridgewell:sourcemap-codec:1.4.14", "NPM:@jridgewell:trace-mapping:0.3.17" ],
+ "scopes" : {
+ ":mime-types:2.1.26:dependencies" : [ {
+ "root" : 202
+ } ],
+ ":mime-types:2.1.26:devDependencies" : [ {
+ "root" : 73
+ }, {
+ "root" : 77
+ }, {
+ "root" : 78
+ }, {
+ "root" : 79
+ }, {
+ "root" : 80
+ }, {
+ "root" : 85
+ }, {
+ "root" : 210
+ }, {
+ "root" : 222
+ } ]
+ },
+ "nodes" : [ {
+ "pkg" : 202
+ }, {
+ "pkg" : 73
+ }, {
+ "pkg" : 20
+ }, {
+ "pkg" : 45
+ }, {
+ "pkg" : 22
+ }, {
+ "pkg" : 205
+ }, {
+ "pkg" : 111
+ }, {
+ "pkg" : 136
+ }, {
+ "pkg" : 134
+ }, {
+ "pkg" : 117
+ }, {
+ "pkg" : 27
+ }, {
+ "pkg" : 132
+ }, {
+ "pkg" : 224
+ }, {
+ "pkg" : 57
+ }, {
+ "pkg" : 19
+ }, {
+ "pkg" : 135
+ }, {
+ "pkg" : 67
+ }, {
+ "pkg" : 157
+ }, {
+ "pkg" : 159
+ }, {
+ "pkg" : 171
+ }, {
+ "pkg" : 69
+ }, {
+ "pkg" : 114
+ }, {
+ "pkg" : 112
+ }, {
+ "pkg" : 119
+ }, {
+ "pkg" : 125
+ }, {
+ "pkg" : 126
+ }, {
+ "pkg" : 133
+ }, {
+ "pkg" : 223
+ }, {
+ "pkg" : 285
+ }, {
+ "pkg" : 150
+ }, {
+ "pkg" : 107
+ }, {
+ "pkg" : 172
+ }, {
+ "pkg" : 151
+ }, {
+ "pkg" : 164
+ }, {
+ "pkg" : 167
+ }, {
+ "pkg" : 168
+ }, {
+ "pkg" : 170
+ }, {
+ "pkg" : 174
+ }, {
+ "pkg" : 226
+ }, {
+ "pkg" : 262
+ }, {
+ "pkg" : 276
+ }, {
+ "pkg" : 298
+ }, {
+ "pkg" : 299
+ }, {
+ "pkg" : 322
+ }, {
+ "pkg" : 129
+ }, {
+ "pkg" : 153
+ }, {
+ "pkg" : 155
+ }, {
+ "pkg" : 165
+ }, {
+ "pkg" : 331
+ }, {
+ "pkg" : 324
+ }, {
+ "pkg" : 333
+ }, {
+ "pkg" : 65
+ }, {
+ "pkg" : 15
+ }, {
+ "pkg" : 68
+ }, {
+ "pkg" : 16
+ }, {
+ "pkg" : 46
+ }, {
+ "pkg" : 211
+ }, {
+ "pkg" : 50
+ }, {
+ "pkg" : 92
+ }, {
+ "pkg" : 176
+ }, {
+ "pkg" : 59
+ }, {
+ "pkg" : 213
+ }, {
+ "pkg" : 52
+ }, {
+ "pkg" : 158
+ }, {
+ "pkg" : 249
+ }, {
+ "pkg" : 310
+ }, {
+ "pkg" : 270
+ }, {
+ "pkg" : 74
+ }, {
+ "pkg" : 75
+ }, {
+ "pkg" : 228
+ }, {
+ "pkg" : 239
+ }, {
+ "pkg" : 233
+ }, {
+ "pkg" : 235
+ }, {
+ "pkg" : 244
+ }, {
+ "pkg" : 194
+ }, {
+ "pkg" : 101
+ }, {
+ "pkg" : 127
+ }, {
+ "pkg" : 152
+ }, {
+ "pkg" : 64
+ }, {
+ "pkg" : 243
+ }, {
+ "pkg" : 253
+ }, {
+ "pkg" : 303
+ }, {
+ "pkg" : 193
+ }, {
+ "pkg" : 278
+ }, {
+ "pkg" : 139
+ }, {
+ "pkg" : 291
+ }, {
+ "pkg" : 293
+ }, {
+ "pkg" : 292
+ }, {
+ "pkg" : 290
+ }, {
+ "pkg" : 330
+ }, {
+ "pkg" : 220
+ }, {
+ "pkg" : 250
+ }, {
+ "pkg" : 260
+ }, {
+ "pkg" : 259
+ }, {
+ "pkg" : 77
+ }, {
+ "pkg" : 279
+ }, {
+ "pkg" : 84
+ }, {
+ "pkg" : 83
+ }, {
+ "pkg" : 264
+ }, {
+ "pkg" : 76
+ }, {
+ "pkg" : 143
+ }, {
+ "pkg" : 78
+ }, {
+ "pkg" : 79
+ }, {
+ "pkg" : 80
+ }, {
+ "pkg" : 364
+ }, {
+ "pkg" : 42
+ }, {
+ "pkg" : 40
+ }, {
+ "pkg" : 9
+ }, {
+ "pkg" : 72
+ }, {
+ "pkg" : 130
+ }, {
+ "pkg" : 307
+ }, {
+ "pkg" : 31
+ }, {
+ "pkg" : 185
+ }, {
+ "pkg" : 367
+ }, {
+ "pkg" : 351
+ }, {
+ "pkg" : 94
+ }, {
+ "pkg" : 95
+ }, {
+ "pkg" : 189
+ }, {
+ "pkg" : 258
+ }, {
+ "pkg" : 326
+ }, {
+ "pkg" : 3
+ }, {
+ "pkg" : 216
+ }, {
+ "pkg" : 247
+ }, {
+ "pkg" : 283
+ }, {
+ "pkg" : 281
+ }, {
+ "pkg" : 177
+ }, {
+ "pkg" : 334
+ }, {
+ "pkg" : 48
+ }, {
+ "pkg" : 53
+ }, {
+ "pkg" : 60
+ }, {
+ "pkg" : 91
+ }, {
+ "pkg" : 89
+ }, {
+ "pkg" : 90
+ }, {
+ "pkg" : 81
+ }, {
+ "pkg" : 82
+ }, {
+ "pkg" : 1
+ }, { }, {
+ "pkg" : 86
+ }, {
+ "pkg" : 88
+ }, {
+ "pkg" : 106
+ }, {
+ "pkg" : 110
+ }, {
+ "pkg" : 340
+ }, {
+ "pkg" : 229
+ }, {
+ "pkg" : 147
+ }, {
+ "pkg" : 148
+ }, {
+ "pkg" : 246
+ }, {
+ "pkg" : 121
+ }, {
+ "pkg" : 272
+ }, {
+ "pkg" : 207
+ }, {
+ "pkg" : 209
+ }, {
+ "pkg" : 342
+ }, {
+ "pkg" : 104
+ }, {
+ "pkg" : 98
+ }, {
+ "pkg" : 113
+ }, {
+ "pkg" : 160
+ }, {
+ "pkg" : 163
+ }, {
+ "pkg" : 120
+ }, {
+ "pkg" : 321
+ }, {
+ "pkg" : 124
+ }, {
+ "pkg" : 142
+ }, {
+ "pkg" : 28
+ }, {
+ "pkg" : 242
+ }, {
+ "pkg" : 268
+ }, {
+ "pkg" : 144
+ }, {
+ "pkg" : 145
+ }, {
+ "pkg" : 320
+ }, {
+ "pkg" : 5
+ }, {
+ "pkg" : 43
+ }, {
+ "pkg" : 41
+ }, {
+ "pkg" : 10
+ }, {
+ "pkg" : 131
+ }, {
+ "pkg" : 309
+ }, {
+ "pkg" : 32
+ }, {
+ "pkg" : 203
+ }, {
+ "pkg" : 230
+ }, {
+ "pkg" : 286
+ }, {
+ "pkg" : 271
+ }, {
+ "pkg" : 36
+ }, {
+ "pkg" : 37
+ }, {
+ "pkg" : 33
+ }, {
+ "pkg" : 277
+ }, {
+ "pkg" : 141
+ }, {
+ "pkg" : 232
+ }, {
+ "pkg" : 315
+ }, {
+ "pkg" : 93
+ }, {
+ "pkg" : 97
+ }, {
+ "pkg" : 198
+ }, {
+ "pkg" : 214
+ }, {
+ "pkg" : 274
+ }, {
+ "pkg" : 318
+ }, {
+ "pkg" : 275
+ }, {
+ "pkg" : 63
+ }, {
+ "pkg" : 162
+ }, {
+ "pkg" : 8
+ }, {
+ "pkg" : 302
+ }, {
+ "pkg" : 297
+ }, {
+ "pkg" : 314
+ }, {
+ "pkg" : 149
+ }, {
+ "pkg" : 294
+ }, {
+ "pkg" : 14
+ }, {
+ "pkg" : 87
+ }, {
+ "pkg" : 187
+ }, {
+ "pkg" : 190
+ }, {
+ "pkg" : 255
+ }, {
+ "pkg" : 319
+ }, {
+ "pkg" : 192
+ }, {
+ "pkg" : 215
+ }, {
+ "pkg" : 55
+ }, {
+ "pkg" : 337
+ }, {
+ "pkg" : 96
+ }, {
+ "pkg" : 231
+ }, {
+ "pkg" : 257
+ }, {
+ "pkg" : 263
+ }, {
+ "pkg" : 7
+ }, {
+ "pkg" : 301
+ }, {
+ "pkg" : 306
+ }, {
+ "pkg" : 18
+ }, {
+ "pkg" : 161
+ }, {
+ "pkg" : 287
+ }, {
+ "pkg" : 62
+ }, {
+ "pkg" : 296
+ }, {
+ "pkg" : 311
+ }, {
+ "pkg" : 313
+ }, {
+ "pkg" : 329
+ }, {
+ "pkg" : 85
+ }, {
+ "pkg" : 4
+ }, {
+ "pkg" : 24
+ }, {
+ "pkg" : 221
+ }, {
+ "pkg" : 252
+ }, {
+ "pkg" : 11
+ }, {
+ "pkg" : 166
+ }, {
+ "pkg" : 317
+ }, {
+ "pkg" : 99
+ }, {
+ "pkg" : 23
+ }, {
+ "pkg" : 21
+ }, {
+ "pkg" : 154
+ }, {
+ "pkg" : 261
+ }, {
+ "pkg" : 34
+ }, {
+ "pkg" : 212
+ }, {
+ "pkg" : 51
+ }, {
+ "pkg" : 58
+ }, {
+ "pkg" : 240
+ }, {
+ "pkg" : 234
+ }, {
+ "pkg" : 236
+ }, {
+ "pkg" : 195
+ }, {
+ "pkg" : 102
+ }, {
+ "pkg" : 128
+ }, {
+ "pkg" : 138
+ }, {
+ "pkg" : 186
+ }, {
+ "pkg" : 199
+ }, {
+ "pkg" : 204
+ }, {
+ "pkg" : 206
+ }, {
+ "pkg" : 208
+ }, {
+ "pkg" : 66
+ }, {
+ "pkg" : 17
+ }, {
+ "pkg" : 227
+ }, {
+ "pkg" : 217
+ }, {
+ "pkg" : 225
+ }, {
+ "pkg" : 305
+ }, {
+ "pkg" : 308
+ }, {
+ "pkg" : 6
+ }, {
+ "pkg" : 300
+ }, {
+ "pkg" : 295
+ }, {
+ "pkg" : 336
+ }, {
+ "pkg" : 338
+ }, {
+ "pkg" : 38
+ }, {
+ "pkg" : 116
+ }, {
+ "pkg" : 266
+ }, {
+ "pkg" : 267
+ }, {
+ "pkg" : 280
+ }, {
+ "pkg" : 332
+ }, {
+ "pkg" : 343
+ }, {
+ "pkg" : 29
+ }, {
+ "pkg" : 54
+ }, {
+ "pkg" : 345
+ }, {
+ "pkg" : 348
+ }, {
+ "pkg" : 156
+ }, {
+ "pkg" : 105
+ }, {
+ "pkg" : 347
+ }, {
+ "pkg" : 210
+ }, {
+ "pkg" : 237
+ }, {
+ "pkg" : 196
+ }, {
+ "pkg" : 245
+ }, {
+ "pkg" : 103
+ }, {
+ "pkg" : 118
+ }, {
+ "pkg" : 269
+ }, {
+ "pkg" : 372
+ }, {
+ "pkg" : 373
+ }, {
+ "pkg" : 169
+ }, {
+ "pkg" : 137
+ }, {
+ "pkg" : 201
+ }, {
+ "pkg" : 197
+ }, {
+ "pkg" : 70
+ }, {
+ "pkg" : 265
+ }, {
+ "pkg" : 241
+ }, {
+ "pkg" : 173
+ }, {
+ "pkg" : 323
+ }, {
+ "pkg" : 341
+ }, {
+ "pkg" : 26
+ }, {
+ "pkg" : 47
+ }, {
+ "pkg" : 44
+ }, {
+ "pkg" : 254
+ }, {
+ "pkg" : 100
+ }, {
+ "pkg" : 248
+ }, {
+ "pkg" : 284
+ }, {
+ "pkg" : 282
+ }, {
+ "pkg" : 335
+ }, {
+ "pkg" : 49
+ }, {
+ "pkg" : 108
+ }, {
+ "pkg" : 122
+ }, {
+ "pkg" : 178
+ }, {
+ "pkg" : 304
+ }, {
+ "pkg" : 56
+ }, {
+ "pkg" : 12
+ }, {
+ "pkg" : 179
+ }, {
+ "pkg" : 377
+ }, {
+ "pkg" : 378
+ }, {
+ "pkg" : 374
+ }, {
+ "pkg" : 376
+ }, {
+ "pkg" : 379
+ }, {
+ "pkg" : 350
+ }, {
+ "pkg" : 363
+ }, {
+ "pkg" : 316
+ }, {
+ "pkg" : 371
+ }, {
+ "pkg" : 375
+ }, {
+ "pkg" : 188
+ }, {
+ "pkg" : 354
+ }, {
+ "pkg" : 352
+ }, {
+ "pkg" : 365
+ }, {
+ "pkg" : 30
+ }, {
+ "pkg" : 61
+ }, {
+ "pkg" : 219
+ }, {
+ "pkg" : 71
+ }, {
+ "pkg" : 251
+ }, {
+ "pkg" : 325
+ }, {
+ "pkg" : 25
+ }, {
+ "pkg" : 344
+ }, {
+ "pkg" : 200
+ }, {
+ "pkg" : 355
+ }, {
+ "pkg" : 356
+ }, {
+ "pkg" : 359
+ }, {
+ "pkg" : 361
+ }, {
+ "pkg" : 362
+ }, {
+ "pkg" : 368
+ }, {
+ "pkg" : 369
+ }, {
+ "pkg" : 357
+ }, {
+ "pkg" : 358
+ }, {
+ "pkg" : 123
+ }, {
+ "pkg" : 370
+ }, {
+ "pkg" : 360
+ }, {
+ "pkg" : 366
+ }, {
+ "pkg" : 115
+ }, {
+ "pkg" : 191
+ }, {
+ "pkg" : 353
+ }, {
+ "pkg" : 180
+ }, {
+ "pkg" : 13
+ }, {
+ "pkg" : 35
+ }, {
+ "pkg" : 146
+ }, {
+ "pkg" : 2
+ }, {
+ "pkg" : 238
+ }, {
+ "pkg" : 273
+ }, {
+ "pkg" : 328
+ }, {
+ "pkg" : 181
+ }, {
+ "pkg" : 273,
+ "fragment" : 1
+ }, {
+ "pkg" : 182
+ }, {
+ "pkg" : 288
+ }, {
+ "pkg" : 183
+ }, {
+ "pkg" : 140
+ }, {
+ "pkg" : 184
+ }, {
+ "pkg" : 109
+ }, {
+ "pkg" : 256
+ }, {
+ "pkg" : 218
+ }, {
+ "pkg" : 175
+ }, {
+ "pkg" : 289
+ }, {
+ "pkg" : 312
+ }, {
+ "pkg" : 327
+ }, {
+ "pkg" : 339
+ }, {
+ "pkg" : 39
+ }, {
+ "pkg" : 346
+ }, {
+ "pkg" : 349
+ }, {
+ "pkg" : 222
+ } ],
+ "edges" : [ {
+ "from" : 4,
+ "to" : 2
+ }, {
+ "from" : 4,
+ "to" : 3
+ }, {
+ "from" : 5,
+ "to" : 4
+ }, {
+ "from" : 7,
+ "to" : 6
+ }, {
+ "from" : 9,
+ "to" : 6
+ }, {
+ "from" : 9,
+ "to" : 7
+ }, {
+ "from" : 9,
+ "to" : 8
+ }, {
+ "from" : 10,
+ "to" : 6
+ }, {
+ "from" : 10,
+ "to" : 9
+ }, {
+ "from" : 11,
+ "to" : 9
+ }, {
+ "from" : 13,
+ "to" : 11
+ }, {
+ "from" : 13,
+ "to" : 12
+ }, {
+ "from" : 15,
+ "to" : 8
+ }, {
+ "from" : 16,
+ "to" : 9
+ }, {
+ "from" : 16,
+ "to" : 7
+ }, {
+ "from" : 16,
+ "to" : 15
+ }, {
+ "from" : 18,
+ "to" : 15
+ }, {
+ "from" : 19,
+ "to" : 8
+ }, {
+ "from" : 20,
+ "to" : 17
+ }, {
+ "from" : 20,
+ "to" : 18
+ }, {
+ "from" : 20,
+ "to" : 19
+ }, {
+ "from" : 22,
+ "to" : 10
+ }, {
+ "from" : 22,
+ "to" : 13
+ }, {
+ "from" : 22,
+ "to" : 21
+ }, {
+ "from" : 23,
+ "to" : 10
+ }, {
+ "from" : 23,
+ "to" : 9
+ }, {
+ "from" : 24,
+ "to" : 13
+ }, {
+ "from" : 25,
+ "to" : 9
+ }, {
+ "from" : 28,
+ "to" : 10
+ }, {
+ "from" : 28,
+ "to" : 9
+ }, {
+ "from" : 28,
+ "to" : 27
+ }, {
+ "from" : 29,
+ "to" : 9
+ }, {
+ "from" : 29,
+ "to" : 7
+ }, {
+ "from" : 29,
+ "to" : 28
+ }, {
+ "from" : 30,
+ "to" : 17
+ }, {
+ "from" : 31,
+ "to" : 10
+ }, {
+ "from" : 31,
+ "to" : 14
+ }, {
+ "from" : 31,
+ "to" : 15
+ }, {
+ "from" : 31,
+ "to" : 25
+ }, {
+ "from" : 31,
+ "to" : 30
+ }, {
+ "from" : 32,
+ "to" : 10
+ }, {
+ "from" : 32,
+ "to" : 9
+ }, {
+ "from" : 32,
+ "to" : 31
+ }, {
+ "from" : 34,
+ "to" : 10
+ }, {
+ "from" : 34,
+ "to" : 15
+ }, {
+ "from" : 35,
+ "to" : 10
+ }, {
+ "from" : 36,
+ "to" : 15
+ }, {
+ "from" : 37,
+ "to" : 10
+ }, {
+ "from" : 38,
+ "to" : 10
+ }, {
+ "from" : 38,
+ "to" : 8
+ }, {
+ "from" : 38,
+ "to" : 13
+ }, {
+ "from" : 38,
+ "to" : 12
+ }, {
+ "from" : 39,
+ "to" : 10
+ }, {
+ "from" : 39,
+ "to" : 13
+ }, {
+ "from" : 39,
+ "to" : 21
+ }, {
+ "from" : 40,
+ "to" : 10
+ }, {
+ "from" : 40,
+ "to" : 9
+ }, {
+ "from" : 40,
+ "to" : 34
+ }, {
+ "from" : 41,
+ "to" : 10
+ }, {
+ "from" : 41,
+ "to" : 13
+ }, {
+ "from" : 42,
+ "to" : 10
+ }, {
+ "from" : 42,
+ "to" : 13
+ }, {
+ "from" : 43,
+ "to" : 10
+ }, {
+ "from" : 43,
+ "to" : 31
+ }, {
+ "from" : 43,
+ "to" : 30
+ }, {
+ "from" : 45,
+ "to" : 44
+ }, {
+ "from" : 46,
+ "to" : 10
+ }, {
+ "from" : 46,
+ "to" : 15
+ }, {
+ "from" : 47,
+ "to" : 15
+ }, {
+ "from" : 48,
+ "to" : 19
+ }, {
+ "from" : 48,
+ "to" : 36
+ }, {
+ "from" : 48,
+ "to" : 45
+ }, {
+ "from" : 48,
+ "to" : 46
+ }, {
+ "from" : 48,
+ "to" : 47
+ }, {
+ "from" : 49,
+ "to" : 10
+ }, {
+ "from" : 49,
+ "to" : 8
+ }, {
+ "from" : 49,
+ "to" : 44
+ }, {
+ "from" : 49,
+ "to" : 48
+ }, {
+ "from" : 50,
+ "to" : 10
+ }, {
+ "from" : 50,
+ "to" : 14
+ }, {
+ "from" : 50,
+ "to" : 15
+ }, {
+ "from" : 50,
+ "to" : 25
+ }, {
+ "from" : 50,
+ "to" : 31
+ }, {
+ "from" : 50,
+ "to" : 30
+ }, {
+ "from" : 51,
+ "to" : 10
+ }, {
+ "from" : 51,
+ "to" : 6
+ }, {
+ "from" : 51,
+ "to" : 9
+ }, {
+ "from" : 51,
+ "to" : 7
+ }, {
+ "from" : 51,
+ "to" : 8
+ }, {
+ "from" : 51,
+ "to" : 11
+ }, {
+ "from" : 51,
+ "to" : 12
+ }, {
+ "from" : 51,
+ "to" : 14
+ }, {
+ "from" : 51,
+ "to" : 16
+ }, {
+ "from" : 51,
+ "to" : 20
+ }, {
+ "from" : 51,
+ "to" : 17
+ }, {
+ "from" : 51,
+ "to" : 22
+ }, {
+ "from" : 51,
+ "to" : 23
+ }, {
+ "from" : 51,
+ "to" : 24
+ }, {
+ "from" : 51,
+ "to" : 25
+ }, {
+ "from" : 51,
+ "to" : 26
+ }, {
+ "from" : 51,
+ "to" : 29
+ }, {
+ "from" : 51,
+ "to" : 27
+ }, {
+ "from" : 51,
+ "to" : 32
+ }, {
+ "from" : 51,
+ "to" : 31
+ }, {
+ "from" : 51,
+ "to" : 33
+ }, {
+ "from" : 51,
+ "to" : 34
+ }, {
+ "from" : 51,
+ "to" : 35
+ }, {
+ "from" : 51,
+ "to" : 36
+ }, {
+ "from" : 51,
+ "to" : 37
+ }, {
+ "from" : 51,
+ "to" : 38
+ }, {
+ "from" : 51,
+ "to" : 39
+ }, {
+ "from" : 51,
+ "to" : 40
+ }, {
+ "from" : 51,
+ "to" : 41
+ }, {
+ "from" : 51,
+ "to" : 42
+ }, {
+ "from" : 51,
+ "to" : 43
+ }, {
+ "from" : 51,
+ "to" : 49
+ }, {
+ "from" : 51,
+ "to" : 50
+ }, {
+ "from" : 52,
+ "to" : 10
+ }, {
+ "from" : 52,
+ "to" : 9
+ }, {
+ "from" : 52,
+ "to" : 13
+ }, {
+ "from" : 52,
+ "to" : 51
+ }, {
+ "from" : 52,
+ "to" : 36
+ }, {
+ "from" : 53,
+ "to" : 7
+ }, {
+ "from" : 54,
+ "to" : 10
+ }, {
+ "from" : 54,
+ "to" : 13
+ }, {
+ "from" : 54,
+ "to" : 51
+ }, {
+ "from" : 54,
+ "to" : 53
+ }, {
+ "from" : 57,
+ "to" : 56
+ }, {
+ "from" : 60,
+ "to" : 58
+ }, {
+ "from" : 60,
+ "to" : 59
+ }, {
+ "from" : 62,
+ "to" : 61
+ }, {
+ "from" : 63,
+ "to" : 7
+ }, {
+ "from" : 66,
+ "to" : 63
+ }, {
+ "from" : 66,
+ "to" : 64
+ }, {
+ "from" : 66,
+ "to" : 65
+ }, {
+ "from" : 67,
+ "to" : 62
+ }, {
+ "from" : 67,
+ "to" : 63
+ }, {
+ "from" : 67,
+ "to" : 66
+ }, {
+ "from" : 68,
+ "to" : 62
+ }, {
+ "from" : 69,
+ "to" : 10
+ }, {
+ "from" : 69,
+ "to" : 13
+ }, {
+ "from" : 69,
+ "to" : 51
+ }, {
+ "from" : 71,
+ "to" : 70
+ }, {
+ "from" : 72,
+ "to" : 71
+ }, {
+ "from" : 74,
+ "to" : 72
+ }, {
+ "from" : 74,
+ "to" : 73
+ }, {
+ "from" : 75,
+ "to" : 74
+ }, {
+ "from" : 78,
+ "to" : 77
+ }, {
+ "from" : 79,
+ "to" : 78
+ }, {
+ "from" : 82,
+ "to" : 76
+ }, {
+ "from" : 82,
+ "to" : 79
+ }, {
+ "from" : 82,
+ "to" : 80
+ }, {
+ "from" : 82,
+ "to" : 81
+ }, {
+ "from" : 87,
+ "to" : 85
+ }, {
+ "from" : 87,
+ "to" : 86
+ }, {
+ "from" : 88,
+ "to" : 87
+ }, {
+ "from" : 88,
+ "to" : 86
+ }, {
+ "from" : 89,
+ "to" : 88
+ }, {
+ "from" : 89,
+ "to" : 87
+ }, {
+ "from" : 90,
+ "to" : 66
+ }, {
+ "from" : 90,
+ "to" : 83
+ }, {
+ "from" : 90,
+ "to" : 84
+ }, {
+ "from" : 90,
+ "to" : 89
+ }, {
+ "from" : 91,
+ "to" : 80
+ }, {
+ "from" : 92,
+ "to" : 82
+ }, {
+ "from" : 92,
+ "to" : 90
+ }, {
+ "from" : 92,
+ "to" : 91
+ }, {
+ "from" : 93,
+ "to" : 75
+ }, {
+ "from" : 93,
+ "to" : 92
+ }, {
+ "from" : 94,
+ "to" : 5
+ }, {
+ "from" : 94,
+ "to" : 52
+ }, {
+ "from" : 94,
+ "to" : 7
+ }, {
+ "from" : 94,
+ "to" : 54
+ }, {
+ "from" : 94,
+ "to" : 55
+ }, {
+ "from" : 94,
+ "to" : 57
+ }, {
+ "from" : 94,
+ "to" : 60
+ }, {
+ "from" : 94,
+ "to" : 67
+ }, {
+ "from" : 94,
+ "to" : 66
+ }, {
+ "from" : 94,
+ "to" : 68
+ }, {
+ "from" : 94,
+ "to" : 69
+ }, {
+ "from" : 94,
+ "to" : 93
+ }, {
+ "from" : 97,
+ "to" : 96
+ }, {
+ "from" : 99,
+ "to" : 97
+ }, {
+ "from" : 99,
+ "to" : 98
+ }, {
+ "from" : 101,
+ "to" : 5
+ }, {
+ "from" : 101,
+ "to" : 66
+ }, {
+ "from" : 101,
+ "to" : 95
+ }, {
+ "from" : 101,
+ "to" : 99
+ }, {
+ "from" : 101,
+ "to" : 97
+ }, {
+ "from" : 101,
+ "to" : 100
+ }, {
+ "from" : 106,
+ "to" : 105
+ }, {
+ "from" : 107,
+ "to" : 106
+ }, {
+ "from" : 110,
+ "to" : 109
+ }, {
+ "from" : 111,
+ "to" : 107
+ }, {
+ "from" : 111,
+ "to" : 108
+ }, {
+ "from" : 111,
+ "to" : 110
+ }, {
+ "from" : 113,
+ "to" : 104
+ }, {
+ "from" : 113,
+ "to" : 111
+ }, {
+ "from" : 113,
+ "to" : 112
+ }, {
+ "from" : 114,
+ "to" : 113
+ }, {
+ "from" : 119,
+ "to" : 118
+ }, {
+ "from" : 120,
+ "to" : 115
+ }, {
+ "from" : 120,
+ "to" : 116
+ }, {
+ "from" : 120,
+ "to" : 117
+ }, {
+ "from" : 120,
+ "to" : 119
+ }, {
+ "from" : 124,
+ "to" : 123
+ }, {
+ "from" : 126,
+ "to" : 125
+ }, {
+ "from" : 127,
+ "to" : 83
+ }, {
+ "from" : 127,
+ "to" : 121
+ }, {
+ "from" : 127,
+ "to" : 122
+ }, {
+ "from" : 127,
+ "to" : 124
+ }, {
+ "from" : 127,
+ "to" : 126
+ }, {
+ "from" : 128,
+ "to" : 61
+ }, {
+ "from" : 129,
+ "to" : 58
+ }, {
+ "from" : 131,
+ "to" : 130
+ }, {
+ "from" : 133,
+ "to" : 131
+ }, {
+ "from" : 133,
+ "to" : 132
+ }, {
+ "from" : 134,
+ "to" : 96
+ }, {
+ "from" : 137,
+ "to" : 96
+ }, {
+ "from" : 137,
+ "to" : 135
+ }, {
+ "from" : 137,
+ "to" : 136
+ }, {
+ "from" : 138,
+ "to" : 130
+ }, {
+ "from" : 142,
+ "to" : 141
+ }, {
+ "from" : 143,
+ "to" : 142
+ }, {
+ "from" : 143,
+ "to" : 141
+ }, {
+ "from" : 146,
+ "to" : 5
+ }, {
+ "from" : 146,
+ "to" : 140
+ }, {
+ "from" : 146,
+ "to" : 143
+ }, {
+ "from" : 146,
+ "to" : 142
+ }, {
+ "from" : 146,
+ "to" : 144
+ }, {
+ "from" : 146,
+ "to" : 145
+ }, {
+ "from" : 147,
+ "to" : 146
+ }, {
+ "from" : 149,
+ "to" : 148
+ }, {
+ "from" : 150,
+ "to" : 149
+ }, {
+ "from" : 151,
+ "to" : 139
+ }, {
+ "from" : 151,
+ "to" : 147
+ }, {
+ "from" : 151,
+ "to" : 150
+ }, {
+ "from" : 152,
+ "to" : 151
+ }, {
+ "from" : 155,
+ "to" : 154
+ }, {
+ "from" : 156,
+ "to" : 155
+ }, {
+ "from" : 158,
+ "to" : 157
+ }, {
+ "from" : 161,
+ "to" : 160
+ }, {
+ "from" : 163,
+ "to" : 161
+ }, {
+ "from" : 163,
+ "to" : 162
+ }, {
+ "from" : 166,
+ "to" : 165
+ }, {
+ "from" : 168,
+ "to" : 167
+ }, {
+ "from" : 169,
+ "to" : 168
+ }, {
+ "from" : 171,
+ "to" : 170
+ }, {
+ "from" : 172,
+ "to" : 169
+ }, {
+ "from" : 172,
+ "to" : 171
+ }, {
+ "from" : 174,
+ "to" : 173
+ }, {
+ "from" : 176,
+ "to" : 174
+ }, {
+ "from" : 176,
+ "to" : 175
+ }, {
+ "from" : 177,
+ "to" : 176
+ }, {
+ "from" : 181,
+ "to" : 180
+ }, {
+ "from" : 183,
+ "to" : 182
+ }, {
+ "from" : 184,
+ "to" : 179
+ }, {
+ "from" : 184,
+ "to" : 181
+ }, {
+ "from" : 184,
+ "to" : 183
+ }, {
+ "from" : 185,
+ "to" : 108
+ }, {
+ "from" : 190,
+ "to" : 189
+ }, {
+ "from" : 194,
+ "to" : 193
+ }, {
+ "from" : 195,
+ "to" : 191
+ }, {
+ "from" : 195,
+ "to" : 192
+ }, {
+ "from" : 195,
+ "to" : 194
+ }, {
+ "from" : 197,
+ "to" : 166
+ }, {
+ "from" : 197,
+ "to" : 172
+ }, {
+ "from" : 197,
+ "to" : 177
+ }, {
+ "from" : 197,
+ "to" : 178
+ }, {
+ "from" : 197,
+ "to" : 184
+ }, {
+ "from" : 197,
+ "to" : 185
+ }, {
+ "from" : 197,
+ "to" : 186
+ }, {
+ "from" : 197,
+ "to" : 187
+ }, {
+ "from" : 197,
+ "to" : 188
+ }, {
+ "from" : 197,
+ "to" : 190
+ }, {
+ "from" : 197,
+ "to" : 195
+ }, {
+ "from" : 197,
+ "to" : 194
+ }, {
+ "from" : 197,
+ "to" : 196
+ }, {
+ "from" : 199,
+ "to" : 198
+ }, {
+ "from" : 201,
+ "to" : 199
+ }, {
+ "from" : 201,
+ "to" : 200
+ }, {
+ "from" : 204,
+ "to" : 203
+ }, {
+ "from" : 205,
+ "to" : 203
+ }, {
+ "from" : 205,
+ "to" : 204
+ }, {
+ "from" : 210,
+ "to" : 205
+ }, {
+ "from" : 210,
+ "to" : 203
+ }, {
+ "from" : 210,
+ "to" : 204
+ }, {
+ "from" : 210,
+ "to" : 207
+ }, {
+ "from" : 210,
+ "to" : 208
+ }, {
+ "from" : 210,
+ "to" : 209
+ }, {
+ "from" : 214,
+ "to" : 213
+ }, {
+ "from" : 218,
+ "to" : 107
+ }, {
+ "from" : 218,
+ "to" : 216
+ }, {
+ "from" : 218,
+ "to" : 217
+ }, {
+ "from" : 220,
+ "to" : 214
+ }, {
+ "from" : 220,
+ "to" : 217
+ }, {
+ "from" : 220,
+ "to" : 219
+ }, {
+ "from" : 221,
+ "to" : 120
+ }, {
+ "from" : 221,
+ "to" : 186
+ }, {
+ "from" : 221,
+ "to" : 218
+ }, {
+ "from" : 221,
+ "to" : 220
+ }, {
+ "from" : 224,
+ "to" : 5
+ }, {
+ "from" : 224,
+ "to" : 58
+ }, {
+ "from" : 224,
+ "to" : 95
+ }, {
+ "from" : 224,
+ "to" : 96
+ }, {
+ "from" : 224,
+ "to" : 114
+ }, {
+ "from" : 224,
+ "to" : 111
+ }, {
+ "from" : 224,
+ "to" : 120
+ }, {
+ "from" : 224,
+ "to" : 127
+ }, {
+ "from" : 224,
+ "to" : 128
+ }, {
+ "from" : 224,
+ "to" : 129
+ }, {
+ "from" : 224,
+ "to" : 133
+ }, {
+ "from" : 224,
+ "to" : 134
+ }, {
+ "from" : 224,
+ "to" : 137
+ }, {
+ "from" : 224,
+ "to" : 138
+ }, {
+ "from" : 224,
+ "to" : 152
+ }, {
+ "from" : 224,
+ "to" : 149
+ }, {
+ "from" : 224,
+ "to" : 153
+ }, {
+ "from" : 224,
+ "to" : 156
+ }, {
+ "from" : 224,
+ "to" : 155
+ }, {
+ "from" : 224,
+ "to" : 158
+ }, {
+ "from" : 224,
+ "to" : 159
+ }, {
+ "from" : 224,
+ "to" : 163
+ }, {
+ "from" : 224,
+ "to" : 164
+ }, {
+ "from" : 224,
+ "to" : 197
+ }, {
+ "from" : 224,
+ "to" : 186
+ }, {
+ "from" : 224,
+ "to" : 201
+ }, {
+ "from" : 224,
+ "to" : 202
+ }, {
+ "from" : 224,
+ "to" : 205
+ }, {
+ "from" : 224,
+ "to" : 206
+ }, {
+ "from" : 224,
+ "to" : 210
+ }, {
+ "from" : 224,
+ "to" : 211
+ }, {
+ "from" : 224,
+ "to" : 212
+ }, {
+ "from" : 224,
+ "to" : 214
+ }, {
+ "from" : 224,
+ "to" : 215
+ }, {
+ "from" : 224,
+ "to" : 221
+ }, {
+ "from" : 224,
+ "to" : 222
+ }, {
+ "from" : 224,
+ "to" : 223
+ }, {
+ "from" : 229,
+ "to" : 227
+ }, {
+ "from" : 229,
+ "to" : 228
+ }, {
+ "from" : 231,
+ "to" : 230
+ }, {
+ "from" : 232,
+ "to" : 231
+ }, {
+ "from" : 233,
+ "to" : 232
+ }, {
+ "from" : 235,
+ "to" : 234
+ }, {
+ "from" : 236,
+ "to" : 228
+ }, {
+ "from" : 237,
+ "to" : 156
+ }, {
+ "from" : 237,
+ "to" : 155
+ }, {
+ "from" : 237,
+ "to" : 229
+ }, {
+ "from" : 237,
+ "to" : 227
+ }, {
+ "from" : 237,
+ "to" : 233
+ }, {
+ "from" : 237,
+ "to" : 235
+ }, {
+ "from" : 237,
+ "to" : 236
+ }, {
+ "from" : 239,
+ "to" : 238
+ }, {
+ "from" : 242,
+ "to" : 241
+ }, {
+ "from" : 243,
+ "to" : 242
+ }, {
+ "from" : 244,
+ "to" : 73
+ }, {
+ "from" : 244,
+ "to" : 243
+ }, {
+ "from" : 245,
+ "to" : 244
+ }, {
+ "from" : 248,
+ "to" : 199
+ }, {
+ "from" : 248,
+ "to" : 200
+ }, {
+ "from" : 249,
+ "to" : 111
+ }, {
+ "from" : 250,
+ "to" : 4
+ }, {
+ "from" : 252,
+ "to" : 251
+ }, {
+ "from" : 254,
+ "to" : 10
+ }, {
+ "from" : 254,
+ "to" : 13
+ }, {
+ "from" : 254,
+ "to" : 51
+ }, {
+ "from" : 254,
+ "to" : 36
+ }, {
+ "from" : 254,
+ "to" : 253
+ }, {
+ "from" : 255,
+ "to" : 10
+ }, {
+ "from" : 255,
+ "to" : 13
+ }, {
+ "from" : 255,
+ "to" : 51
+ }, {
+ "from" : 255,
+ "to" : 254
+ }, {
+ "from" : 256,
+ "to" : 83
+ }, {
+ "from" : 256,
+ "to" : 255
+ }, {
+ "from" : 257,
+ "to" : 6
+ }, {
+ "from" : 257,
+ "to" : 8
+ }, {
+ "from" : 257,
+ "to" : 13
+ }, {
+ "from" : 257,
+ "to" : 12
+ }, {
+ "from" : 259,
+ "to" : 109
+ }, {
+ "from" : 261,
+ "to" : 260
+ }, {
+ "from" : 262,
+ "to" : 217
+ }, {
+ "from" : 262,
+ "to" : 261
+ }, {
+ "from" : 263,
+ "to" : 262
+ }, {
+ "from" : 264,
+ "to" : 107
+ }, {
+ "from" : 264,
+ "to" : 214
+ }, {
+ "from" : 264,
+ "to" : 220
+ }, {
+ "from" : 265,
+ "to" : 214
+ }, {
+ "from" : 265,
+ "to" : 220
+ }, {
+ "from" : 265,
+ "to" : 264
+ }, {
+ "from" : 274,
+ "to" : 272
+ }, {
+ "from" : 274,
+ "to" : 273
+ }, {
+ "from" : 275,
+ "to" : 220
+ }, {
+ "from" : 275,
+ "to" : 245
+ }, {
+ "from" : 275,
+ "to" : 265
+ }, {
+ "from" : 275,
+ "to" : 266
+ }, {
+ "from" : 275,
+ "to" : 267
+ }, {
+ "from" : 275,
+ "to" : 268
+ }, {
+ "from" : 275,
+ "to" : 269
+ }, {
+ "from" : 275,
+ "to" : 270
+ }, {
+ "from" : 275,
+ "to" : 271
+ }, {
+ "from" : 275,
+ "to" : 274
+ }, {
+ "from" : 277,
+ "to" : 276
+ }, {
+ "from" : 278,
+ "to" : 186
+ }, {
+ "from" : 278,
+ "to" : 275
+ }, {
+ "from" : 278,
+ "to" : 277
+ }, {
+ "from" : 279,
+ "to" : 108
+ }, {
+ "from" : 279,
+ "to" : 126
+ }, {
+ "from" : 279,
+ "to" : 146
+ }, {
+ "from" : 279,
+ "to" : 225
+ }, {
+ "from" : 279,
+ "to" : 226
+ }, {
+ "from" : 279,
+ "to" : 237
+ }, {
+ "from" : 279,
+ "to" : 239
+ }, {
+ "from" : 279,
+ "to" : 238
+ }, {
+ "from" : 279,
+ "to" : 240
+ }, {
+ "from" : 279,
+ "to" : 245
+ }, {
+ "from" : 279,
+ "to" : 246
+ }, {
+ "from" : 279,
+ "to" : 247
+ }, {
+ "from" : 279,
+ "to" : 248
+ }, {
+ "from" : 279,
+ "to" : 249
+ }, {
+ "from" : 279,
+ "to" : 250
+ }, {
+ "from" : 279,
+ "to" : 252
+ }, {
+ "from" : 279,
+ "to" : 256
+ }, {
+ "from" : 279,
+ "to" : 257
+ }, {
+ "from" : 279,
+ "to" : 258
+ }, {
+ "from" : 279,
+ "to" : 259
+ }, {
+ "from" : 279,
+ "to" : 263
+ }, {
+ "from" : 279,
+ "to" : 275
+ }, {
+ "from" : 279,
+ "to" : 274
+ }, {
+ "from" : 279,
+ "to" : 278
+ }, {
+ "from" : 280,
+ "to" : 242
+ }, {
+ "from" : 281,
+ "to" : 280
+ }, {
+ "from" : 283,
+ "to" : 281
+ }, {
+ "from" : 283,
+ "to" : 282
+ }, {
+ "from" : 286,
+ "to" : 201
+ }, {
+ "from" : 286,
+ "to" : 272
+ }, {
+ "from" : 286,
+ "to" : 283
+ }, {
+ "from" : 286,
+ "to" : 284
+ }, {
+ "from" : 286,
+ "to" : 285
+ }, {
+ "from" : 289,
+ "to" : 157
+ }, {
+ "from" : 289,
+ "to" : 288
+ }, {
+ "from" : 290,
+ "to" : 95
+ }, {
+ "from" : 293,
+ "to" : 292
+ }, {
+ "from" : 294,
+ "to" : 76
+ }, {
+ "from" : 294,
+ "to" : 289
+ }, {
+ "from" : 294,
+ "to" : 291
+ }, {
+ "from" : 294,
+ "to" : 293
+ }, {
+ "from" : 296,
+ "to" : 295
+ }, {
+ "from" : 297,
+ "to" : 164
+ }, {
+ "from" : 297,
+ "to" : 175
+ }, {
+ "from" : 297,
+ "to" : 295
+ }, {
+ "from" : 297,
+ "to" : 296
+ }, {
+ "from" : 298,
+ "to" : 289
+ }, {
+ "from" : 298,
+ "to" : 290
+ }, {
+ "from" : 298,
+ "to" : 294
+ }, {
+ "from" : 298,
+ "to" : 297
+ }, {
+ "from" : 301,
+ "to" : 283
+ }, {
+ "from" : 302,
+ "to" : 290
+ }, {
+ "from" : 302,
+ "to" : 300
+ }, {
+ "from" : 302,
+ "to" : 301
+ }, {
+ "from" : 305,
+ "to" : 304
+ }, {
+ "from" : 306,
+ "to" : 125
+ }, {
+ "from" : 307,
+ "to" : 303
+ }, {
+ "from" : 307,
+ "to" : 305
+ }, {
+ "from" : 307,
+ "to" : 306
+ }, {
+ "from" : 308,
+ "to" : 175
+ }, {
+ "from" : 308,
+ "to" : 307
+ }, {
+ "from" : 309,
+ "to" : 5
+ }, {
+ "from" : 309,
+ "to" : 140
+ }, {
+ "from" : 309,
+ "to" : 143
+ }, {
+ "from" : 309,
+ "to" : 142
+ }, {
+ "from" : 309,
+ "to" : 144
+ }, {
+ "from" : 309,
+ "to" : 145
+ }, {
+ "from" : 312,
+ "to" : 311
+ }, {
+ "from" : 313,
+ "to" : 312
+ }, {
+ "from" : 314,
+ "to" : 313
+ }, {
+ "from" : 317,
+ "to" : 315
+ }, {
+ "from" : 317,
+ "to" : 316
+ }, {
+ "from" : 319,
+ "to" : 316
+ }, {
+ "from" : 319,
+ "to" : 318
+ }, {
+ "from" : 320,
+ "to" : 317
+ }, {
+ "from" : 320,
+ "to" : 319
+ }, {
+ "from" : 323,
+ "to" : 104
+ }, {
+ "from" : 323,
+ "to" : 321
+ }, {
+ "from" : 323,
+ "to" : 322
+ }, {
+ "from" : 324,
+ "to" : 315
+ }, {
+ "from" : 324,
+ "to" : 316
+ }, {
+ "from" : 324,
+ "to" : 319
+ }, {
+ "from" : 326,
+ "to" : 323
+ }, {
+ "from" : 326,
+ "to" : 324
+ }, {
+ "from" : 326,
+ "to" : 325
+ }, {
+ "from" : 334,
+ "to" : 332
+ }, {
+ "from" : 334,
+ "to" : 333
+ }, {
+ "from" : 335,
+ "to" : 329
+ }, {
+ "from" : 335,
+ "to" : 330
+ }, {
+ "from" : 335,
+ "to" : 331
+ }, {
+ "from" : 335,
+ "to" : 334
+ }, {
+ "from" : 337,
+ "to" : 336
+ }, {
+ "from" : 338,
+ "to" : 95
+ }, {
+ "from" : 338,
+ "to" : 327
+ }, {
+ "from" : 338,
+ "to" : 328
+ }, {
+ "from" : 338,
+ "to" : 335
+ }, {
+ "from" : 338,
+ "to" : 337
+ }, {
+ "from" : 340,
+ "to" : 323
+ }, {
+ "from" : 341,
+ "to" : 323
+ }, {
+ "from" : 342,
+ "to" : 323
+ }, {
+ "from" : 344,
+ "to" : 114
+ }, {
+ "from" : 344,
+ "to" : 323
+ }, {
+ "from" : 344,
+ "to" : 343
+ }, {
+ "from" : 345,
+ "to" : 323
+ }, {
+ "from" : 345,
+ "to" : 344
+ }, {
+ "from" : 346,
+ "to" : 323
+ }, {
+ "from" : 348,
+ "to" : 114
+ }, {
+ "from" : 348,
+ "to" : 128
+ }, {
+ "from" : 348,
+ "to" : 326
+ }, {
+ "from" : 348,
+ "to" : 323
+ }, {
+ "from" : 348,
+ "to" : 339
+ }, {
+ "from" : 348,
+ "to" : 342
+ }, {
+ "from" : 348,
+ "to" : 343
+ }, {
+ "from" : 348,
+ "to" : 345
+ }, {
+ "from" : 348,
+ "to" : 346
+ }, {
+ "from" : 348,
+ "to" : 347
+ }, {
+ "from" : 349,
+ "to" : 104
+ }, {
+ "from" : 349,
+ "to" : 323
+ }, {
+ "from" : 349,
+ "to" : 339
+ }, {
+ "from" : 349,
+ "to" : 340
+ }, {
+ "from" : 349,
+ "to" : 341
+ }, {
+ "from" : 349,
+ "to" : 342
+ }, {
+ "from" : 349,
+ "to" : 344
+ }, {
+ "from" : 349,
+ "to" : 348
+ }, {
+ "from" : 350,
+ "to" : 323
+ }, {
+ "from" : 350,
+ "to" : 344
+ }, {
+ "from" : 350,
+ "to" : 348
+ }, {
+ "from" : 353,
+ "to" : 95
+ }, {
+ "from" : 353,
+ "to" : 114
+ }, {
+ "from" : 353,
+ "to" : 128
+ }, {
+ "from" : 353,
+ "to" : 299
+ }, {
+ "from" : 353,
+ "to" : 320
+ }, {
+ "from" : 353,
+ "to" : 326
+ }, {
+ "from" : 353,
+ "to" : 323
+ }, {
+ "from" : 353,
+ "to" : 338
+ }, {
+ "from" : 353,
+ "to" : 349
+ }, {
+ "from" : 353,
+ "to" : 344
+ }, {
+ "from" : 353,
+ "to" : 343
+ }, {
+ "from" : 353,
+ "to" : 348
+ }, {
+ "from" : 353,
+ "to" : 350
+ }, {
+ "from" : 353,
+ "to" : 351
+ }, {
+ "from" : 353,
+ "to" : 352
+ }, {
+ "from" : 354,
+ "to" : 95
+ }, {
+ "from" : 354,
+ "to" : 287
+ }, {
+ "from" : 354,
+ "to" : 310
+ }, {
+ "from" : 354,
+ "to" : 353
+ }, {
+ "from" : 358,
+ "to" : 356
+ }, {
+ "from" : 358,
+ "to" : 357
+ }, {
+ "from" : 359,
+ "to" : 358
+ }, {
+ "from" : 360,
+ "to" : 146
+ }, {
+ "from" : 362,
+ "to" : 307
+ }, {
+ "from" : 362,
+ "to" : 310
+ }, {
+ "from" : 362,
+ "to" : 355
+ }, {
+ "from" : 362,
+ "to" : 359
+ }, {
+ "from" : 362,
+ "to" : 360
+ }, {
+ "from" : 362,
+ "to" : 361
+ }, {
+ "from" : 363,
+ "to" : 309
+ }, {
+ "from" : 364,
+ "to" : 171
+ }, {
+ "from" : 364,
+ "to" : 290
+ }, {
+ "from" : 364,
+ "to" : 310
+ }, {
+ "from" : 366,
+ "to" : 128
+ }, {
+ "from" : 366,
+ "to" : 310
+ }, {
+ "from" : 366,
+ "to" : 365
+ }, {
+ "from" : 368,
+ "to" : 364
+ }, {
+ "from" : 368,
+ "to" : 367
+ }, {
+ "from" : 370,
+ "to" : 369
+ }, {
+ "from" : 371,
+ "to" : 370
+ }, {
+ "from" : 373,
+ "to" : 175
+ }, {
+ "from" : 373,
+ "to" : 290
+ }, {
+ "from" : 373,
+ "to" : 308
+ }, {
+ "from" : 373,
+ "to" : 306
+ }, {
+ "from" : 373,
+ "to" : 360
+ }, {
+ "from" : 373,
+ "to" : 372
+ }, {
+ "from" : 374,
+ "to" : 5
+ }, {
+ "from" : 374,
+ "to" : 287
+ }, {
+ "from" : 374,
+ "to" : 309
+ }, {
+ "from" : 376,
+ "to" : 169
+ }, {
+ "from" : 376,
+ "to" : 195
+ }, {
+ "from" : 376,
+ "to" : 194
+ }, {
+ "from" : 377,
+ "to" : 195
+ }, {
+ "from" : 377,
+ "to" : 194
+ }, {
+ "from" : 377,
+ "to" : 376
+ }, {
+ "from" : 378,
+ "to" : 272
+ }, {
+ "from" : 378,
+ "to" : 273
+ }, {
+ "from" : 379,
+ "to" : 195
+ }, {
+ "from" : 379,
+ "to" : 266
+ }, {
+ "from" : 379,
+ "to" : 267
+ }, {
+ "from" : 379,
+ "to" : 268
+ }, {
+ "from" : 379,
+ "to" : 269
+ }, {
+ "from" : 379,
+ "to" : 270
+ }, {
+ "from" : 379,
+ "to" : 271
+ }, {
+ "from" : 379,
+ "to" : 273
+ }, {
+ "from" : 379,
+ "to" : 283
+ }, {
+ "from" : 379,
+ "to" : 377
+ }, {
+ "from" : 379,
+ "to" : 378
+ }, {
+ "from" : 380,
+ "to" : 175
+ }, {
+ "from" : 380,
+ "to" : 201
+ }, {
+ "from" : 380,
+ "to" : 273
+ }, {
+ "from" : 380,
+ "to" : 286
+ }, {
+ "from" : 380,
+ "to" : 283
+ }, {
+ "from" : 380,
+ "to" : 285
+ }, {
+ "from" : 380,
+ "to" : 287
+ }, {
+ "from" : 380,
+ "to" : 298
+ }, {
+ "from" : 380,
+ "to" : 290
+ }, {
+ "from" : 380,
+ "to" : 299
+ }, {
+ "from" : 380,
+ "to" : 302
+ }, {
+ "from" : 380,
+ "to" : 308
+ }, {
+ "from" : 380,
+ "to" : 309
+ }, {
+ "from" : 380,
+ "to" : 310
+ }, {
+ "from" : 380,
+ "to" : 314
+ }, {
+ "from" : 380,
+ "to" : 354
+ }, {
+ "from" : 380,
+ "to" : 362
+ }, {
+ "from" : 380,
+ "to" : 359
+ }, {
+ "from" : 380,
+ "to" : 363
+ }, {
+ "from" : 380,
+ "to" : 364
+ }, {
+ "from" : 380,
+ "to" : 366
+ }, {
+ "from" : 380,
+ "to" : 368
+ }, {
+ "from" : 380,
+ "to" : 370
+ }, {
+ "from" : 380,
+ "to" : 371
+ }, {
+ "from" : 380,
+ "to" : 373
+ }, {
+ "from" : 380,
+ "to" : 374
+ }, {
+ "from" : 380,
+ "to" : 375
+ }, {
+ "from" : 380,
+ "to" : 379
+ } ]
+ }
+ }
+ }
+ },
+ "scanner" : {
+ "start_time" : "2023-07-20T08:17:40.920682642Z",
+ "end_time" : "2023-07-20T08:25:36.656118957Z",
+ "environment" : {},
+ "config" : {},
+ "provenances" : [ {
+ "id" : "NPM::acorn:7.4.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/acornjs/acorn.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "88c2669600a6d33134755fb91ff8ab9cd9ebc284"
+ }
+ }, {
+ "id" : "NPM::acorn-jsx:5.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/acornjs/acorn-jsx.git",
+ "revision" : "f5c107b85872230d5016dbb97d71788575cda9c3",
+ "path" : ""
+ },
+ "resolved_revision" : "f5c107b85872230d5016dbb97d71788575cda9c3"
+ }
+ }, {
+ "id" : "NPM::aggregate-error:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/aggregate-error.git",
+ "revision" : "d5bb4ac02a43f005ec7ad45f6e62919d7ebed0e5",
+ "path" : ""
+ },
+ "resolved_revision" : "d5bb4ac02a43f005ec7ad45f6e62919d7ebed0e5"
+ }
+ }, {
+ "id" : "NPM::ajv:6.12.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ajv-validator/ajv.git",
+ "revision" : "fe591439f34e24030f69df9eb8d91e6d037a3af7",
+ "path" : ""
+ },
+ "resolved_revision" : "fe591439f34e24030f69df9eb8d91e6d037a3af7"
+ },
+ "sub_repositories" : {
+ "spec/JSON-Schema-Test-Suite" : {
+ "type" : "Git",
+ "url" : "https://github.com/json-schema/JSON-Schema-Test-Suite.git",
+ "revision" : "eadeacb04209a18fc81f1a1959e83eef72dcc97a",
+ "path" : ""
+ }
+ }
+ }, {
+ "id" : "NPM::ansi-colors:3.2.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/doowb/ansi-colors.git",
+ "revision" : "d2a3fcdcd6babdd8c9429fa9277a858e2fc97e3b",
+ "path" : ""
+ },
+ "resolved_revision" : "d2a3fcdcd6babdd8c9429fa9277a858e2fc97e3b"
+ }
+ }, {
+ "id" : "NPM::ansi-escapes:4.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/ansi-escapes.git",
+ "revision" : "ca9d5f8eb6ecfcf6ef2d8764a056d865e68bf178",
+ "path" : ""
+ },
+ "resolved_revision" : "ca9d5f8eb6ecfcf6ef2d8764a056d865e68bf178"
+ }
+ }, {
+ "id" : "NPM::ansi-regex:3.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "f545bdb80048f527889eddb9ac1a851c6f2a2241",
+ "path" : ""
+ },
+ "resolved_revision" : "f545bdb80048f527889eddb9ac1a851c6f2a2241"
+ }
+ }, {
+ "id" : "NPM::ansi-regex:4.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "64735d25eb839b55bc9fae3877edb702b4c92ca2",
+ "path" : ""
+ },
+ "resolved_revision" : "64735d25eb839b55bc9fae3877edb702b4c92ca2"
+ }
+ }, {
+ "id" : "NPM::ansi-regex:5.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "a9babce885cf19c363cf1d1c645f834592c3f7a4",
+ "path" : ""
+ },
+ "resolved_revision" : "a9babce885cf19c363cf1d1c645f834592c3f7a4"
+ }
+ }, {
+ "id" : "NPM::ansi-styles:3.2.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-styles.git",
+ "revision" : "de7527a86c1cf49906b0eb32a0de1402d849ccc2",
+ "path" : ""
+ },
+ "resolved_revision" : "de7527a86c1cf49906b0eb32a0de1402d849ccc2"
+ }
+ }, {
+ "id" : "NPM::ansi-styles:4.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-styles.git",
+ "revision" : "2d02d5bd070f733179007f0904eb5fb41090395a",
+ "path" : ""
+ },
+ "resolved_revision" : "2d02d5bd070f733179007f0904eb5fb41090395a"
+ }
+ }, {
+ "id" : "NPM::anymatch:3.1.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/anymatch.git",
+ "revision" : "cbd278e43710eaf325d2061fa11aefd127c509be",
+ "path" : ""
+ },
+ "resolved_revision" : "cbd278e43710eaf325d2061fa11aefd127c509be"
+ }
+ }, {
+ "id" : "NPM::append-transform:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/append-transform.git",
+ "revision" : "3c2618eb953a5de61099452f2b4764a1e1d10674",
+ "path" : ""
+ },
+ "resolved_revision" : "3c2618eb953a5de61099452f2b4764a1e1d10674"
+ }
+ }, {
+ "id" : "NPM::archy:1.0.0",
+ "package_provenance" : {
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
+ "hash" : {
+ "value" : "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40",
+ "algorithm" : "SHA-1"
+ }
+ }
+ }
+ }, {
+ "id" : "NPM::argparse:1.0.10",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/argparse.git",
+ "revision" : "ea45e14bad13b9e4a10af28f11fb7e731079ab72",
+ "path" : ""
+ },
+ "resolved_revision" : "ea45e14bad13b9e4a10af28f11fb7e731079ab72"
+ }
+ }, {
+ "id" : "NPM::array-includes:3.1.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/array-includes.git",
+ "revision" : "4b1922ef553490e4b28008f5d0b0b629122fb04b",
+ "path" : ""
+ },
+ "resolved_revision" : "4b1922ef553490e4b28008f5d0b0b629122fb04b"
+ }
+ }, {
+ "id" : "NPM::array.prototype.flat:1.3.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Array.prototype.flat.git",
+ "revision" : "bf9db3ed1c011dc501be343f7d4fd03c87945aee",
+ "path" : ""
+ },
+ "resolved_revision" : "bf9db3ed1c011dc501be343f7d4fd03c87945aee"
+ }
+ }, {
+ "id" : "NPM::array.prototype.reduce:1.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Array.prototype.reduce.git",
+ "revision" : "9721175338f7085d7c76f73d2c827a44d1307b89",
+ "path" : ""
+ },
+ "resolved_revision" : "9721175338f7085d7c76f73d2c827a44d1307b89"
+ }
+ }, {
+ "id" : "NPM::astral-regex:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/astral-regex.git",
+ "revision" : "20d5f406d37af3697145eb415355a89fdd4a2279",
+ "path" : ""
+ },
+ "resolved_revision" : "20d5f406d37af3697145eb415355a89fdd4a2279"
+ }
+ }, {
+ "id" : "NPM::available-typed-arrays:1.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/available-typed-arrays.git",
+ "revision" : "d0f3cb979af4322acaa149e08ae58fd4faed3715",
+ "path" : ""
+ },
+ "resolved_revision" : "d0f3cb979af4322acaa149e08ae58fd4faed3715"
+ }
+ }, {
+ "id" : "NPM::balanced-match:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/balanced-match.git",
+ "revision" : "c7412e09b95d6ad97fd1e2996f6adca7626a9ae8",
+ "path" : ""
+ },
+ "resolved_revision" : "c7412e09b95d6ad97fd1e2996f6adca7626a9ae8"
+ }
+ }, {
+ "id" : "NPM::binary-extensions:2.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/binary-extensions.git",
+ "revision" : "40e44b510d87a63dcf42300bc8fbcb105f45a61c",
+ "path" : ""
+ },
+ "resolved_revision" : "40e44b510d87a63dcf42300bc8fbcb105f45a61c"
+ }
+ }, {
+ "id" : "NPM::brace-expansion:1.1.11",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/brace-expansion.git",
+ "revision" : "01a21de7441549d26ac0c0a9ff91385d16e5c21c",
+ "path" : ""
+ },
+ "resolved_revision" : "01a21de7441549d26ac0c0a9ff91385d16e5c21c"
+ }
+ }, {
+ "id" : "NPM::braces:3.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/braces.git",
+ "revision" : "25791512d219b284bd62bb068cae85d8e68bd05b",
+ "path" : ""
+ },
+ "resolved_revision" : "25791512d219b284bd62bb068cae85d8e68bd05b"
+ }
+ }, {
+ "id" : "NPM::browser-stdout:1.3.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/kumavis/browser-stdout.git",
+ "revision" : "456b7f33c2d535fc88cf732d1a0e2d48a7600a1b",
+ "path" : ""
+ },
+ "resolved_revision" : "456b7f33c2d535fc88cf732d1a0e2d48a7600a1b"
+ }
+ }, {
+ "id" : "NPM::browserslist:4.21.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/browserslist.git",
+ "revision" : "fc5fc088c640466df62a6b6c86154b19be3de821",
+ "path" : ""
+ },
+ "resolved_revision" : "fc5fc088c640466df62a6b6c86154b19be3de821"
+ }
+ }, {
+ "id" : "NPM::caching-transform:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/caching-transform.git",
+ "revision" : "961cc0dab59f4327795446eb41e700c067d0b87d",
+ "path" : ""
+ },
+ "resolved_revision" : "961cc0dab59f4327795446eb41e700c067d0b87d"
+ }
+ }, {
+ "id" : "NPM::call-bind:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/call-bind.git",
+ "revision" : "42b3cbfb095850822acd2352ec2a8cd0f7f58dd0",
+ "path" : ""
+ },
+ "resolved_revision" : "42b3cbfb095850822acd2352ec2a8cd0f7f58dd0"
+ }
+ }, {
+ "id" : "NPM::callsites:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/callsites.git",
+ "revision" : "f89815af2e0255094283c86977f1e679a8fb411b",
+ "path" : ""
+ },
+ "resolved_revision" : "f89815af2e0255094283c86977f1e679a8fb411b"
+ }
+ }, {
+ "id" : "NPM::camelcase:5.3.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/camelcase.git",
+ "revision" : "cbe5a519ec6745adbb5283d5ee8c5c9889050d74",
+ "path" : ""
+ },
+ "resolved_revision" : "cbe5a519ec6745adbb5283d5ee8c5c9889050d74"
+ }
+ }, {
+ "id" : "NPM::caniuse-lite:1.0.30001450",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/caniuse-lite.git",
+ "revision" : "01cc73e61eecf5ac219d65554e973f9b9f088216",
+ "path" : ""
+ },
+ "resolved_revision" : "01cc73e61eecf5ac219d65554e973f9b9f088216"
+ }
+ }, {
+ "id" : "NPM::chalk:2.4.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/chalk.git",
+ "revision" : "9776a2ae5b5b1712ccf16416b55f47e575a81fb9",
+ "path" : ""
+ },
+ "resolved_revision" : "9776a2ae5b5b1712ccf16416b55f47e575a81fb9"
+ }
+ }, {
+ "id" : "NPM::chalk:4.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/chalk.git",
+ "revision" : "95d74cbe8d3df3674dec1445a4608d3288d8b73c",
+ "path" : ""
+ },
+ "resolved_revision" : "95d74cbe8d3df3674dec1445a4608d3288d8b73c"
+ }
+ }, {
+ "id" : "NPM::chardet:0.7.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/runk/node-chardet.git",
+ "revision" : "5156e3063ae8e8ba7f0d599378d024a4f403993c",
+ "path" : ""
+ },
+ "resolved_revision" : "5156e3063ae8e8ba7f0d599378d024a4f403993c"
+ }
+ }, {
+ "id" : "NPM::chokidar:3.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/paulmillr/chokidar.git",
+ "revision" : "ccf759aac9af8a484924aeacd1e1a5280f508a75",
+ "path" : ""
+ },
+ "resolved_revision" : "ccf759aac9af8a484924aeacd1e1a5280f508a75"
+ }
+ }, {
+ "id" : "NPM::clean-stack:2.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/clean-stack.git",
+ "revision" : "91440c5a1615354fb9419354650937c434eb9f49",
+ "path" : ""
+ },
+ "resolved_revision" : "91440c5a1615354fb9419354650937c434eb9f49"
+ }
+ }, {
+ "id" : "NPM::cli-cursor:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/cli-cursor.git",
+ "revision" : "49edacfb841a9dac691972c2aa5d40dba8e0b56b",
+ "path" : ""
+ },
+ "resolved_revision" : "49edacfb841a9dac691972c2aa5d40dba8e0b56b"
+ }
+ }, {
+ "id" : "NPM::cli-width:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/knownasilya/cli-width.git",
+ "revision" : "c96cf6e8b9a02256ded31e412490e29dbad30603",
+ "path" : ""
+ },
+ "resolved_revision" : "c96cf6e8b9a02256ded31e412490e29dbad30603"
+ }
+ }, {
+ "id" : "NPM::cliui:5.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/cliui.git",
+ "revision" : "e49b32f3358d0269663f80d4e2a81c9936af3ba9",
+ "path" : ""
+ },
+ "resolved_revision" : "e49b32f3358d0269663f80d4e2a81c9936af3ba9"
+ }
+ }, {
+ "id" : "NPM::cliui:6.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/cliui.git",
+ "revision" : "7761da3e8cddd1f49024252a6b0195a94565b357",
+ "path" : ""
+ },
+ "resolved_revision" : "7761da3e8cddd1f49024252a6b0195a94565b357"
+ }
+ }, {
+ "id" : "NPM::color-convert:1.9.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Qix-/color-convert.git",
+ "revision" : "99dc5da127d3d17d0ff8d13a995fd2d6aab404aa",
+ "path" : ""
+ },
+ "resolved_revision" : "99dc5da127d3d17d0ff8d13a995fd2d6aab404aa"
+ }
+ }, {
+ "id" : "NPM::color-convert:2.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Qix-/color-convert.git",
+ "revision" : "e1cb7846258e1d7aa25873814684d4fbbbca53ed",
+ "path" : ""
+ },
+ "resolved_revision" : "e1cb7846258e1d7aa25873814684d4fbbbca53ed"
+ }
+ }, {
+ "id" : "NPM::color-name:1.1.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/dfcreative/color-name.git",
+ "revision" : "cb7d4629b00fe38564f741a0779f6ad84d8007a2",
+ "path" : ""
+ },
+ "resolved_revision" : "cb7d4629b00fe38564f741a0779f6ad84d8007a2"
+ }
+ }, {
+ "id" : "NPM::color-name:1.1.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/colorjs/color-name.git",
+ "revision" : "4536ce5944f56659a2dfb2198eaf81b5ad5f2ad9",
+ "path" : ""
+ },
+ "resolved_revision" : "4536ce5944f56659a2dfb2198eaf81b5ad5f2ad9"
+ }
+ }, {
+ "id" : "NPM::commondir:1.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-commondir.git",
+ "revision" : "57797b60db24c60029f7593995241749b1704902",
+ "path" : ""
+ },
+ "resolved_revision" : "57797b60db24c60029f7593995241749b1704902"
+ }
+ }, {
+ "id" : "NPM::concat-map:0.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-concat-map.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "0be8682c13068fde1caf1d75c201069d91260bcd"
+ }
+ }, {
+ "id" : "NPM::contains-path:0.1.0",
+ "package_provenance" : {
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
+ "hash" : {
+ "value" : "fe8cf184ff6670b6baef01a9d4861a5cbec4120a",
+ "algorithm" : "SHA-1"
+ }
+ }
+ }
+ }, {
+ "id" : "NPM::convert-source-map:1.9.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/thlorenz/convert-source-map.git",
+ "revision" : "46c2b78aa56d25a77d3ea237051aeb5d9e7f750c",
+ "path" : ""
+ },
+ "resolved_revision" : "46c2b78aa56d25a77d3ea237051aeb5d9e7f750c"
+ }
+ }, {
+ "id" : "NPM::cross-spawn:6.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/moxystudio/node-cross-spawn.git",
+ "revision" : "301187a05b7509aa1d6ff35d8ff6d6064f597bc9",
+ "path" : ""
+ },
+ "resolved_revision" : "301187a05b7509aa1d6ff35d8ff6d6064f597bc9"
+ }
+ }, {
+ "id" : "NPM::cross-spawn:7.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/moxystudio/node-cross-spawn.git",
+ "revision" : "7bc42bc409d9da6ad691df8d1d5ef69003bf1dc3",
+ "path" : ""
+ },
+ "resolved_revision" : "7bc42bc409d9da6ad691df8d1d5ef69003bf1dc3"
+ }
+ }, {
+ "id" : "NPM::debug:2.6.9",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/debug.git",
+ "revision" : "13abeae468fea297d0dccc50bc55590809241083",
+ "path" : ""
+ },
+ "resolved_revision" : "13abeae468fea297d0dccc50bc55590809241083"
+ }
+ }, {
+ "id" : "NPM::debug:3.2.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/debug.git",
+ "revision" : "a7a17c9955460435592de2a4d3c722e9b32047a8",
+ "path" : ""
+ },
+ "resolved_revision" : "a7a17c9955460435592de2a4d3c722e9b32047a8"
+ }
+ }, {
+ "id" : "NPM::debug:3.2.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/debug.git",
+ "revision" : "338326076faaf6d230090903de97f459c4bccabc",
+ "path" : ""
+ },
+ "resolved_revision" : "338326076faaf6d230090903de97f459c4bccabc"
+ }
+ }, {
+ "id" : "NPM::debug:4.3.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/debug-js/debug.git",
+ "revision" : "da66c86c5fd71ef570f36b5b1edfa4472149f1bc",
+ "path" : ""
+ },
+ "resolved_revision" : "da66c86c5fd71ef570f36b5b1edfa4472149f1bc"
+ }
+ }, {
+ "id" : "NPM::decamelize:1.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/decamelize.git",
+ "revision" : "95980ab6fb44c40eaca7792bdf93aff7c210c805",
+ "path" : ""
+ },
+ "resolved_revision" : "95980ab6fb44c40eaca7792bdf93aff7c210c805"
+ }
+ }, {
+ "id" : "NPM::deep-is:0.1.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/thlorenz/deep-is.git",
+ "revision" : "2f94b606a8be7df8c5c1c536cce4e32f5eeef1e1",
+ "path" : ""
+ },
+ "resolved_revision" : "2f94b606a8be7df8c5c1c536cce4e32f5eeef1e1"
+ }
+ }, {
+ "id" : "NPM::default-require-extensions:3.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/avajs/default-require-extensions.git",
+ "revision" : "409345923c4a4d1c751b3dec37ec750ee0b1a8f1",
+ "path" : ""
+ },
+ "resolved_revision" : "409345923c4a4d1c751b3dec37ec750ee0b1a8f1"
+ }
+ }, {
+ "id" : "NPM::define-properties:1.1.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/define-properties.git",
+ "revision" : "08fa234e22964a179aad624bed13eca44ad8c6b4",
+ "path" : ""
+ },
+ "resolved_revision" : "08fa234e22964a179aad624bed13eca44ad8c6b4"
+ }
+ }, {
+ "id" : "NPM::diff:3.5.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kpdecker/jsdiff.git",
+ "revision" : "e9ab94893a77f1f7d7ea8483b873083e6c6a390a",
+ "path" : ""
+ },
+ "resolved_revision" : "e9ab94893a77f1f7d7ea8483b873083e6c6a390a"
+ }
+ }, {
+ "id" : "NPM::doctrine:1.5.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/doctrine.git",
+ "revision" : "dcd631feb5dd5bcd0899dd35548da2752ea2263e",
+ "path" : ""
+ },
+ "resolved_revision" : "dcd631feb5dd5bcd0899dd35548da2752ea2263e"
+ }
+ }, {
+ "id" : "NPM::doctrine:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/doctrine.git",
+ "revision" : "42434ca1f85b264a88afcfd317487a7417e6004b",
+ "path" : ""
+ },
+ "resolved_revision" : "42434ca1f85b264a88afcfd317487a7417e6004b"
+ }
+ }, {
+ "id" : "NPM::electron-to-chromium:1.4.284",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kilian/electron-to-chromium.git",
+ "revision" : "107f7d7bd48c0128618554f95cfc101709597c63",
+ "path" : ""
+ },
+ "resolved_revision" : "107f7d7bd48c0128618554f95cfc101709597c63"
+ }
+ }, {
+ "id" : "NPM::emoji-regex:7.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "3cbaf44e18f4996464ce97f1484ef425bbe8864a",
+ "path" : ""
+ },
+ "resolved_revision" : "3cbaf44e18f4996464ce97f1484ef425bbe8864a"
+ }
+ }, {
+ "id" : "NPM::emoji-regex:8.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "a9f2e514523d4c0931974aff5059052da10c52c5",
+ "path" : ""
+ },
+ "resolved_revision" : "a9f2e514523d4c0931974aff5059052da10c52c5"
+ }
+ }, {
+ "id" : "NPM::error-ex:1.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/qix-/node-error-ex.git",
+ "revision" : "3953ebb9e4a33287e67676a70a8ad72bbbe38075",
+ "path" : ""
+ },
+ "resolved_revision" : "3953ebb9e4a33287e67676a70a8ad72bbbe38075"
+ }
+ }, {
+ "id" : "NPM::es-abstract:1.21.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-abstract.git",
+ "revision" : "b3fc2d4f7af5dd9a22811e423cf19360f7d4da6d",
+ "path" : ""
+ },
+ "resolved_revision" : "b3fc2d4f7af5dd9a22811e423cf19360f7d4da6d"
+ }
+ }, {
+ "id" : "NPM::es-array-method-boxes-properly:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-array-method-boxes-properly.git",
+ "revision" : "3eaba7ec973da0af31aaae4ac40c720d486d24f9",
+ "path" : ""
+ },
+ "resolved_revision" : "3eaba7ec973da0af31aaae4ac40c720d486d24f9"
+ }
+ }, {
+ "id" : "NPM::es-set-tostringtag:2.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/es-set-tostringtag.git",
+ "revision" : "3cb0d8ae33b2982c8244648a412f9af70a720bb2",
+ "path" : ""
+ },
+ "resolved_revision" : "3cb0d8ae33b2982c8244648a412f9af70a720bb2"
+ }
+ }, {
+ "id" : "NPM::es-shim-unscopables:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-shim-unscopables.git",
+ "revision" : "4927833211c6ca86d5a892b979b6804f1edc4c71",
+ "path" : ""
+ },
+ "resolved_revision" : "4927833211c6ca86d5a892b979b6804f1edc4c71"
+ }
+ }, {
+ "id" : "NPM::es-to-primitive:1.2.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-to-primitive.git",
+ "revision" : "fc864b766689e70707a0b86a136b0ec0021e4d17",
+ "path" : ""
+ },
+ "resolved_revision" : "fc864b766689e70707a0b86a136b0ec0021e4d17"
+ }
+ }, {
+ "id" : "NPM::es6-error:4.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/bjyoungblood/es6-error.git",
+ "revision" : "5b553293429bac6b15d8caeab8a4174faeb38fa0",
+ "path" : ""
+ },
+ "resolved_revision" : "5b553293429bac6b15d8caeab8a4174faeb38fa0"
+ }
+ }, {
+ "id" : "NPM::escalade:3.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lukeed/escalade.git",
+ "revision" : "2477005062cdbd8407afc90d3f48f4930354252b",
+ "path" : ""
+ },
+ "resolved_revision" : "2477005062cdbd8407afc90d3f48f4930354252b"
+ }
+ }, {
+ "id" : "NPM::escape-string-regexp:1.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/escape-string-regexp.git",
+ "revision" : "db124a3e1aae9d692c4899e42a5c6c3e329eaa20",
+ "path" : ""
+ },
+ "resolved_revision" : "db124a3e1aae9d692c4899e42a5c6c3e329eaa20"
+ }
+ }, {
+ "id" : "NPM::eslint:6.8.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint.git",
+ "revision" : "9738f8cc864d769988ccf42bb70f524444df1349",
+ "path" : ""
+ },
+ "resolved_revision" : "9738f8cc864d769988ccf42bb70f524444df1349"
+ }
+ }, {
+ "id" : "NPM::eslint-config-standard:14.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/standard/eslint-config-standard.git",
+ "revision" : "d1dacfc552850080e6b397a0237c6a9396b88aa1",
+ "path" : ""
+ },
+ "resolved_revision" : "d1dacfc552850080e6b397a0237c6a9396b88aa1"
+ }
+ }, {
+ "id" : "NPM::eslint-import-resolver-node:0.3.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "74e2a9562c010aa0f875c83c644e929600fa64c8",
+ "path" : ""
+ },
+ "resolved_revision" : "74e2a9562c010aa0f875c83c644e929600fa64c8"
+ }
+ }, {
+ "id" : "NPM::eslint-module-utils:2.7.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "d85bc4414cf3516e9ba96aa83eab919e8bd01979",
+ "path" : ""
+ },
+ "resolved_revision" : "d85bc4414cf3516e9ba96aa83eab919e8bd01979"
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-es:3.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-plugin-es.git",
+ "revision" : "d86abb11c0c10fc1695cc5545ef5ab4f1b78581a",
+ "path" : ""
+ },
+ "resolved_revision" : "d86abb11c0c10fc1695cc5545ef5ab4f1b78581a"
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-import:2.19.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/benmosher/eslint-plugin-import.git",
+ "revision" : "bc3b034b59a034b4aa47b8a9e74f48fe0e14e997",
+ "path" : ""
+ },
+ "resolved_revision" : "bc3b034b59a034b4aa47b8a9e74f48fe0e14e997"
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-node:11.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-plugin-node.git",
+ "revision" : "b8f99452c0e1a808af7aa349d417dca0837e3a67",
+ "path" : ""
+ },
+ "resolved_revision" : "b8f99452c0e1a808af7aa349d417dca0837e3a67"
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-promise:4.2.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/xjamundx/eslint-plugin-promise.git",
+ "revision" : "5b935bdd3c3760a2e58eea9b89c86b6d3243e321",
+ "path" : ""
+ },
+ "resolved_revision" : "5b935bdd3c3760a2e58eea9b89c86b6d3243e321"
+ }
+ }, {
+ "id" : "NPM::eslint-plugin-standard:4.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/standard/eslint-plugin-standard.git",
+ "revision" : "116eb98b8cd26a04edcfa758e9513a9422f35b5e",
+ "path" : ""
+ },
+ "resolved_revision" : "116eb98b8cd26a04edcfa758e9513a9422f35b5e"
+ }
+ }, {
+ "id" : "NPM::eslint-scope:5.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint-scope.git",
+ "revision" : "8a7a21cce3a4bf17753d588f6444742235566a92",
+ "path" : ""
+ },
+ "resolved_revision" : "8a7a21cce3a4bf17753d588f6444742235566a92"
+ }
+ }, {
+ "id" : "NPM::eslint-utils:1.4.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23f4ddc58eda5e6aec3d6a43c6266acbe19345cd",
+ "path" : ""
+ },
+ "resolved_revision" : "23f4ddc58eda5e6aec3d6a43c6266acbe19345cd"
+ }
+ }, {
+ "id" : "NPM::eslint-utils:2.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23709f84c8e21f1a38f61ad689c82a8763e0737f",
+ "path" : ""
+ },
+ "resolved_revision" : "23709f84c8e21f1a38f61ad689c82a8763e0737f"
+ }
+ }, {
+ "id" : "NPM::eslint-visitor-keys:1.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint-visitor-keys.git",
+ "revision" : "80a3ee826297902d8fb777706670622536889eaf",
+ "path" : ""
+ },
+ "resolved_revision" : "80a3ee826297902d8fb777706670622536889eaf"
+ }
+ }, {
+ "id" : "NPM::espree:6.2.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/espree.git",
+ "revision" : "6b7d0b8100537dcd5c84a7fb17bbe28edcabe05d",
+ "path" : ""
+ },
+ "resolved_revision" : "6b7d0b8100537dcd5c84a7fb17bbe28edcabe05d"
+ }
+ }, {
+ "id" : "NPM::esprima:4.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jquery/esprima.git",
+ "revision" : "0ed4b8afdf2abd416f738977672c6232836f410a",
+ "path" : ""
+ },
+ "resolved_revision" : "0ed4b8afdf2abd416f738977672c6232836f410a"
+ }
+ }, {
+ "id" : "NPM::esquery:1.4.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/estools/esquery.git",
+ "revision" : "7c3800a4b2ff5c7b3eb3b2cf742865b7c908981f",
+ "path" : ""
+ },
+ "resolved_revision" : "7c3800a4b2ff5c7b3eb3b2cf742865b7c908981f"
+ }
+ }, {
+ "id" : "NPM::esrecurse:4.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/estools/esrecurse.git",
+ "revision" : "8ceb63797813d9ac69572a671b95cf58ffdf35b6",
+ "path" : ""
+ },
+ "resolved_revision" : "8ceb63797813d9ac69572a671b95cf58ffdf35b6"
+ }
+ }, {
+ "id" : "NPM::estraverse:4.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/estools/estraverse.git",
+ "revision" : "54d608c4ce0eb36d9bade685edcc3177e90e9f3c",
+ "path" : ""
+ },
+ "resolved_revision" : "54d608c4ce0eb36d9bade685edcc3177e90e9f3c"
+ }
+ }, {
+ "id" : "NPM::estraverse:5.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/estools/estraverse.git",
+ "revision" : "ec3f900528eac270a51f7b079edeae086e7ebce4",
+ "path" : ""
+ },
+ "resolved_revision" : "ec3f900528eac270a51f7b079edeae086e7ebce4"
+ }
+ }, {
+ "id" : "NPM::esutils:2.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/estools/esutils.git",
+ "revision" : "8c2741c0154723fb92da137a0c97845b03b0943a",
+ "path" : ""
+ },
+ "resolved_revision" : "8c2741c0154723fb92da137a0c97845b03b0943a"
+ }
+ }, {
+ "id" : "NPM::external-editor:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mrkmg/node-external-editor.git",
+ "revision" : "3069d69f023f7e46ab06a01791d256655ccf634e",
+ "path" : ""
+ },
+ "resolved_revision" : "3069d69f023f7e46ab06a01791d256655ccf634e"
+ }
+ }, {
+ "id" : "NPM::fast-deep-equal:3.1.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/fast-deep-equal.git",
+ "revision" : "d807ffc5013e710deb1c63d463a03f729bcd144d",
+ "path" : ""
+ },
+ "resolved_revision" : "d807ffc5013e710deb1c63d463a03f729bcd144d"
+ }
+ }, {
+ "id" : "NPM::fast-json-stable-stringify:2.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/fast-json-stable-stringify.git",
+ "revision" : "b3ab8bdfb91cb182c93475c2c3518d6224672bb4",
+ "path" : ""
+ },
+ "resolved_revision" : "b3ab8bdfb91cb182c93475c2c3518d6224672bb4"
+ }
+ }, {
+ "id" : "NPM::fast-levenshtein:2.0.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/hiddentao/fast-levenshtein.git",
+ "revision" : "5bffe7151f99fb02f319f70a004e653105a760fb",
+ "path" : ""
+ },
+ "resolved_revision" : "5bffe7151f99fb02f319f70a004e653105a760fb"
+ }
+ }, {
+ "id" : "NPM::figures:3.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/figures.git",
+ "revision" : "add96242a5467efdcca234433a21da6554df6410",
+ "path" : ""
+ },
+ "resolved_revision" : "add96242a5467efdcca234433a21da6554df6410"
+ }
+ }, {
+ "id" : "NPM::file-entry-cache:5.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/royriojas/file-entry-cache.git",
+ "revision" : "03f700c99b76133dc14648b465a1550ec2930e5c",
+ "path" : ""
+ },
+ "resolved_revision" : "03f700c99b76133dc14648b465a1550ec2930e5c"
+ }
+ }, {
+ "id" : "NPM::fill-range:7.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/fill-range.git",
+ "revision" : "39f421b499d5c97b62e955c179fa34c062aab2a5",
+ "path" : ""
+ },
+ "resolved_revision" : "39f421b499d5c97b62e955c179fa34c062aab2a5"
+ }
+ }, {
+ "id" : "NPM::find-cache-dir:3.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/avajs/find-cache-dir.git",
+ "revision" : "21ae9442c2188b5c6f2a22219af779a2476e77a0",
+ "path" : ""
+ },
+ "resolved_revision" : "21ae9442c2188b5c6f2a22219af779a2476e77a0"
+ }
+ }, {
+ "id" : "NPM::find-up:2.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "10202fb1621f0c277d5d5eeaf01c1c32b008fbef",
+ "path" : ""
+ },
+ "resolved_revision" : "10202fb1621f0c277d5d5eeaf01c1c32b008fbef"
+ }
+ }, {
+ "id" : "NPM::find-up:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "2319b79a9e728fc13fc1a1a15e84bf5df100719e",
+ "path" : ""
+ },
+ "resolved_revision" : "2319b79a9e728fc13fc1a1a15e84bf5df100719e"
+ }
+ }, {
+ "id" : "NPM::find-up:4.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "6c32f0caed1684ef778053b6f79b13a772e22ba4",
+ "path" : ""
+ },
+ "resolved_revision" : "6c32f0caed1684ef778053b6f79b13a772e22ba4"
+ }
+ }, {
+ "id" : "NPM::flat:4.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/hughsk/flat.git",
+ "revision" : "d2ed12bea2bce66254b3d013e5a1cfc73b77c71e",
+ "path" : ""
+ },
+ "resolved_revision" : "d2ed12bea2bce66254b3d013e5a1cfc73b77c71e"
+ }
+ }, {
+ "id" : "NPM::flat-cache:2.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/royriojas/flat-cache.git",
+ "revision" : "9e95cdca746ccc5c066d277f1edde9c9b9f95348",
+ "path" : ""
+ },
+ "resolved_revision" : "9e95cdca746ccc5c066d277f1edde9c9b9f95348"
+ }
+ }, {
+ "id" : "NPM::flatted:2.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/WebReflection/flatted.git",
+ "revision" : "5e3ec39a3e613e70c56f3775c790ddebdbc363a6",
+ "path" : ""
+ },
+ "resolved_revision" : "5e3ec39a3e613e70c56f3775c790ddebdbc363a6"
+ }
+ }, {
+ "id" : "NPM::for-each:0.3.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Raynos/for-each.git",
+ "revision" : "7adaf8162a12d55f6ea3fb0bf5e999035dfd303a",
+ "path" : ""
+ },
+ "resolved_revision" : "7adaf8162a12d55f6ea3fb0bf5e999035dfd303a"
+ }
+ }, {
+ "id" : "NPM::foreground-child:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tapjs/foreground-child.git",
+ "revision" : "efba8bb6d7607b5c3b0d3e3897c73727577c8b45",
+ "path" : ""
+ },
+ "resolved_revision" : "efba8bb6d7607b5c3b0d3e3897c73727577c8b45"
+ }
+ }, {
+ "id" : "NPM::fromentries:1.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/fromentries.git",
+ "revision" : "31c73f61eeed912788f15c1bc9abc3ef71650185",
+ "path" : ""
+ },
+ "resolved_revision" : "31c73f61eeed912788f15c1bc9abc3ef71650185"
+ }
+ }, {
+ "id" : "NPM::fs.realpath:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/fs.realpath.git",
+ "revision" : "03e7c884431fe185dfebbc9b771aeca339c1807a",
+ "path" : ""
+ },
+ "resolved_revision" : "03e7c884431fe185dfebbc9b771aeca339c1807a"
+ }
+ }, {
+ "id" : "NPM::function-bind:1.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Raynos/function-bind.git",
+ "revision" : "1213f807066d1cb8d39a0592d5118f4b1f03de4a",
+ "path" : ""
+ },
+ "resolved_revision" : "1213f807066d1cb8d39a0592d5118f4b1f03de4a"
+ }
+ }, {
+ "id" : "NPM::function.prototype.name:1.1.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Function.prototype.name.git",
+ "revision" : "1753ed2a9aa6558e6c4971b85f05bbaf7a371d22",
+ "path" : ""
+ },
+ "resolved_revision" : "1753ed2a9aa6558e6c4971b85f05bbaf7a371d22"
+ }
+ }, {
+ "id" : "NPM::functional-red-black-tree:1.0.1",
+ "package_provenance" : {
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
+ "hash" : {
+ "value" : "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327",
+ "algorithm" : "SHA-1"
+ }
+ }
+ }
+ }, {
+ "id" : "NPM::functions-have-names:1.2.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/functions-have-names.git",
+ "revision" : "3ac881daaf2066bff7c422fd606271f4976efa8f",
+ "path" : ""
+ },
+ "resolved_revision" : "3ac881daaf2066bff7c422fd606271f4976efa8f"
+ }
+ }, {
+ "id" : "NPM::gensync:1.0.0-beta.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/loganfsmyth/gensync.git",
+ "revision" : "a182868db47da283a1a044cb15bfd388697a632f",
+ "path" : ""
+ },
+ "resolved_revision" : "a182868db47da283a1a044cb15bfd388697a632f"
+ }
+ }, {
+ "id" : "NPM::get-caller-file:2.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/stefanpenner/get-caller-file.git",
+ "revision" : "2383bf9e98ed3c568ff69d7586cf59c0f1dcb9d3",
+ "path" : ""
+ },
+ "resolved_revision" : "2383bf9e98ed3c568ff69d7586cf59c0f1dcb9d3"
+ }
+ }, {
+ "id" : "NPM::get-intrinsic:1.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/get-intrinsic.git",
+ "revision" : "0b60d7ac9d93e8824a36ddd52635be1fc13758d1",
+ "path" : ""
+ },
+ "resolved_revision" : "0b60d7ac9d93e8824a36ddd52635be1fc13758d1"
+ }
+ }, {
+ "id" : "NPM::get-package-type:0.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/get-package-type.git",
+ "revision" : "53f035a197b349125e43f60c8b8896664daf3942",
+ "path" : ""
+ },
+ "resolved_revision" : "53f035a197b349125e43f60c8b8896664daf3942"
+ }
+ }, {
+ "id" : "NPM::get-symbol-description:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/get-symbol-description.git",
+ "revision" : "6579bf3c250bc1cf12fec4900956ac7f08f34a41",
+ "path" : ""
+ },
+ "resolved_revision" : "6579bf3c250bc1cf12fec4900956ac7f08f34a41"
+ }
+ }, {
+ "id" : "NPM::glob:7.1.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-glob.git",
+ "revision" : "8882c8fccabbe459465e73cc2581e121a5fdd25b",
+ "path" : ""
+ },
+ "resolved_revision" : "8882c8fccabbe459465e73cc2581e121a5fdd25b"
+ }
+ }, {
+ "id" : "NPM::glob:7.2.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-glob.git",
+ "revision" : "c3cd57ae128faa0e9190492acc743bb779ac4054",
+ "path" : ""
+ },
+ "resolved_revision" : "c3cd57ae128faa0e9190492acc743bb779ac4054"
+ }
+ }, {
+ "id" : "NPM::glob-parent:5.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gulpjs/glob-parent.git",
+ "revision" : "eb2c439de448c779b450472e591a2bc9e37e9668",
+ "path" : ""
+ },
+ "resolved_revision" : "eb2c439de448c779b450472e591a2bc9e37e9668"
+ }
+ }, {
+ "id" : "NPM::globals:11.12.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/globals.git",
+ "revision" : "6bf39e6d2aaf5b107a840fd18f29be45760f2749",
+ "path" : ""
+ },
+ "resolved_revision" : "6bf39e6d2aaf5b107a840fd18f29be45760f2749"
+ }
+ }, {
+ "id" : "NPM::globals:12.4.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/globals.git",
+ "revision" : "92bbb85fc797e03465fbf6e69fb881be4f07e23d",
+ "path" : ""
+ },
+ "resolved_revision" : "92bbb85fc797e03465fbf6e69fb881be4f07e23d"
+ }
+ }, {
+ "id" : "NPM::globalthis:1.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/System.global.git",
+ "revision" : "8bc4bb4c715f89390fe083f2e2ed277474775972",
+ "path" : ""
+ },
+ "resolved_revision" : "8bc4bb4c715f89390fe083f2e2ed277474775972"
+ }
+ }, {
+ "id" : "NPM::gopd:1.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/gopd.git",
+ "revision" : "e3236ba6cdee15eef18be63dcc46045c035d4429",
+ "path" : ""
+ },
+ "resolved_revision" : "e3236ba6cdee15eef18be63dcc46045c035d4429"
+ }
+ }, {
+ "id" : "NPM::graceful-fs:4.2.10",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-graceful-fs.git",
+ "revision" : "1f19b0b467e4144260b397343cd60f37c5bdcfda",
+ "path" : ""
+ },
+ "resolved_revision" : "1f19b0b467e4144260b397343cd60f37c5bdcfda"
+ }
+ }, {
+ "id" : "NPM::growl:1.10.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tj/node-growl.git",
+ "revision" : "95393c8da0d8bab06522a5eb36658a639c24a621",
+ "path" : ""
+ },
+ "resolved_revision" : "95393c8da0d8bab06522a5eb36658a639c24a621"
+ }
+ }, {
+ "id" : "NPM::has:1.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tarruda/has.git",
+ "revision" : "4edf96f2dec87ad6b6e68482e8f6d7c8eb7e07e6",
+ "path" : ""
+ },
+ "resolved_revision" : "4edf96f2dec87ad6b6e68482e8f6d7c8eb7e07e6"
+ }
+ }, {
+ "id" : "NPM::has-bigints:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/has-bigints.git",
+ "revision" : "6aa1ab523edade31d6c558d57d34204639318633",
+ "path" : ""
+ },
+ "resolved_revision" : "6aa1ab523edade31d6c558d57d34204639318633"
+ }
+ }, {
+ "id" : "NPM::has-flag:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/has-flag.git",
+ "revision" : "8b2ca7e693b2c742b29f2399194077b64b9ff781",
+ "path" : ""
+ },
+ "resolved_revision" : "8b2ca7e693b2c742b29f2399194077b64b9ff781"
+ }
+ }, {
+ "id" : "NPM::has-flag:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/has-flag.git",
+ "revision" : "474aa39afca7333d356c022fc5be4d31732bbba3",
+ "path" : ""
+ },
+ "resolved_revision" : "474aa39afca7333d356c022fc5be4d31732bbba3"
+ }
+ }, {
+ "id" : "NPM::has-property-descriptors:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-property-descriptors.git",
+ "revision" : "3771c8b4f20e963d3a64b101b3233c20791c32ae",
+ "path" : ""
+ },
+ "resolved_revision" : "3771c8b4f20e963d3a64b101b3233c20791c32ae"
+ }
+ }, {
+ "id" : "NPM::has-proto:1.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-proto.git",
+ "revision" : "21f977f068b3e59597576c32f13b4a4ec899adbf",
+ "path" : ""
+ },
+ "resolved_revision" : "21f977f068b3e59597576c32f13b4a4ec899adbf"
+ }
+ }, {
+ "id" : "NPM::has-symbols:1.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-symbols.git",
+ "revision" : "444dc14d035df9891743a28cbc5d6ecdb0cb3b01",
+ "path" : ""
+ },
+ "resolved_revision" : "444dc14d035df9891743a28cbc5d6ecdb0cb3b01"
+ }
+ }, {
+ "id" : "NPM::has-tostringtag:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-tostringtag.git",
+ "revision" : "011dfc074077ece0eaa7aa740bb4d50623dec774",
+ "path" : ""
+ },
+ "resolved_revision" : "011dfc074077ece0eaa7aa740bb4d50623dec774"
+ }
+ }, {
+ "id" : "NPM::hasha:5.2.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/hasha.git",
+ "revision" : "6e9d961913bd446167b23007e76bd00ef470736c",
+ "path" : ""
+ },
+ "resolved_revision" : "6e9d961913bd446167b23007e76bd00ef470736c"
+ }
+ }, {
+ "id" : "NPM::he:1.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/he.git",
+ "revision" : "36afe179392226cf1b6ccdb16ebbb7a5a844d93a",
+ "path" : ""
+ },
+ "resolved_revision" : "36afe179392226cf1b6ccdb16ebbb7a5a844d93a"
+ }
+ }, {
+ "id" : "NPM::hosted-git-info:2.8.9",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/hosted-git-info.git",
+ "revision" : "8d4b3697d79bcd89cdb36d1db165e3696c783a01",
+ "path" : ""
+ },
+ "resolved_revision" : "8d4b3697d79bcd89cdb36d1db165e3696c783a01"
+ }
+ }, {
+ "id" : "NPM::html-escaper:2.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/WebReflection/html-escaper.git",
+ "revision" : "88f420ad94369f9be46c24ca52eb77e3da224f37",
+ "path" : ""
+ },
+ "resolved_revision" : "88f420ad94369f9be46c24ca52eb77e3da224f37"
+ }
+ }, {
+ "id" : "NPM::iconv-lite:0.4.24",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ashtuchkin/iconv-lite.git",
+ "revision" : "efbbb0937ca8dda1c14e0b69958b9d6f20771f7a",
+ "path" : ""
+ },
+ "resolved_revision" : "efbbb0937ca8dda1c14e0b69958b9d6f20771f7a"
+ }
+ }, {
+ "id" : "NPM::ignore:4.0.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/kaelzhang/node-ignore.git",
+ "revision" : "56976cef6d5ec0e5651910801669f9aa3daa8120",
+ "path" : ""
+ },
+ "resolved_revision" : "56976cef6d5ec0e5651910801669f9aa3daa8120"
+ }
+ }, {
+ "id" : "NPM::ignore:5.2.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/kaelzhang/node-ignore.git",
+ "revision" : "45a5a9f4e033a8b21b9caa9e27e0e821379ecc60",
+ "path" : ""
+ },
+ "resolved_revision" : "45a5a9f4e033a8b21b9caa9e27e0e821379ecc60"
+ }
+ }, {
+ "id" : "NPM::import-fresh:3.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/import-fresh.git",
+ "revision" : "f1dddc06da4f1cdfb44a3aaba1f2c353c00dea02",
+ "path" : ""
+ },
+ "resolved_revision" : "f1dddc06da4f1cdfb44a3aaba1f2c353c00dea02"
+ }
+ }, {
+ "id" : "NPM::imurmurhash:0.1.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jensyt/imurmurhash-js.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "9f40361c7e2835a9b7b8eaa1cbab2a9f94ee22a2"
+ }
+ }, {
+ "id" : "NPM::indent-string:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/indent-string.git",
+ "revision" : "99280aa24669a3fab303bb231d6caafd7d5029d3",
+ "path" : ""
+ },
+ "resolved_revision" : "99280aa24669a3fab303bb231d6caafd7d5029d3"
+ }
+ }, {
+ "id" : "NPM::inflight:1.0.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/inflight.git",
+ "revision" : "a547881738c8f57b27795e584071d67cf6ac1a57",
+ "path" : ""
+ },
+ "resolved_revision" : "a547881738c8f57b27795e584071d67cf6ac1a57"
+ }
+ }, {
+ "id" : "NPM::inherits:2.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/inherits.git",
+ "revision" : "9a2c29400c6d491e0b7beefe0c32efa3b462545d",
+ "path" : ""
+ },
+ "resolved_revision" : "9a2c29400c6d491e0b7beefe0c32efa3b462545d"
+ }
+ }, {
+ "id" : "NPM::inquirer:7.3.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/SBoudrias/Inquirer.js.git",
+ "revision" : "808d5538531c1ca1c34f832d77bc98dfd0ba4000",
+ "path" : ""
+ },
+ "resolved_revision" : "808d5538531c1ca1c34f832d77bc98dfd0ba4000"
+ }
+ }, {
+ "id" : "NPM::internal-slot:1.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/internal-slot.git",
+ "revision" : "36eb820fff0dd696f966ab9ed597ddabdd401b3c",
+ "path" : ""
+ },
+ "resolved_revision" : "36eb820fff0dd696f966ab9ed597ddabdd401b3c"
+ }
+ }, {
+ "id" : "NPM::is-array-buffer:3.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-array-buffer.git",
+ "revision" : "1ac0ffe4f48f86e9cb1777bdb972d1bc47bf3225",
+ "path" : ""
+ },
+ "resolved_revision" : "1ac0ffe4f48f86e9cb1777bdb972d1bc47bf3225"
+ }
+ }, {
+ "id" : "NPM::is-arrayish:0.2.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/qix-/node-is-arrayish.git",
+ "revision" : "53f22aa6ce557d7d31a3d1152a590a2df220df9d",
+ "path" : ""
+ },
+ "resolved_revision" : "53f22aa6ce557d7d31a3d1152a590a2df220df9d"
+ }
+ }, {
+ "id" : "NPM::is-bigint:1.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-bigint.git",
+ "revision" : "726750ea98291eaf3ac6aae247f638eb3a94d343",
+ "path" : ""
+ },
+ "resolved_revision" : "726750ea98291eaf3ac6aae247f638eb3a94d343"
+ }
+ }, {
+ "id" : "NPM::is-binary-path:2.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-binary-path.git",
+ "revision" : "efe99d8b3d0ef825925e8b986d047e39bee173c3",
+ "path" : ""
+ },
+ "resolved_revision" : "efe99d8b3d0ef825925e8b986d047e39bee173c3"
+ }
+ }, {
+ "id" : "NPM::is-boolean-object:1.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-boolean-object.git",
+ "revision" : "586b4a72c8d6973e5416610a2eaca65c1fb6da3d",
+ "path" : ""
+ },
+ "resolved_revision" : "586b4a72c8d6973e5416610a2eaca65c1fb6da3d"
+ }
+ }, {
+ "id" : "NPM::is-buffer:2.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/is-buffer.git",
+ "revision" : "ec4bf3415108e8971375e6717ad63dde752faebf",
+ "path" : ""
+ },
+ "resolved_revision" : "ec4bf3415108e8971375e6717ad63dde752faebf"
+ }
+ }, {
+ "id" : "NPM::is-callable:1.2.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-callable.git",
+ "revision" : "f23584dd25c26473e702e80a5e8e7e79e2a89aee",
+ "path" : ""
+ },
+ "resolved_revision" : "f23584dd25c26473e702e80a5e8e7e79e2a89aee"
+ }
+ }, {
+ "id" : "NPM::is-core-module:2.11.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-core-module.git",
+ "revision" : "12cfb2d3bcefc3de19264b3a39208d29f5432516",
+ "path" : ""
+ },
+ "resolved_revision" : "12cfb2d3bcefc3de19264b3a39208d29f5432516"
+ }
+ }, {
+ "id" : "NPM::is-date-object:1.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-date-object.git",
+ "revision" : "61eab012a36b7b5141f7e7dd09a6cdd11008668f",
+ "path" : ""
+ },
+ "resolved_revision" : "61eab012a36b7b5141f7e7dd09a6cdd11008668f"
+ }
+ }, {
+ "id" : "NPM::is-extglob:2.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-extglob.git",
+ "revision" : "10a74787acbe79abf02141c5d487950d1b197b15",
+ "path" : ""
+ },
+ "resolved_revision" : "10a74787acbe79abf02141c5d487950d1b197b15"
+ }
+ }, {
+ "id" : "NPM::is-fullwidth-code-point:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "e94a78056056c5546f2bf4c4cf812a2163a46dae",
+ "path" : ""
+ },
+ "resolved_revision" : "e94a78056056c5546f2bf4c4cf812a2163a46dae"
+ }
+ }, {
+ "id" : "NPM::is-fullwidth-code-point:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "80e5e314d86e5f76bd1b0573aa9d33e615a372db",
+ "path" : ""
+ },
+ "resolved_revision" : "80e5e314d86e5f76bd1b0573aa9d33e615a372db"
+ }
+ }, {
+ "id" : "NPM::is-glob:4.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/is-glob.git",
+ "revision" : "627ca7e552c69e8d62d620b4715a2658267b3d17",
+ "path" : ""
+ },
+ "resolved_revision" : "627ca7e552c69e8d62d620b4715a2658267b3d17"
+ }
+ }, {
+ "id" : "NPM::is-negative-zero:2.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-negative-zero.git",
+ "revision" : "360cdcc36d5194992f0dae68a624c02d2c945a94",
+ "path" : ""
+ },
+ "resolved_revision" : "360cdcc36d5194992f0dae68a624c02d2c945a94"
+ }
+ }, {
+ "id" : "NPM::is-number:7.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-number.git",
+ "revision" : "98e8ff1da1a89f93d1397a24d7413ed15421c139",
+ "path" : ""
+ },
+ "resolved_revision" : "98e8ff1da1a89f93d1397a24d7413ed15421c139"
+ }
+ }, {
+ "id" : "NPM::is-number-object:1.0.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-number-object.git",
+ "revision" : "50c53ae827537cd9d951c87e9e6286339575d402",
+ "path" : ""
+ },
+ "resolved_revision" : "50c53ae827537cd9d951c87e9e6286339575d402"
+ }
+ }, {
+ "id" : "NPM::is-regex:1.1.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-regex.git",
+ "revision" : "13598e3491ac8f05d257d339cbf8bae0bb049a0d",
+ "path" : ""
+ },
+ "resolved_revision" : "13598e3491ac8f05d257d339cbf8bae0bb049a0d"
+ }
+ }, {
+ "id" : "NPM::is-shared-array-buffer:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-shared-array-buffer.git",
+ "revision" : "0a8c0a3a53fa882f24f4e378b8c9ed30af35e0e4",
+ "path" : ""
+ },
+ "resolved_revision" : "0a8c0a3a53fa882f24f4e378b8c9ed30af35e0e4"
+ }
+ }, {
+ "id" : "NPM::is-stream:2.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-stream.git",
+ "revision" : "fb8caed475b4107cee3c22be3252a904020eb2d4",
+ "path" : ""
+ },
+ "resolved_revision" : "fb8caed475b4107cee3c22be3252a904020eb2d4"
+ }
+ }, {
+ "id" : "NPM::is-string:1.0.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/is-string.git",
+ "revision" : "e8a5b6d659f59e744ae03b2557e0482cd69194b3",
+ "path" : ""
+ },
+ "resolved_revision" : "e8a5b6d659f59e744ae03b2557e0482cd69194b3"
+ }
+ }, {
+ "id" : "NPM::is-symbol:1.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-symbol.git",
+ "revision" : "962084d30f3a2a83dff90d59504d03b85ffa5c17",
+ "path" : ""
+ },
+ "resolved_revision" : "962084d30f3a2a83dff90d59504d03b85ffa5c17"
+ }
+ }, {
+ "id" : "NPM::is-typed-array:1.1.10",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-typed-array.git",
+ "revision" : "0f7c619d10400f28a6131ed2ef6352bfe22dc1a6",
+ "path" : ""
+ },
+ "resolved_revision" : "0f7c619d10400f28a6131ed2ef6352bfe22dc1a6"
+ }
+ }, {
+ "id" : "NPM::is-typedarray:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/hughsk/is-typedarray.git",
+ "revision" : "0617cfa871686cf541af62b144f130488f44f6fe",
+ "path" : ""
+ },
+ "resolved_revision" : "0617cfa871686cf541af62b144f130488f44f6fe"
+ }
+ }, {
+ "id" : "NPM::is-weakref:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-weakref.git",
+ "revision" : "f63853b41b499be00bc3d4b519a4c6e3844a467c",
+ "path" : ""
+ },
+ "resolved_revision" : "f63853b41b499be00bc3d4b519a4c6e3844a467c"
+ }
+ }, {
+ "id" : "NPM::is-windows:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-windows.git",
+ "revision" : "4dcfff4ed9e36ad761a1a24d3899c832382d7254",
+ "path" : ""
+ },
+ "resolved_revision" : "4dcfff4ed9e36ad761a1a24d3899c832382d7254"
+ }
+ }, {
+ "id" : "NPM::isarray:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/isarray.git",
+ "revision" : "2a23a281f369e9ae06394c0fb4d2381355a6ba33",
+ "path" : ""
+ },
+ "resolved_revision" : "2a23a281f369e9ae06394c0fb4d2381355a6ba33"
+ }
+ }, {
+ "id" : "NPM::isexe:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/isexe.git",
+ "revision" : "10f8be491aab2e158c7e20df64a7f90ab5b5475c",
+ "path" : ""
+ },
+ "resolved_revision" : "10f8be491aab2e158c7e20df64a7f90ab5b5475c"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-coverage:3.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-lib-coverage"
+ },
+ "resolved_revision" : "66bc39b3c7b301a4b4456101a9996f90b1638dc0"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-hook:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b",
+ "path" : "packages/istanbul-lib-hook"
+ },
+ "resolved_revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-instrument:4.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "2c6f0e24680d050503d404de0ebff53467fefbff",
+ "path" : "packages/istanbul-lib-instrument"
+ },
+ "resolved_revision" : "2c6f0e24680d050503d404de0ebff53467fefbff"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-processinfo:2.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/istanbul-lib-processinfo.git",
+ "revision" : "b9cd52cf6eb140cf3bff24ba5df34d5812845d66",
+ "path" : ""
+ },
+ "resolved_revision" : "b9cd52cf6eb140cf3bff24ba5df34d5812845d66"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-report:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b",
+ "path" : "packages/istanbul-lib-report"
+ },
+ "resolved_revision" : "5319df684b508ff6fb19fe8b9a6147a3c5924e4b"
+ }
+ }, {
+ "id" : "NPM::istanbul-lib-source-maps:4.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-lib-source-maps"
+ },
+ "resolved_revision" : "e7c28743ef5a97ee5ba0210cfe18d71e35fd8979"
+ }
+ }, {
+ "id" : "NPM::istanbul-reports:3.1.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/istanbuljs.git",
+ "revision" : "",
+ "path" : "packages/istanbul-reports"
+ },
+ "resolved_revision" : "7cea3b1b8916499398538be32aacf7c1181ef379"
+ }
+ }, {
+ "id" : "NPM::js-tokens:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lydell/js-tokens.git",
+ "revision" : "0eb6e9daee32160ab0fca979b6dc91a1991b720c",
+ "path" : ""
+ },
+ "resolved_revision" : "0eb6e9daee32160ab0fca979b6dc91a1991b720c"
+ }
+ }, {
+ "id" : "NPM::js-yaml:3.13.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/js-yaml.git",
+ "revision" : "665aadda42349dcae869f12040d9b10ef18d12da",
+ "path" : ""
+ },
+ "resolved_revision" : "665aadda42349dcae869f12040d9b10ef18d12da"
+ }
+ }, {
+ "id" : "NPM::js-yaml:3.14.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/js-yaml.git",
+ "revision" : "37caaad57dc37d350d9a4577a5da53f482bb2983",
+ "path" : ""
+ },
+ "resolved_revision" : "37caaad57dc37d350d9a4577a5da53f482bb2983"
+ }
+ }, {
+ "id" : "NPM::jsesc:2.5.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/jsesc.git",
+ "revision" : "5169a48f015437b7cdaffecaa10db52f155dace7",
+ "path" : ""
+ },
+ "resolved_revision" : "5169a48f015437b7cdaffecaa10db52f155dace7"
+ }
+ }, {
+ "id" : "NPM::json-schema-traverse:0.4.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/json-schema-traverse.git",
+ "revision" : "bc898eeee723833fc9d604523e00014350bcc4e1",
+ "path" : ""
+ },
+ "resolved_revision" : "bc898eeee723833fc9d604523e00014350bcc4e1"
+ }
+ }, {
+ "id" : "NPM::json-stable-stringify-without-jsonify:1.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/samn/json-stable-stringify.git",
+ "revision" : "c0b3c36d976c54e31a814c492cd1c2557a4d3758",
+ "path" : ""
+ },
+ "resolved_revision" : "c0b3c36d976c54e31a814c492cd1c2557a4d3758"
+ }
+ }, {
+ "id" : "NPM::json5:2.2.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/json5/json5.git",
+ "revision" : "c3a75242772a5026a49c4017a16d9b3543b62776",
+ "path" : ""
+ },
+ "resolved_revision" : "c3a75242772a5026a49c4017a16d9b3543b62776"
+ }
+ }, {
+ "id" : "NPM::levn:0.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/levn.git",
+ "revision" : "a92b9acf928282ba81134b4ae8e6a5f29e1f5e1e",
+ "path" : ""
+ },
+ "resolved_revision" : "a92b9acf928282ba81134b4ae8e6a5f29e1f5e1e"
+ }
+ }, {
+ "id" : "NPM::load-json-file:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/load-json-file.git",
+ "revision" : "49620f12bce627dc2459a08f5ef18cd2ff151eb2",
+ "path" : ""
+ },
+ "resolved_revision" : "49620f12bce627dc2459a08f5ef18cd2ff151eb2"
+ }
+ }, {
+ "id" : "NPM::locate-path:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "a30b86df0934329c66ff6a2be395db03d65478b8",
+ "path" : ""
+ },
+ "resolved_revision" : "a30b86df0934329c66ff6a2be395db03d65478b8"
+ }
+ }, {
+ "id" : "NPM::locate-path:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "d6f19ffa31544161ee94118963deb3b683418151",
+ "path" : ""
+ },
+ "resolved_revision" : "d6f19ffa31544161ee94118963deb3b683418151"
+ }
+ }, {
+ "id" : "NPM::locate-path:5.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "630c0bbd609055c1895089c715649e21000a1ab7",
+ "path" : ""
+ },
+ "resolved_revision" : "630c0bbd609055c1895089c715649e21000a1ab7"
+ }
+ }, {
+ "id" : "NPM::lodash:4.17.21",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lodash/lodash.git",
+ "revision" : "c6e281b878b315c7a10d90f9c2af4cdb112d9625",
+ "path" : ""
+ },
+ "resolved_revision" : "c6e281b878b315c7a10d90f9c2af4cdb112d9625"
+ }
+ }, {
+ "id" : "NPM::lodash.flattendeep:4.4.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lodash/lodash.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "e878559fb910f0e5e45d06c8a4d76021a4c9a5de"
+ }
+ }, {
+ "id" : "NPM::log-symbols:2.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/log-symbols.git",
+ "revision" : "029dbb35f81c0e8471a4fa1fcf014af416d3230d",
+ "path" : ""
+ },
+ "resolved_revision" : "029dbb35f81c0e8471a4fa1fcf014af416d3230d"
+ }
+ }, {
+ "id" : "NPM::lru-cache:5.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-lru-cache.git",
+ "revision" : "a71be6cd547d28b24d28957a15b10cd3eb34555a",
+ "path" : ""
+ },
+ "resolved_revision" : "a71be6cd547d28b24d28957a15b10cd3eb34555a"
+ }
+ }, {
+ "id" : "NPM::make-dir:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/make-dir.git",
+ "revision" : "6d029fe1f75f1a02fcdd7a67f34eadf0941a424f",
+ "path" : ""
+ },
+ "resolved_revision" : "6d029fe1f75f1a02fcdd7a67f34eadf0941a424f"
+ }
+ }, {
+ "id" : "NPM::mime-db:1.43.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-db.git",
+ "revision" : "c28146bfd5a10f3bc1da482e1751e7782817a60b",
+ "path" : ""
+ },
+ "resolved_revision" : "c28146bfd5a10f3bc1da482e1751e7782817a60b"
+ }
+ }, {
+ "id" : "NPM::mime-types:2.1.26",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-types.git",
+ "revision" : "73f9933bfa5247337b459240ec67ea6045cdec84",
+ "path" : ""
+ },
+ "resolved_revision" : "73f9933bfa5247337b459240ec67ea6045cdec84"
+ }
+ }, {
+ "id" : "NPM::mimic-fn:2.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/mimic-fn.git",
+ "revision" : "d29f5387f4c19814a042d03a780ff4481ceac5a3",
+ "path" : ""
+ },
+ "resolved_revision" : "d29f5387f4c19814a042d03a780ff4481ceac5a3"
+ }
+ }, {
+ "id" : "NPM::minimatch:3.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/minimatch.git",
+ "revision" : "e46989a323d5f0aa4781eff5e2e6e7aafa223321",
+ "path" : ""
+ },
+ "resolved_revision" : "e46989a323d5f0aa4781eff5e2e6e7aafa223321"
+ }
+ }, {
+ "id" : "NPM::minimatch:3.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/minimatch.git",
+ "revision" : "699c459443a6bd98f5b28197978f76e7f71467ac",
+ "path" : ""
+ },
+ "resolved_revision" : "699c459443a6bd98f5b28197978f76e7f71467ac"
+ }
+ }, {
+ "id" : "NPM::minimist:0.0.8",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/minimist.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "3754568bfd43a841d2d72d7fb54598635aea8fa4"
+ }
+ }, {
+ "id" : "NPM::minimist:1.2.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/minimistjs/minimist.git",
+ "revision" : "c590d75b741a12b5423e2b299f38a7f7c7d25a18",
+ "path" : ""
+ },
+ "resolved_revision" : "c590d75b741a12b5423e2b299f38a7f7c7d25a18"
+ }
+ }, {
+ "id" : "NPM::mkdirp:0.5.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-mkdirp.git",
+ "revision" : "d4eff0f06093aed4f387e88e9fc301cb76beedc7",
+ "path" : ""
+ },
+ "resolved_revision" : "d4eff0f06093aed4f387e88e9fc301cb76beedc7"
+ }
+ }, {
+ "id" : "NPM::mkdirp:0.5.6",
+ "package_provenance" : {
+ "source_artifact" : {
+ "url" : "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
+ "hash" : {
+ "value" : "7def03d2432dcae4ba1d611445c48396062255f6",
+ "algorithm" : "SHA-1"
+ }
+ }
+ }
+ }, {
+ "id" : "NPM::mocha:7.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mochajs/mocha.git",
+ "revision" : "69339a3e7710a790b106b922ce53fcb87772f689",
+ "path" : ""
+ },
+ "resolved_revision" : "69339a3e7710a790b106b922ce53fcb87772f689"
+ }
+ }, {
+ "id" : "NPM::ms:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/zeit/ms.git",
+ "revision" : "9b88d1568a52ec9bb67ecc8d2aa224fa38fd41f4",
+ "path" : ""
+ },
+ "resolved_revision" : "9b88d1568a52ec9bb67ecc8d2aa224fa38fd41f4"
+ }
+ }, {
+ "id" : "NPM::ms:2.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/zeit/ms.git",
+ "revision" : "fe0bae301a6c41f68a01595658a4f4f0dcba0e84",
+ "path" : ""
+ },
+ "resolved_revision" : "fe0bae301a6c41f68a01595658a4f4f0dcba0e84"
+ }
+ }, {
+ "id" : "NPM::ms:2.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/zeit/ms.git",
+ "revision" : "7920885eb232fbe7a5efdab956d3e7c507c92ddf",
+ "path" : ""
+ },
+ "resolved_revision" : "7920885eb232fbe7a5efdab956d3e7c507c92ddf"
+ }
+ }, {
+ "id" : "NPM::mute-stream:0.0.8",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/mute-stream.git",
+ "revision" : "aa4a4baeaff5eeec83b5717738a44642f6948a9f",
+ "path" : ""
+ },
+ "resolved_revision" : "aa4a4baeaff5eeec83b5717738a44642f6948a9f"
+ }
+ }, {
+ "id" : "NPM::natural-compare:1.4.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/litejs/natural-compare-lite.git",
+ "revision" : "eec83eee67cfac84d6db30cdd65363f155673770",
+ "path" : ""
+ },
+ "resolved_revision" : "eec83eee67cfac84d6db30cdd65363f155673770"
+ }
+ }, {
+ "id" : "NPM::nice-try:1.0.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/electerious/nice-try.git",
+ "revision" : "87013431e0877520763863f77dcb77dfd11eb2a9",
+ "path" : ""
+ },
+ "resolved_revision" : "87013431e0877520763863f77dcb77dfd11eb2a9"
+ }
+ }, {
+ "id" : "NPM::node-environment-flags:1.0.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/boneskull/node-environment-flags.git",
+ "revision" : "fbf451941e4721392c7c346de843514d7ad14a95",
+ "path" : ""
+ },
+ "resolved_revision" : "fbf451941e4721392c7c346de843514d7ad14a95"
+ }
+ }, {
+ "id" : "NPM::node-preload:0.2.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/node-preload.git",
+ "revision" : "f59d60cb94bafc4f4259d598ec26b543d293586d",
+ "path" : ""
+ },
+ "resolved_revision" : "f59d60cb94bafc4f4259d598ec26b543d293586d"
+ }
+ }, {
+ "id" : "NPM::node-releases:2.0.9",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chicoxyzzy/node-releases.git",
+ "revision" : "90b2db5f3f3f34d8a9ffd2599a493f0ba8f63d87",
+ "path" : ""
+ },
+ "resolved_revision" : "90b2db5f3f3f34d8a9ffd2599a493f0ba8f63d87"
+ }
+ }, {
+ "id" : "NPM::normalize-package-data:2.5.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/normalize-package-data.git",
+ "revision" : "dedb606de22fa4bdf21c3679dece5fd07b4a0b1a",
+ "path" : ""
+ },
+ "resolved_revision" : "dedb606de22fa4bdf21c3679dece5fd07b4a0b1a"
+ }
+ }, {
+ "id" : "NPM::normalize-path:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/normalize-path.git",
+ "revision" : "0979eb807a1725d83d5a996347d41067cf773d1f",
+ "path" : ""
+ },
+ "resolved_revision" : "0979eb807a1725d83d5a996347d41067cf773d1f"
+ }
+ }, {
+ "id" : "NPM::nyc:15.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/istanbuljs/nyc.git",
+ "revision" : "bebf4d68c6a2cb0c5fd66ba3513a8e68ad5a284f",
+ "path" : ""
+ },
+ "resolved_revision" : "bebf4d68c6a2cb0c5fd66ba3513a8e68ad5a284f"
+ }
+ }, {
+ "id" : "NPM::object-inspect:1.12.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/object-inspect.git",
+ "revision" : "8155d9e0721dcf8d2c07a3d262ae29f444f35e37",
+ "path" : ""
+ },
+ "resolved_revision" : "8155d9e0721dcf8d2c07a3d262ae29f444f35e37"
+ }
+ }, {
+ "id" : "NPM::object-keys:1.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object-keys.git",
+ "revision" : "ba2c1989270c7de969aa8498fc3b7c8e677806f3",
+ "path" : ""
+ },
+ "resolved_revision" : "ba2c1989270c7de969aa8498fc3b7c8e677806f3"
+ }
+ }, {
+ "id" : "NPM::object.assign:4.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object.assign.git",
+ "revision" : "5fd74aee40aba36e9a8eb0c329abd33a07b93164",
+ "path" : ""
+ },
+ "resolved_revision" : "5fd74aee40aba36e9a8eb0c329abd33a07b93164"
+ }
+ }, {
+ "id" : "NPM::object.assign:4.1.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object.assign.git",
+ "revision" : "025e374fb6436c378918e91b47049a7a043f4b5b",
+ "path" : ""
+ },
+ "resolved_revision" : "025e374fb6436c378918e91b47049a7a043f4b5b"
+ }
+ }, {
+ "id" : "NPM::object.getownpropertydescriptors:2.1.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/object.getownpropertydescriptors.git",
+ "revision" : "cb869d59e110d4044b3b06edc0ec11595be17653",
+ "path" : ""
+ },
+ "resolved_revision" : "cb869d59e110d4044b3b06edc0ec11595be17653"
+ }
+ }, {
+ "id" : "NPM::object.values:1.1.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Object.values.git",
+ "revision" : "da744e066168573d2b4b13b9d9bd4daa386786bf",
+ "path" : ""
+ },
+ "resolved_revision" : "da744e066168573d2b4b13b9d9bd4daa386786bf"
+ }
+ }, {
+ "id" : "NPM::once:1.4.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/once.git",
+ "revision" : "0e614d9f5a7e6f0305c625f6b581f6d80b33b8a6",
+ "path" : ""
+ },
+ "resolved_revision" : "0e614d9f5a7e6f0305c625f6b581f6d80b33b8a6"
+ }
+ }, {
+ "id" : "NPM::onetime:5.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/onetime.git",
+ "revision" : "4fa3c9a40798476514fec36a1720dc85b897cc04",
+ "path" : ""
+ },
+ "resolved_revision" : "4fa3c9a40798476514fec36a1720dc85b897cc04"
+ }
+ }, {
+ "id" : "NPM::optionator:0.8.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/optionator.git",
+ "revision" : "80318611b86ad28a38671f811d6c80bf564cdbda",
+ "path" : ""
+ },
+ "resolved_revision" : "80318611b86ad28a38671f811d6c80bf564cdbda"
+ }
+ }, {
+ "id" : "NPM::os-tmpdir:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/os-tmpdir.git",
+ "revision" : "1abf9cf5611b4be7377060ea67054b45cbf6813c",
+ "path" : ""
+ },
+ "resolved_revision" : "1abf9cf5611b4be7377060ea67054b45cbf6813c"
+ }
+ }, {
+ "id" : "NPM::p-limit:1.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-limit.git",
+ "revision" : "cf076d73844ebbfda8ae4e184fc436396998ecb2",
+ "path" : ""
+ },
+ "resolved_revision" : "cf076d73844ebbfda8ae4e184fc436396998ecb2"
+ }
+ }, {
+ "id" : "NPM::p-limit:2.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-limit.git",
+ "revision" : "a11f02bc5c04490b7c3de2663d866c211fb915ea",
+ "path" : ""
+ },
+ "resolved_revision" : "a11f02bc5c04490b7c3de2663d866c211fb915ea"
+ }
+ }, {
+ "id" : "NPM::p-locate:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "6300abb6451f04bbaa760f42844ec1c501d79120",
+ "path" : ""
+ },
+ "resolved_revision" : "6300abb6451f04bbaa760f42844ec1c501d79120"
+ }
+ }, {
+ "id" : "NPM::p-locate:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "d37f108c0b04779e307b4e7203981caa367bac57",
+ "path" : ""
+ },
+ "resolved_revision" : "d37f108c0b04779e307b4e7203981caa367bac57"
+ }
+ }, {
+ "id" : "NPM::p-locate:4.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "a650b26e49713a8cca58f669a7f8aef9b655554c",
+ "path" : ""
+ },
+ "resolved_revision" : "a650b26e49713a8cca58f669a7f8aef9b655554c"
+ }
+ }, {
+ "id" : "NPM::p-map:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-map.git",
+ "revision" : "a8c06732e440214da89c410fa8d0cd74e110868e",
+ "path" : ""
+ },
+ "resolved_revision" : "a8c06732e440214da89c410fa8d0cd74e110868e"
+ }
+ }, {
+ "id" : "NPM::p-try:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-try.git",
+ "revision" : "8a6f2c232b80e12c138714e553fc8dd6313604c2",
+ "path" : ""
+ },
+ "resolved_revision" : "8a6f2c232b80e12c138714e553fc8dd6313604c2"
+ }
+ }, {
+ "id" : "NPM::p-try:2.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-try.git",
+ "revision" : "e80e2e130b2d16807345be02aa03541e6e085952",
+ "path" : ""
+ },
+ "resolved_revision" : "e80e2e130b2d16807345be02aa03541e6e085952"
+ }
+ }, {
+ "id" : "NPM::package-hash:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/novemberborn/package-hash.git",
+ "revision" : "6afce110db308d4ed70dbdb5658fc4ec50522c86",
+ "path" : ""
+ },
+ "resolved_revision" : "6afce110db308d4ed70dbdb5658fc4ec50522c86"
+ }
+ }, {
+ "id" : "NPM::parent-module:1.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/parent-module.git",
+ "revision" : "48267d001c4d215ba21a701a6882dba30fb8d614",
+ "path" : ""
+ },
+ "resolved_revision" : "48267d001c4d215ba21a701a6882dba30fb8d614"
+ }
+ }, {
+ "id" : "NPM::parse-json:2.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/parse-json.git",
+ "revision" : "419b0cbb83e67af53f9fd3f7ff98605ea2020eb6",
+ "path" : ""
+ },
+ "resolved_revision" : "419b0cbb83e67af53f9fd3f7ff98605ea2020eb6"
+ }
+ }, {
+ "id" : "NPM::path-exists:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-exists.git",
+ "revision" : "4696c60a8b2b9ac61902aa9eab7cb326ab6005c8",
+ "path" : ""
+ },
+ "resolved_revision" : "4696c60a8b2b9ac61902aa9eab7cb326ab6005c8"
+ }
+ }, {
+ "id" : "NPM::path-exists:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-exists.git",
+ "revision" : "26b1adf80aa6761a7db35927a20cf59e0fd1a00d",
+ "path" : ""
+ },
+ "resolved_revision" : "26b1adf80aa6761a7db35927a20cf59e0fd1a00d"
+ }
+ }, {
+ "id" : "NPM::path-is-absolute:1.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-is-absolute.git",
+ "revision" : "edc91d348b21dac2ab65ea2fbec2868e2eff5eb6",
+ "path" : ""
+ },
+ "resolved_revision" : "edc91d348b21dac2ab65ea2fbec2868e2eff5eb6"
+ }
+ }, {
+ "id" : "NPM::path-key:2.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-key.git",
+ "revision" : "d60207f9ab9dc9e60d49c87faacf415a4946287c",
+ "path" : ""
+ },
+ "resolved_revision" : "d60207f9ab9dc9e60d49c87faacf415a4946287c"
+ }
+ }, {
+ "id" : "NPM::path-key:3.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-key.git",
+ "revision" : "caea269db3a5eb0c09c793f4be5435312971d2fa",
+ "path" : ""
+ },
+ "resolved_revision" : "caea269db3a5eb0c09c793f4be5435312971d2fa"
+ }
+ }, {
+ "id" : "NPM::path-parse:1.0.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jbgutierrez/path-parse.git",
+ "revision" : "9f1db2802ffbc572e6b447f66126697e33b0055e",
+ "path" : ""
+ },
+ "resolved_revision" : "9f1db2802ffbc572e6b447f66126697e33b0055e"
+ }
+ }, {
+ "id" : "NPM::path-type:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-type.git",
+ "revision" : "ef08bdbd35fa01342ef6d80f2e8eb8b9c2cccc30",
+ "path" : ""
+ },
+ "resolved_revision" : "ef08bdbd35fa01342ef6d80f2e8eb8b9c2cccc30"
+ }
+ }, {
+ "id" : "NPM::picocolors:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/alexeyraspopov/picocolors.git",
+ "revision" : "228cea3fa726857785b8c069cccc58e9743cd71d",
+ "path" : ""
+ },
+ "resolved_revision" : "228cea3fa726857785b8c069cccc58e9743cd71d"
+ }
+ }, {
+ "id" : "NPM::picomatch:2.3.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/picomatch.git",
+ "revision" : "5467a5a9638472610de4f30709991b9a56bb5613",
+ "path" : ""
+ },
+ "resolved_revision" : "5467a5a9638472610de4f30709991b9a56bb5613"
+ }
+ }, {
+ "id" : "NPM::pify:2.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/pify.git",
+ "revision" : "2dd0d8b880e4ebcc5cc33ae126b02647418e4440",
+ "path" : ""
+ },
+ "resolved_revision" : "2dd0d8b880e4ebcc5cc33ae126b02647418e4440"
+ }
+ }, {
+ "id" : "NPM::pkg-dir:4.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/pkg-dir.git",
+ "revision" : "e25e5342c5ec425bb4a2c93787a880c29cbf0a49",
+ "path" : ""
+ },
+ "resolved_revision" : "e25e5342c5ec425bb4a2c93787a880c29cbf0a49"
+ }
+ }, {
+ "id" : "NPM::prelude-ls:1.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/prelude-ls.git",
+ "revision" : "d69be8fd8a682321ba24eced17caf3a1b8ca73b8",
+ "path" : ""
+ },
+ "resolved_revision" : "d69be8fd8a682321ba24eced17caf3a1b8ca73b8"
+ }
+ }, {
+ "id" : "NPM::process-on-spawn:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/process-on-spawn.git",
+ "revision" : "333106fa246ae4577ce010f8a5405d38061ec359",
+ "path" : ""
+ },
+ "resolved_revision" : "333106fa246ae4577ce010f8a5405d38061ec359"
+ }
+ }, {
+ "id" : "NPM::progress:2.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/visionmedia/node-progress.git",
+ "revision" : "0790207ef077cbfb7ebde24a1dd9895ebf4643e1",
+ "path" : ""
+ },
+ "resolved_revision" : "0790207ef077cbfb7ebde24a1dd9895ebf4643e1"
+ }
+ }, {
+ "id" : "NPM::punycode:2.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/punycode.js.git",
+ "revision" : "44e6200b96c186ebc5de72dcce2bcdfe8a32bfbc",
+ "path" : ""
+ },
+ "resolved_revision" : "44e6200b96c186ebc5de72dcce2bcdfe8a32bfbc"
+ }
+ }, {
+ "id" : "NPM::read-pkg:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/read-pkg.git",
+ "revision" : "c1664a2f42d1f1898b7648534576e6dcfa1f48c8",
+ "path" : ""
+ },
+ "resolved_revision" : "c1664a2f42d1f1898b7648534576e6dcfa1f48c8"
+ }
+ }, {
+ "id" : "NPM::read-pkg-up:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/read-pkg-up.git",
+ "revision" : "3b8a594ab581f000f705e43e8abdb1a23e8822f2",
+ "path" : ""
+ },
+ "resolved_revision" : "3b8a594ab581f000f705e43e8abdb1a23e8822f2"
+ }
+ }, {
+ "id" : "NPM::readdirp:3.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/paulmillr/readdirp.git",
+ "revision" : "cdfb3df2192e0721be258b28c19b9be1d43fcdd0",
+ "path" : ""
+ },
+ "resolved_revision" : "cdfb3df2192e0721be258b28c19b9be1d43fcdd0"
+ }
+ }, {
+ "id" : "NPM::regexp.prototype.flags:1.4.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/RegExp.prototype.flags.git",
+ "revision" : "0ed48d003353a0157f14ca8f2b5e3034830dd179",
+ "path" : ""
+ },
+ "resolved_revision" : "0ed48d003353a0157f14ca8f2b5e3034830dd179"
+ }
+ }, {
+ "id" : "NPM::regexpp:2.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/regexpp.git",
+ "revision" : "d68b435cbf6d37e3fa6af186965a7b6c738bf685",
+ "path" : ""
+ },
+ "resolved_revision" : "d68b435cbf6d37e3fa6af186965a7b6c738bf685"
+ }
+ }, {
+ "id" : "NPM::regexpp:3.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/regexpp.git",
+ "revision" : "b8bc4e82885a9cff44b908d247685cde129cd863",
+ "path" : ""
+ },
+ "resolved_revision" : "b8bc4e82885a9cff44b908d247685cde129cd863"
+ }
+ }, {
+ "id" : "NPM::release-zalgo:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/novemberborn/release-zalgo.git",
+ "revision" : "696e6ac92340120fe4b26fce4152f0197b45183b",
+ "path" : ""
+ },
+ "resolved_revision" : "696e6ac92340120fe4b26fce4152f0197b45183b"
+ }
+ }, {
+ "id" : "NPM::require-directory:2.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/troygoode/node-require-directory.git",
+ "revision" : "cc71c23dd0c16cefd26855303c16ca1b9b50a36d",
+ "path" : ""
+ },
+ "resolved_revision" : "cc71c23dd0c16cefd26855303c16ca1b9b50a36d"
+ }
+ }, {
+ "id" : "NPM::require-main-filename:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/require-main-filename.git",
+ "revision" : "1acaf42e8ababa22c191319b319f25df833ffd79",
+ "path" : ""
+ },
+ "resolved_revision" : "1acaf42e8ababa22c191319b319f25df833ffd79"
+ }
+ }, {
+ "id" : "NPM::resolve:1.22.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserify/resolve.git",
+ "revision" : "8eea601093612229da100e9dfbeb4b2b47693aa6",
+ "path" : ""
+ },
+ "resolved_revision" : "8eea601093612229da100e9dfbeb4b2b47693aa6"
+ }
+ }, {
+ "id" : "NPM::resolve-from:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "60cd04e69135b96b98b848fff719b1276a5610c0",
+ "path" : ""
+ },
+ "resolved_revision" : "60cd04e69135b96b98b848fff719b1276a5610c0"
+ }
+ }, {
+ "id" : "NPM::resolve-from:5.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "53f4a1b40f972dbfc4dda9627d24068000eae897",
+ "path" : ""
+ },
+ "resolved_revision" : "53f4a1b40f972dbfc4dda9627d24068000eae897"
+ }
+ }, {
+ "id" : "NPM::restore-cursor:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/restore-cursor.git",
+ "revision" : "32accb3425dbcde0b303583b9137857451b67045",
+ "path" : ""
+ },
+ "resolved_revision" : "32accb3425dbcde0b303583b9137857451b67045"
+ }
+ }, {
+ "id" : "NPM::rimraf:2.6.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/rimraf.git",
+ "revision" : "9442819908e52f2c32620e8fa609d7a5d472cc2c",
+ "path" : ""
+ },
+ "resolved_revision" : "9442819908e52f2c32620e8fa609d7a5d472cc2c"
+ }
+ }, {
+ "id" : "NPM::rimraf:3.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/rimraf.git",
+ "revision" : "8c10fb8d685d5cc35708e0ffc4dac9ec5dd5b444",
+ "path" : ""
+ },
+ "resolved_revision" : "8c10fb8d685d5cc35708e0ffc4dac9ec5dd5b444"
+ }
+ }, {
+ "id" : "NPM::run-async:2.4.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/SBoudrias/run-async.git",
+ "revision" : "f3e0a18abf6e9569abfcf327daa9351c95f109b1",
+ "path" : ""
+ },
+ "resolved_revision" : "f3e0a18abf6e9569abfcf327daa9351c95f109b1"
+ }
+ }, {
+ "id" : "NPM::rxjs:6.6.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/reactivex/rxjs.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "beeeb7bdc3b09524bdd6c59ff40ed80ac932076a"
+ }
+ }, {
+ "id" : "NPM::safe-regex-test:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/safe-regex-test.git",
+ "revision" : "5ff385f943afbe6d23a0e01e5e0444d88b4bee93",
+ "path" : ""
+ },
+ "resolved_revision" : "5ff385f943afbe6d23a0e01e5e0444d88b4bee93"
+ }
+ }, {
+ "id" : "NPM::safer-buffer:2.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ChALkeR/safer-buffer.git",
+ "revision" : "e8ac214944eda30e1e6c6b7d7e7f6a21cf7dce7c",
+ "path" : ""
+ },
+ "resolved_revision" : "e8ac214944eda30e1e6c6b7d7e7f6a21cf7dce7c"
+ }
+ }, {
+ "id" : "NPM::semver:5.7.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/node-semver.git",
+ "revision" : "c83c18cf84f9ccaea3431c929bb285fd168c01e4",
+ "path" : ""
+ },
+ "resolved_revision" : "c83c18cf84f9ccaea3431c929bb285fd168c01e4"
+ }
+ }, {
+ "id" : "NPM::semver:6.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/node-semver.git",
+ "revision" : "0eeceecfba490d136eb3ccae3a8dc118a28565a0",
+ "path" : ""
+ },
+ "resolved_revision" : "0eeceecfba490d136eb3ccae3a8dc118a28565a0"
+ }
+ }, {
+ "id" : "NPM::set-blocking:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/set-blocking.git",
+ "revision" : "7eec10577b5fff264de477ba3b9d07f404946eff",
+ "path" : ""
+ },
+ "resolved_revision" : "7eec10577b5fff264de477ba3b9d07f404946eff"
+ }
+ }, {
+ "id" : "NPM::shebang-command:1.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/shebang-command.git",
+ "revision" : "01de9b7d355f21e00417650a6fb1eb56321bc23c",
+ "path" : ""
+ },
+ "resolved_revision" : "01de9b7d355f21e00417650a6fb1eb56321bc23c"
+ }
+ }, {
+ "id" : "NPM::shebang-command:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/shebang-command.git",
+ "revision" : "003c4c7d6882d029aa8b3e5777716d726894d734",
+ "path" : ""
+ },
+ "resolved_revision" : "003c4c7d6882d029aa8b3e5777716d726894d734"
+ }
+ }, {
+ "id" : "NPM::shebang-regex:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/shebang-regex.git",
+ "revision" : "cb774c70d5f569479ca997abf8ee7e558e617284",
+ "path" : ""
+ },
+ "resolved_revision" : "cb774c70d5f569479ca997abf8ee7e558e617284"
+ }
+ }, {
+ "id" : "NPM::shebang-regex:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/shebang-regex.git",
+ "revision" : "27a9a6f0f85c04b9c37a43cf7503fdb58f5ae8d6",
+ "path" : ""
+ },
+ "resolved_revision" : "27a9a6f0f85c04b9c37a43cf7503fdb58f5ae8d6"
+ }
+ }, {
+ "id" : "NPM::side-channel:1.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/side-channel.git",
+ "revision" : "5c3c3fe90858eff0dd5c24d1f6a8351f8810755e",
+ "path" : ""
+ },
+ "resolved_revision" : "5c3c3fe90858eff0dd5c24d1f6a8351f8810755e"
+ }
+ }, {
+ "id" : "NPM::signal-exit:3.0.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tapjs/signal-exit.git",
+ "revision" : "03dd77a96caa309c6a02c59274d58c812a2dce45",
+ "path" : ""
+ },
+ "resolved_revision" : "03dd77a96caa309c6a02c59274d58c812a2dce45"
+ }
+ }, {
+ "id" : "NPM::slice-ansi:2.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/slice-ansi.git",
+ "revision" : "bfb33a3eb13f2d3b8023f37ddb421eff3ea7a3ae",
+ "path" : ""
+ },
+ "resolved_revision" : "bfb33a3eb13f2d3b8023f37ddb421eff3ea7a3ae"
+ }
+ }, {
+ "id" : "NPM::source-map:0.6.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/mozilla/source-map.git",
+ "revision" : "ac518d2f21818146f3310557bd51c13d8cff2ba8",
+ "path" : ""
+ },
+ "resolved_revision" : "ac518d2f21818146f3310557bd51c13d8cff2ba8"
+ }
+ }, {
+ "id" : "NPM::spawn-wrap:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/spawn-wrap.git",
+ "revision" : "c1c6cea28dc9d6760ae2c4eebeff8a60a80d7fd7",
+ "path" : ""
+ },
+ "resolved_revision" : "c1c6cea28dc9d6760ae2c4eebeff8a60a80d7fd7"
+ }
+ }, {
+ "id" : "NPM::spdx-correct:3.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-correct.js.git",
+ "revision" : "24954c75aba5ace68365345154ff21bcd3580302",
+ "path" : ""
+ },
+ "resolved_revision" : "24954c75aba5ace68365345154ff21bcd3580302"
+ }
+ }, {
+ "id" : "NPM::spdx-exceptions:2.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kemitchell/spdx-exceptions.json.git",
+ "revision" : "b1405b421074aae250f5cfefc1adff1c6085b293",
+ "path" : ""
+ },
+ "resolved_revision" : "b1405b421074aae250f5cfefc1adff1c6085b293"
+ }
+ }, {
+ "id" : "NPM::spdx-expression-parse:3.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-expression-parse.js.git",
+ "revision" : "d7daff468ce455f636838a8375d8699cf36be64d",
+ "path" : ""
+ },
+ "resolved_revision" : "d7daff468ce455f636838a8375d8699cf36be64d"
+ }
+ }, {
+ "id" : "NPM::spdx-license-ids:3.0.12",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-license-ids.git",
+ "revision" : "d2623744e1e6afa1b393491dda5e8e5168de1aef",
+ "path" : ""
+ },
+ "resolved_revision" : "d2623744e1e6afa1b393491dda5e8e5168de1aef"
+ }
+ }, {
+ "id" : "NPM::sprintf-js:1.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/alexei/sprintf.js.git",
+ "revision" : "747b806c2dab5b64d5c9958c42884946a187c3b1",
+ "path" : ""
+ },
+ "resolved_revision" : "747b806c2dab5b64d5c9958c42884946a187c3b1"
+ }
+ }, {
+ "id" : "NPM::string-width:2.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "74d8d552b465692790c41169b123409669d41079",
+ "path" : ""
+ },
+ "resolved_revision" : "74d8d552b465692790c41169b123409669d41079"
+ }
+ }, {
+ "id" : "NPM::string-width:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "3b3da68dfea82e193f9d6deee77224cf8e5c3803",
+ "path" : ""
+ },
+ "resolved_revision" : "3b3da68dfea82e193f9d6deee77224cf8e5c3803"
+ }
+ }, {
+ "id" : "NPM::string-width:4.2.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "e7a2755c834246c59a4cc5de9471bef2d531a6b1",
+ "path" : ""
+ },
+ "resolved_revision" : "e7a2755c834246c59a4cc5de9471bef2d531a6b1"
+ }
+ }, {
+ "id" : "NPM::string.prototype.trimend:1.0.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/String.prototype.trimEnd.git",
+ "revision" : "a4f90ea11058764f941e8a0e4b9dd1b519c421e6",
+ "path" : ""
+ },
+ "resolved_revision" : "a4f90ea11058764f941e8a0e4b9dd1b519c421e6"
+ }
+ }, {
+ "id" : "NPM::string.prototype.trimstart:1.0.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/String.prototype.trimStart.git",
+ "revision" : "535a3a63a25c84c7ea4c9250f7f70aff1a0eddfe",
+ "path" : ""
+ },
+ "resolved_revision" : "535a3a63a25c84c7ea4c9250f7f70aff1a0eddfe"
+ }
+ }, {
+ "id" : "NPM::strip-ansi:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "c299056a42b31d7a479d6a89b41318b2a2462cc7",
+ "path" : ""
+ },
+ "resolved_revision" : "c299056a42b31d7a479d6a89b41318b2a2462cc7"
+ }
+ }, {
+ "id" : "NPM::strip-ansi:5.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "b9c492921b72c48f93568565dbdc929cf63c20e1",
+ "path" : ""
+ },
+ "resolved_revision" : "b9c492921b72c48f93568565dbdc929cf63c20e1"
+ }
+ }, {
+ "id" : "NPM::strip-ansi:6.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "59533da99981f9d550de1ae0eb9d1a93c2383be3",
+ "path" : ""
+ },
+ "resolved_revision" : "59533da99981f9d550de1ae0eb9d1a93c2383be3"
+ }
+ }, {
+ "id" : "NPM::strip-bom:3.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "8258d09a069a5d5eb3d787c1d5d29737df1c8bba",
+ "path" : ""
+ },
+ "resolved_revision" : "8258d09a069a5d5eb3d787c1d5d29737df1c8bba"
+ }
+ }, {
+ "id" : "NPM::strip-bom:4.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "9aef0f38ffefca91d3852c82cd6366e5d36d6dd1",
+ "path" : ""
+ },
+ "resolved_revision" : "9aef0f38ffefca91d3852c82cd6366e5d36d6dd1"
+ }
+ }, {
+ "id" : "NPM::strip-json-comments:2.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "1aef99eaa70d07981156e8aaa722e750c3b4eaf9",
+ "path" : ""
+ },
+ "resolved_revision" : "1aef99eaa70d07981156e8aaa722e750c3b4eaf9"
+ }
+ }, {
+ "id" : "NPM::strip-json-comments:3.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "6355b5792682c7c7a2480e5cbe73fc7ad578e432",
+ "path" : ""
+ },
+ "resolved_revision" : "6355b5792682c7c7a2480e5cbe73fc7ad578e432"
+ }
+ }, {
+ "id" : "NPM::supports-color:5.5.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "7759fc135b1be07cb7411178d7b1ac33d367fec8",
+ "path" : ""
+ },
+ "resolved_revision" : "7759fc135b1be07cb7411178d7b1ac33d367fec8"
+ }
+ }, {
+ "id" : "NPM::supports-color:6.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "bfbe6692d549b423230292946756f3fdd79a808e",
+ "path" : ""
+ },
+ "resolved_revision" : "bfbe6692d549b423230292946756f3fdd79a808e"
+ }
+ }, {
+ "id" : "NPM::supports-color:7.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "c5edf46896d1fc1826cb1183a60d61eecb65d749",
+ "path" : ""
+ },
+ "resolved_revision" : "c5edf46896d1fc1826cb1183a60d61eecb65d749"
+ }
+ }, {
+ "id" : "NPM::supports-preserve-symlinks-flag:1.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git",
+ "revision" : "1f7cac19c0c298cf40b3f2f3c735477ad579ac61",
+ "path" : ""
+ },
+ "resolved_revision" : "1f7cac19c0c298cf40b3f2f3c735477ad579ac61"
+ }
+ }, {
+ "id" : "NPM::table:5.4.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gajus/table.git",
+ "revision" : "db1ad68d74b8e859448deebaeb823da39e40fa98",
+ "path" : ""
+ },
+ "resolved_revision" : "db1ad68d74b8e859448deebaeb823da39e40fa98"
+ }
+ }, {
+ "id" : "NPM::test-exclude:6.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/test-exclude.git",
+ "revision" : "b788e7bd7cfdec8b471ad7b79d0d4a44975e2e99",
+ "path" : ""
+ },
+ "resolved_revision" : "b788e7bd7cfdec8b471ad7b79d0d4a44975e2e99"
+ }
+ }, {
+ "id" : "NPM::text-table:0.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/text-table.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "2f7f2baf205b0caf5b30f9ab665fdce267197fbd"
+ }
+ }, {
+ "id" : "NPM::through:2.3.8",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/dominictarr/through.git",
+ "revision" : "2c5a6f9a0cc54da759b6e10964f2081c358e49dc",
+ "path" : ""
+ },
+ "resolved_revision" : "2c5a6f9a0cc54da759b6e10964f2081c358e49dc"
+ }
+ }, {
+ "id" : "NPM::tmp:0.0.33",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/raszi/node-tmp.git",
+ "revision" : "0900dd5b112ac7a482e4bdf3cb002bfe1b3acf77",
+ "path" : ""
+ },
+ "resolved_revision" : "0900dd5b112ac7a482e4bdf3cb002bfe1b3acf77"
+ }
+ }, {
+ "id" : "NPM::to-fast-properties:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/to-fast-properties.git",
+ "revision" : "5b2ddf09843cacf5e9c2f9403155ef5a742edd83",
+ "path" : ""
+ },
+ "resolved_revision" : "5b2ddf09843cacf5e9c2f9403155ef5a742edd83"
+ }
+ }, {
+ "id" : "NPM::to-regex-range:5.0.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/to-regex-range.git",
+ "revision" : "c05ef9ec07e7703d146467934098ecbde9d0bd95",
+ "path" : ""
+ },
+ "resolved_revision" : "c05ef9ec07e7703d146467934098ecbde9d0bd95"
+ }
+ }, {
+ "id" : "NPM::tslib:1.14.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Microsoft/tslib.git",
+ "revision" : "7d33f3607d635dbaaaba006a4648346a81422f3a",
+ "path" : ""
+ },
+ "resolved_revision" : "7d33f3607d635dbaaaba006a4648346a81422f3a"
+ }
+ }, {
+ "id" : "NPM::type-check:0.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/type-check.git",
+ "revision" : "0ab04e7a660485d0cc3aa87e95f2f9a6464cf8e6",
+ "path" : ""
+ },
+ "resolved_revision" : "0ab04e7a660485d0cc3aa87e95f2f9a6464cf8e6"
+ }
+ }, {
+ "id" : "NPM::type-fest:0.8.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/type-fest.git",
+ "revision" : "92c02842eaa4f56b8dec183d10c85bcb0d447bd8",
+ "path" : ""
+ },
+ "resolved_revision" : "92c02842eaa4f56b8dec183d10c85bcb0d447bd8"
+ }
+ }, {
+ "id" : "NPM::type-fest:0.21.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/type-fest.git",
+ "revision" : "b40cb9c8e6dbea84bc99ec9e37bdd636c5cc6565",
+ "path" : ""
+ },
+ "resolved_revision" : "b40cb9c8e6dbea84bc99ec9e37bdd636c5cc6565"
+ }
+ }, {
+ "id" : "NPM::typed-array-length:1.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/typed-array-length.git",
+ "revision" : "c30864c777e9d2565c5a459904f9a40976586bba",
+ "path" : ""
+ },
+ "resolved_revision" : "c30864c777e9d2565c5a459904f9a40976586bba"
+ }
+ }, {
+ "id" : "NPM::typedarray-to-buffer:3.1.5",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/typedarray-to-buffer.git",
+ "revision" : "328a952e480a143bdc3fc98a2133490e28e2b3a2",
+ "path" : ""
+ },
+ "resolved_revision" : "328a952e480a143bdc3fc98a2133490e28e2b3a2"
+ }
+ }, {
+ "id" : "NPM::unbox-primitive:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/unbox-primitive.git",
+ "revision" : "c93a80dea8d62105b3bd10e4f33440943737f5d9",
+ "path" : ""
+ },
+ "resolved_revision" : "c93a80dea8d62105b3bd10e4f33440943737f5d9"
+ }
+ }, {
+ "id" : "NPM::update-browserslist-db:1.0.10",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/update-db.git",
+ "revision" : "597c6d12268e9c55368c754269872786662fe4b0",
+ "path" : ""
+ },
+ "resolved_revision" : "597c6d12268e9c55368c754269872786662fe4b0"
+ }
+ }, {
+ "id" : "NPM::uri-js:4.4.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/garycourt/uri-js.git",
+ "revision" : "9a328873a21262651c3790505b24c9e318a0e12d",
+ "path" : ""
+ },
+ "resolved_revision" : "9a328873a21262651c3790505b24c9e318a0e12d"
+ }
+ }, {
+ "id" : "NPM::uuid:3.4.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/uuidjs/uuid.git",
+ "revision" : "3df73a98f07c0a38a94bcaf1ecde0e384dc3b126",
+ "path" : ""
+ },
+ "resolved_revision" : "3df73a98f07c0a38a94bcaf1ecde0e384dc3b126"
+ }
+ }, {
+ "id" : "NPM::uuid:8.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/uuidjs/uuid.git",
+ "revision" : "ed3240154759b748f6a3b7d545f3b10759ee4ba7",
+ "path" : ""
+ },
+ "resolved_revision" : "ed3240154759b748f6a3b7d545f3b10759ee4ba7"
+ }
+ }, {
+ "id" : "NPM::v8-compile-cache:2.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/zertosh/v8-compile-cache.git",
+ "revision" : "454af0b0c2f35e6afd87aa1878e1749a76eca122",
+ "path" : ""
+ },
+ "resolved_revision" : "454af0b0c2f35e6afd87aa1878e1749a76eca122"
+ }
+ }, {
+ "id" : "NPM::validate-npm-package-license:3.0.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kemitchell/validate-npm-package-license.js.git",
+ "revision" : "6bbe26201fa7e5c7281516b04b9f3f4cc6db145c",
+ "path" : ""
+ },
+ "resolved_revision" : "6bbe26201fa7e5c7281516b04b9f3f4cc6db145c"
+ }
+ }, {
+ "id" : "NPM::which:1.3.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-which.git",
+ "revision" : "563406d75b97f97a33e506b9cc7a82b268332b6f",
+ "path" : ""
+ },
+ "resolved_revision" : "563406d75b97f97a33e506b9cc7a82b268332b6f"
+ }
+ }, {
+ "id" : "NPM::which:2.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-which.git",
+ "revision" : "6a822d836de79f92fb3170f685a6e283fbfeff87",
+ "path" : ""
+ },
+ "resolved_revision" : "6a822d836de79f92fb3170f685a6e283fbfeff87"
+ }
+ }, {
+ "id" : "NPM::which-boxed-primitive:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/which-boxed-primitive.git",
+ "revision" : "e2572398ae2be0d87527bc1726c1393a982a2f37",
+ "path" : ""
+ },
+ "resolved_revision" : "e2572398ae2be0d87527bc1726c1393a982a2f37"
+ }
+ }, {
+ "id" : "NPM::which-module:2.0.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nexdrew/which-module.git",
+ "revision" : "7f78f42d0761133263c3947a3b24dde324a467ce",
+ "path" : ""
+ },
+ "resolved_revision" : "7f78f42d0761133263c3947a3b24dde324a467ce"
+ }
+ }, {
+ "id" : "NPM::which-typed-array:1.1.9",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/which-typed-array.git",
+ "revision" : "c7f7c5510fce82dbf8deb77d091b22d0f20a4695",
+ "path" : ""
+ },
+ "resolved_revision" : "c7f7c5510fce82dbf8deb77d091b22d0f20a4695"
+ }
+ }, {
+ "id" : "NPM::wide-align:1.1.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/iarna/wide-align.git",
+ "revision" : "6b766c9874a1e5157eda2ac75b90ccc01b313620",
+ "path" : ""
+ },
+ "resolved_revision" : "6b766c9874a1e5157eda2ac75b90ccc01b313620"
+ }
+ }, {
+ "id" : "NPM::word-wrap:1.2.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/word-wrap.git",
+ "revision" : "cdab7f263a0af97df0626043d908aa087d3d3089",
+ "path" : ""
+ },
+ "resolved_revision" : "cdab7f263a0af97df0626043d908aa087d3d3089"
+ }
+ }, {
+ "id" : "NPM::wrap-ansi:5.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/wrap-ansi.git",
+ "revision" : "2a1a55446d67c55a29e84173e99eb6abc91c937c",
+ "path" : ""
+ },
+ "resolved_revision" : "2a1a55446d67c55a29e84173e99eb6abc91c937c"
+ }
+ }, {
+ "id" : "NPM::wrap-ansi:6.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/wrap-ansi.git",
+ "revision" : "a28eb7d6cdbf91bccb56d04d095ca9463c15d3db",
+ "path" : ""
+ },
+ "resolved_revision" : "a28eb7d6cdbf91bccb56d04d095ca9463c15d3db"
+ }
+ }, {
+ "id" : "NPM::wrappy:1.0.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/wrappy.git",
+ "revision" : "71d91b6dc5bdeac37e218c2cf03f9ab55b60d214",
+ "path" : ""
+ },
+ "resolved_revision" : "71d91b6dc5bdeac37e218c2cf03f9ab55b60d214"
+ }
+ }, {
+ "id" : "NPM::write:1.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/write.git",
+ "revision" : "6a48d4e363510c52653fabc25f620a484d6058bf",
+ "path" : ""
+ },
+ "resolved_revision" : "6a48d4e363510c52653fabc25f620a484d6058bf"
+ }
+ }, {
+ "id" : "NPM::write-file-atomic:3.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/write-file-atomic.git",
+ "revision" : "eb8dff15f83f16be1e0b89be54fa80200356614a",
+ "path" : ""
+ },
+ "resolved_revision" : "eb8dff15f83f16be1e0b89be54fa80200356614a"
+ }
+ }, {
+ "id" : "NPM::y18n:4.0.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/y18n.git",
+ "revision" : "0aa97c508ea31efadd2a27f98fed6873eefc963e",
+ "path" : ""
+ },
+ "resolved_revision" : "0aa97c508ea31efadd2a27f98fed6873eefc963e"
+ }
+ }, {
+ "id" : "NPM::yallist:3.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/yallist.git",
+ "revision" : "ab350a79eb94c80f7146662748a12b6fcd63729c",
+ "path" : ""
+ },
+ "resolved_revision" : "ab350a79eb94c80f7146662748a12b6fcd63729c"
+ }
+ }, {
+ "id" : "NPM::yargs:13.3.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/yargs.git",
+ "revision" : "59739e6865d5736e32a250872bfe809e4bc1f1e9",
+ "path" : ""
+ },
+ "resolved_revision" : "59739e6865d5736e32a250872bfe809e4bc1f1e9"
+ }
+ }, {
+ "id" : "NPM::yargs:15.4.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/yargs.git",
+ "revision" : "0b519a4672c8493d72838292ed0d60b63b88f33e",
+ "path" : ""
+ },
+ "resolved_revision" : "0b519a4672c8493d72838292ed0d60b63b88f33e"
+ }
+ }, {
+ "id" : "NPM::yargs-parser:13.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/yargs-parser.git",
+ "revision" : "7e01a2c8d1ba75d9d5472e5839e2852bdf2af3db",
+ "path" : ""
+ },
+ "resolved_revision" : "7e01a2c8d1ba75d9d5472e5839e2852bdf2af3db"
+ }
+ }, {
+ "id" : "NPM::yargs-parser:18.1.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/yargs/yargs-parser.git",
+ "revision" : "",
+ "path" : ""
+ },
+ "resolved_revision" : "d301a5645627a30cc1721de647a6cc65bb89a426"
+ }
+ }, {
+ "id" : "NPM::yargs-unparser:1.6.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "ssh://git@github.com/yargs/yargs-unparser.git",
+ "revision" : "707b456935e881fe63a670d895ac15950cf1bbb5",
+ "path" : ""
+ },
+ "resolved_revision" : "707b456935e881fe63a670d895ac15950cf1bbb5"
+ }
+ }, {
+ "id" : "NPM:@ampproject:remapping:2.2.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ampproject/remapping.git",
+ "revision" : "ee9a0b022cb8f739ae36bd39a2ca4bfdf1d859c1",
+ "path" : ""
+ },
+ "resolved_revision" : "ee9a0b022cb8f739ae36bd39a2ca4bfdf1d859c1"
+ }
+ }, {
+ "id" : "NPM:@babel:code-frame:7.18.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-code-frame"
+ },
+ "resolved_revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8"
+ }
+ }, {
+ "id" : "NPM:@babel:compat-data:7.20.14",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-compat-data"
+ },
+ "resolved_revision" : "4ed66dd0b7a82df4a469bf3e71af4a495ce128b3"
+ }
+ }, {
+ "id" : "NPM:@babel:core:7.20.12",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-core"
+ },
+ "resolved_revision" : "eb71c632c62f9fd6dc61c46c1ff195fb10b25e03"
+ }
+ }, {
+ "id" : "NPM:@babel:generator:7.20.14",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-generator"
+ },
+ "resolved_revision" : "4ed66dd0b7a82df4a469bf3e71af4a495ce128b3"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-compilation-targets:7.20.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-compilation-targets"
+ },
+ "resolved_revision" : "d414940e4c38eee91b63500a3129b75fbeaed71c"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-environment-visitor:7.18.9",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-environment-visitor"
+ },
+ "resolved_revision" : "f1ac2906b1066e47503e4d82d0602acd4be94e60"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-function-name:7.19.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-function-name"
+ },
+ "resolved_revision" : "70a13e49be1d5d5b33f60f4daed8096531c7028c"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-hoist-variables:7.18.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-hoist-variables"
+ },
+ "resolved_revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-module-imports:7.18.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-module-imports"
+ },
+ "resolved_revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-module-transforms:7.20.11",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-module-transforms"
+ },
+ "resolved_revision" : "0f25e4a15f8cfb525f4f1481ff5117d28cd870ed"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-simple-access:7.20.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-simple-access"
+ },
+ "resolved_revision" : "12a58cb58c07677215f5c51d60a623ca674a7a52"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-split-export-declaration:7.18.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-split-export-declaration"
+ },
+ "resolved_revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-string-parser:7.19.4",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-string-parser"
+ },
+ "resolved_revision" : "7a38850a839c99727b9bd6d949f3002c54267f97"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-validator-identifier:7.19.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-validator-identifier"
+ },
+ "resolved_revision" : "eb621ac822df8d4656970b95394622957e1f6245"
+ }
+ }, {
+ "id" : "NPM:@babel:helper-validator-option:7.18.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helper-validator-option"
+ },
+ "resolved_revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8"
+ }
+ }, {
+ "id" : "NPM:@babel:helpers:7.20.13",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-helpers"
+ },
+ "resolved_revision" : "89f38880ceb908098071e1daa646690a100fb7dc"
+ }
+ }, {
+ "id" : "NPM:@babel:highlight:7.18.6",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-highlight"
+ },
+ "resolved_revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8"
+ }
+ }, {
+ "id" : "NPM:@babel:parser:7.20.13",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-parser"
+ },
+ "resolved_revision" : "89f38880ceb908098071e1daa646690a100fb7dc"
+ }
+ }, {
+ "id" : "NPM:@babel:template:7.20.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-template"
+ },
+ "resolved_revision" : "d414940e4c38eee91b63500a3129b75fbeaed71c"
+ }
+ }, {
+ "id" : "NPM:@babel:traverse:7.20.13",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-traverse"
+ },
+ "resolved_revision" : "89f38880ceb908098071e1daa646690a100fb7dc"
+ }
+ }, {
+ "id" : "NPM:@babel:types:7.20.7",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "",
+ "path" : "packages/babel-types"
+ },
+ "resolved_revision" : "d414940e4c38eee91b63500a3129b75fbeaed71c"
+ }
+ }, {
+ "id" : "NPM:@istanbuljs:load-nyc-config:1.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/load-nyc-config.git",
+ "revision" : "2033a007672d90669c48c79e6a2d63a3cd0851a7",
+ "path" : ""
+ },
+ "resolved_revision" : "2033a007672d90669c48c79e6a2d63a3cd0851a7"
+ }
+ }, {
+ "id" : "NPM:@istanbuljs:schema:0.1.3",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/schema.git",
+ "revision" : "d7da65adc197d15e06afb3761f560507ae048495",
+ "path" : ""
+ },
+ "resolved_revision" : "d7da65adc197d15e06afb3761f560507ae048495"
+ }
+ }, {
+ "id" : "NPM:@jridgewell:gen-mapping:0.1.1",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "2464c6cbd4b98bbbd6d97bbf1889edd1a647adcc",
+ "path" : ""
+ },
+ "resolved_revision" : "2464c6cbd4b98bbbd6d97bbf1889edd1a647adcc"
+ }
+ }, {
+ "id" : "NPM:@jridgewell:gen-mapping:0.3.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "a44a71dd0aa2c4eac4a8577f3e150dbc3aafdb80",
+ "path" : ""
+ },
+ "resolved_revision" : "a44a71dd0aa2c4eac4a8577f3e150dbc3aafdb80"
+ }
+ }, {
+ "id" : "NPM:@jridgewell:resolve-uri:3.1.0",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/resolve-uri.git",
+ "revision" : "7cc23209430909a54f44b740e07cb27573535c95",
+ "path" : ""
+ },
+ "resolved_revision" : "7cc23209430909a54f44b740e07cb27573535c95"
+ }
+ }, {
+ "id" : "NPM:@jridgewell:set-array:1.1.2",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/set-array.git",
+ "revision" : "f1d9855dd0d7e34bcc02307249783589ed715661",
+ "path" : ""
+ },
+ "resolved_revision" : "f1d9855dd0d7e34bcc02307249783589ed715661"
+ }
+ }, {
+ "id" : "NPM:@jridgewell:sourcemap-codec:1.4.14",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/sourcemap-codec.git",
+ "revision" : "802e17965c9b5694b338412618a1b32bd07af166",
+ "path" : ""
+ },
+ "resolved_revision" : "802e17965c9b5694b338412618a1b32bd07af166"
+ }
+ }, {
+ "id" : "NPM:@jridgewell:trace-mapping:0.3.17",
+ "package_provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/trace-mapping.git",
+ "revision" : "23ab4a29244444d825044ff8fb9a8d57f41837fa",
+ "path" : ""
+ },
+ "resolved_revision" : "23ab4a29244444d825044ff8fb9a8d57f41837fa"
+ }
+ } ],
+ "scan_results" : [ {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ChALkeR/safer-buffer.git",
+ "revision" : "e8ac214944eda30e1e6c6b7d7e7f6a21cf7dce7c",
+ "path" : ""
+ },
+ "resolved_revision" : "e8ac214944eda30e1e6c6b7d7e7f6a21cf7dce7c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:04:17.000985829Z",
+ "end_time" : "2023-07-19T13:04:20.000579333Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Nikita Skovoroda ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Microsoft/tslib.git",
+ "revision" : "7d33f3607d635dbaaaba006a4648346a81422f3a",
+ "path" : ""
+ },
+ "resolved_revision" : "7d33f3607d635dbaaaba006a4648346a81422f3a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:05.000000554Z",
+ "end_time" : "2023-07-20T07:29:08.000186030Z",
+ "licenses" : [ {
+ "license" : "0BSD",
+ "location" : {
+ "path" : "CopyrightNotice.txt",
+ "start_line" : 4,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "0BSD",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 3,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "0BSD",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "0BSD",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "0BSD",
+ "location" : {
+ "path" : "tslib.d.ts",
+ "start_line" : 4,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "0BSD",
+ "location" : {
+ "path" : "tslib.es6.js",
+ "start_line" : 4,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "0BSD",
+ "location" : {
+ "path" : "tslib.js",
+ "start_line" : 4,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Microsoft Corporation",
+ "location" : {
+ "path" : "CopyrightNotice.txt",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) Microsoft Corporation",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) Microsoft Corporation",
+ "location" : {
+ "path" : "tslib.d.ts",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) Microsoft Corporation",
+ "location" : {
+ "path" : "tslib.es6.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) Microsoft Corporation",
+ "location" : {
+ "path" : "tslib.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Qix-/color-convert.git",
+ "revision" : "e1cb7846258e1d7aa25873814684d4fbbbca53ed",
+ "path" : ""
+ },
+ "resolved_revision" : "e1cb7846258e1d7aa25873814684d4fbbbca53ed"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:35:20.000169267Z",
+ "end_time" : "2023-07-20T06:35:24.000437340Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 68,
+ "end_line" : 68
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "conversions.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011-2016 Heather Arthur ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2011-2016, Heather Arthur and Josh Junon",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 68,
+ "end_line" : 68
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Qix-/color-convert.git",
+ "revision" : "99dc5da127d3d17d0ff8d13a995fd2d6aab404aa",
+ "path" : ""
+ },
+ "resolved_revision" : "99dc5da127d3d17d0ff8d13a995fd2d6aab404aa"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:39:28.000876128Z",
+ "end_time" : "2023-07-20T06:39:33.000619307Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 68,
+ "end_line" : 68
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "conversions.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011-2016 Heather Arthur ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2011-2016, Heather Arthur and Josh Junon",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 68,
+ "end_line" : 68
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Raynos/for-each.git",
+ "revision" : "7adaf8162a12d55f6ea3fb0bf5e999035dfd303a",
+ "path" : ""
+ },
+ "resolved_revision" : "7adaf8162a12d55f6ea3fb0bf5e999035dfd303a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:31.000717894Z",
+ "end_time" : "2023-07-20T07:29:34.000047857Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 90.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 32,
+ "end_line" : 32
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 33,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012 Raynos",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/Raynos/function-bind.git",
+ "revision" : "1213f807066d1cb8d39a0592d5118f4b1f03de4a",
+ "path" : ""
+ },
+ "resolved_revision" : "1213f807066d1cb8d39a0592d5118f4b1f03de4a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:09:25.000778237Z",
+ "end_time" : "2023-07-19T12:09:28.000438801Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 90.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 36,
+ "end_line" : 36
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Raynos",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/SBoudrias/Inquirer.js.git",
+ "revision" : "808d5538531c1ca1c34f832d77bc98dfd0ba4000",
+ "path" : ""
+ },
+ "resolved_revision" : "808d5538531c1ca1c34f832d77bc98dfd0ba4000"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:56:06.000737529Z",
+ "end_time" : "2023-07-19T12:56:15.000286197Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 406,
+ "end_line" : 406
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/checkbox/package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/confirm/README.md",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/confirm/package.json",
+ "start_line" : 16,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/core/package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/editor/package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/expand/README.md",
+ "start_line" : 61,
+ "end_line" : 61
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/expand/package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/input/README.md",
+ "start_line" : 35,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/input/package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/inquirer/package.json",
+ "start_line" : 38,
+ "end_line" : 38
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/password/README.md",
+ "start_line" : 34,
+ "end_line" : 34
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/password/package.json",
+ "start_line" : 17,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/select/package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012 Simon Boudrias",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2016 Simon Boudrias (twitter vaxilart (https://twitter.com/Vaxilart))",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 405,
+ "end_line" : 405
+ }
+ }, {
+ "statement" : "Copyright (c) 2019 Simon Boudrias (twitter vaxilart (https://twitter.com/Vaxilart))",
+ "location" : {
+ "path" : "packages/confirm/README.md",
+ "start_line" : 30,
+ "end_line" : 30
+ }
+ }, {
+ "statement" : "Copyright (c) 2019 Simon Boudrias (twitter vaxilart (https://twitter.com/Vaxilart))",
+ "location" : {
+ "path" : "packages/expand/README.md",
+ "start_line" : 60,
+ "end_line" : 60
+ }
+ }, {
+ "statement" : "Copyright (c) 2019 Simon Boudrias (twitter vaxilart (https://twitter.com/Vaxilart))",
+ "location" : {
+ "path" : "packages/input/README.md",
+ "start_line" : 34,
+ "end_line" : 34
+ }
+ }, {
+ "statement" : "Copyright (c) 2019 Simon Boudrias (twitter vaxilart (https://twitter.com/Vaxilart))",
+ "location" : {
+ "path" : "packages/password/README.md",
+ "start_line" : 33,
+ "end_line" : 33
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/SBoudrias/run-async.git",
+ "revision" : "f3e0a18abf6e9569abfcf327daa9351c95f109b1",
+ "path" : ""
+ },
+ "resolved_revision" : "f3e0a18abf6e9569abfcf327daa9351c95f109b1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:40:54.000018960Z",
+ "end_time" : "2023-07-19T12:40:56.000334592Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 79,
+ "end_line" : 79
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Simon Boudrias",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Simon Boudrias",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 78,
+ "end_line" : 78
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/WebReflection/flatted.git",
+ "revision" : "5e3ec39a3e613e70c56f3775c790ddebdbc363a6",
+ "path" : ""
+ },
+ "resolved_revision" : "5e3ec39a3e613e70c56f3775c790ddebdbc363a6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:04.000176218Z",
+ "end_time" : "2023-07-19T13:02:12.000548819Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "cjs/index.js",
+ "start_line" : 4,
+ "end_line" : 18
+ },
+ "score" : 97.44
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "esm/index.js",
+ "start_line" : 4,
+ "end_line" : 18
+ },
+ "score" : 97.44
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 18
+ },
+ "score" : 97.44
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 80.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2018, Andrea Giammarchi, (ISC)",
+ "location" : {
+ "path" : "min.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "(c) 2018, Andrea Giammarchi, (ISC)",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Andrea Giammarchi",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Andrea Giammarchi",
+ "location" : {
+ "path" : "cjs/index.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Andrea Giammarchi",
+ "location" : {
+ "path" : "esm/index.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Andrea Giammarchi",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/WebReflection/html-escaper.git",
+ "revision" : "88f420ad94369f9be46c24ca52eb77e3da224f37",
+ "path" : ""
+ },
+ "resolved_revision" : "88f420ad94369f9be46c24ca52eb77e3da224f37"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:18:41.000310540Z",
+ "end_time" : "2023-07-20T07:18:44.000833836Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "cjs/index.js",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "esm/index.js",
+ "start_line" : 4,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 7,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017-present by Andrea Giammarchi",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2017-present by Andrea Giammarchi",
+ "location" : {
+ "path" : "cjs/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2017-present by Andrea Giammarchi",
+ "location" : {
+ "path" : "esm/index.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2017-present by Andrea Giammarchi",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/acornjs/acorn-jsx.git",
+ "revision" : "f5c107b85872230d5016dbb97d71788575cda9c3",
+ "path" : ""
+ },
+ "resolved_revision" : "f5c107b85872230d5016dbb97d71788575cda9c3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:08:06.000506584Z",
+ "end_time" : "2023-07-19T13:08:13.000277090Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/tests-jsx.js",
+ "start_line" : 2,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 40,
+ "end_line" : 40
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 17,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012-2017 by Ingvar Stepanyan",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/acornjs/acorn.git",
+ "revision" : "88c2669600a6d33134755fb91ff8ab9cd9ebc284",
+ "path" : ""
+ },
+ "resolved_revision" : "88c2669600a6d33134755fb91ff8ab9cd9ebc284"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:36:37.000755626Z",
+ "end_time" : "2023-07-20T06:39:04.000467079Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17173,
+ "end_line" : 17183
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 11,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 37,
+ "end_line" : 39
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 111,
+ "end_line" : 113
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 135,
+ "end_line" : 137
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 520,
+ "end_line" : 522
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 668,
+ "end_line" : 670
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 877,
+ "end_line" : 879
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 996,
+ "end_line" : 998
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1342,
+ "end_line" : 1344
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1567,
+ "end_line" : 1569
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1685,
+ "end_line" : 1687
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1705,
+ "end_line" : 1707
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1915,
+ "end_line" : 1917
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2152,
+ "end_line" : 2154
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2200,
+ "end_line" : 2202
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2226,
+ "end_line" : 2228
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2326,
+ "end_line" : 2328
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2418,
+ "end_line" : 2420
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2696,
+ "end_line" : 2698
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2951,
+ "end_line" : 2953
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3177,
+ "end_line" : 3179
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3311,
+ "end_line" : 3313
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3406,
+ "end_line" : 3408
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3642,
+ "end_line" : 3644
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3701,
+ "end_line" : 3703
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3839,
+ "end_line" : 3841
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3951,
+ "end_line" : 3953
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4280,
+ "end_line" : 4282
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4435,
+ "end_line" : 4437
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4465,
+ "end_line" : 4467
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4511,
+ "end_line" : 4513
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 5413,
+ "end_line" : 5415
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 5524,
+ "end_line" : 5526
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6525,
+ "end_line" : 6527
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6543,
+ "end_line" : 6545
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6738,
+ "end_line" : 6740
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6771,
+ "end_line" : 6773
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6831,
+ "end_line" : 6833
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6850,
+ "end_line" : 6852
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6884,
+ "end_line" : 6886
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7169,
+ "end_line" : 7171
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7262,
+ "end_line" : 7264
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7305,
+ "end_line" : 7307
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7428,
+ "end_line" : 7430
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7628,
+ "end_line" : 7630
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7840,
+ "end_line" : 7842
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8004,
+ "end_line" : 8006
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8164,
+ "end_line" : 8166
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8300,
+ "end_line" : 8302
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8334,
+ "end_line" : 8336
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8446,
+ "end_line" : 8448
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8805,
+ "end_line" : 8807
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8873,
+ "end_line" : 8875
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8959,
+ "end_line" : 8961
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8979,
+ "end_line" : 8981
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9009,
+ "end_line" : 9011
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9085,
+ "end_line" : 9087
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9118,
+ "end_line" : 9120
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9273,
+ "end_line" : 9275
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9295,
+ "end_line" : 9297
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9363,
+ "end_line" : 9365
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9397,
+ "end_line" : 9399
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9431,
+ "end_line" : 9433
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9555,
+ "end_line" : 9557
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9603,
+ "end_line" : 9605
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9627,
+ "end_line" : 9629
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9664,
+ "end_line" : 9666
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9714,
+ "end_line" : 9716
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10252,
+ "end_line" : 10254
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10702,
+ "end_line" : 10704
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10742,
+ "end_line" : 10744
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10836,
+ "end_line" : 10838
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11337,
+ "end_line" : 11339
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11362,
+ "end_line" : 11364
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11379,
+ "end_line" : 11381
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11557,
+ "end_line" : 11559
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11725,
+ "end_line" : 11727
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11814,
+ "end_line" : 11816
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11904,
+ "end_line" : 11906
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12043,
+ "end_line" : 12045
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12194,
+ "end_line" : 12196
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12616,
+ "end_line" : 12618
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12852,
+ "end_line" : 12854
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13103,
+ "end_line" : 13105
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13117,
+ "end_line" : 13119
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13419,
+ "end_line" : 13421
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13610,
+ "end_line" : 13612
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13838,
+ "end_line" : 13840
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13877,
+ "end_line" : 13879
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13915,
+ "end_line" : 13917
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13951,
+ "end_line" : 13953
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13987,
+ "end_line" : 13989
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14255,
+ "end_line" : 14257
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14291,
+ "end_line" : 14293
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14328,
+ "end_line" : 14330
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14412,
+ "end_line" : 14414
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14484,
+ "end_line" : 14486
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14529,
+ "end_line" : 14531
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14568,
+ "end_line" : 14570
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14627,
+ "end_line" : 14629
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14681,
+ "end_line" : 14683
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14906,
+ "end_line" : 14908
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14933,
+ "end_line" : 14935
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14991,
+ "end_line" : 14993
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15036,
+ "end_line" : 15038
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15124,
+ "end_line" : 15126
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15156,
+ "end_line" : 15158
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15235,
+ "end_line" : 15237
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15358,
+ "end_line" : 15360
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15419,
+ "end_line" : 15421
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15496,
+ "end_line" : 15498
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15527,
+ "end_line" : 15529
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15577,
+ "end_line" : 15579
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15679,
+ "end_line" : 15681
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15722,
+ "end_line" : 15724
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15757,
+ "end_line" : 15759
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15787,
+ "end_line" : 15789
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15828,
+ "end_line" : 15830
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15902,
+ "end_line" : 15904
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15935,
+ "end_line" : 15937
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16036,
+ "end_line" : 16038
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16165,
+ "end_line" : 16167
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16225,
+ "end_line" : 16227
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16276,
+ "end_line" : 16278
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16302,
+ "end_line" : 16304
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16341,
+ "end_line" : 16343
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16357,
+ "end_line" : 16359
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16455,
+ "end_line" : 16457
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16507,
+ "end_line" : 16509
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16549,
+ "end_line" : 16551
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16725,
+ "end_line" : 16727
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17102,
+ "end_line" : 17104
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17120,
+ "end_line" : 17122
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17138,
+ "end_line" : 17140
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17154,
+ "end_line" : 17156
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17256,
+ "end_line" : 17258
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17294,
+ "end_line" : 17296
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17324,
+ "end_line" : 17326
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17366,
+ "end_line" : 17368
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17406,
+ "end_line" : 17408
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17533,
+ "end_line" : 17535
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17617,
+ "end_line" : 17619
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17654,
+ "end_line" : 17656
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17674,
+ "end_line" : 17676
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17703,
+ "end_line" : 17705
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17742,
+ "end_line" : 17744
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17835,
+ "end_line" : 17837
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17876,
+ "end_line" : 17878
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17907,
+ "end_line" : 17909
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17946,
+ "end_line" : 17948
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18004,
+ "end_line" : 18006
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18029,
+ "end_line" : 18031
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18052,
+ "end_line" : 18054
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18082,
+ "end_line" : 18084
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18107,
+ "end_line" : 18109
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18139,
+ "end_line" : 18141
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18207,
+ "end_line" : 18209
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18366,
+ "end_line" : 18368
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18429,
+ "end_line" : 18431
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18452,
+ "end_line" : 18454
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18926,
+ "end_line" : 18928
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 9,
+ "end_line" : 11
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 68,
+ "end_line" : 70
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 180,
+ "end_line" : 182
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 284,
+ "end_line" : 286
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 475,
+ "end_line" : 477
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1198,
+ "end_line" : 1200
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1316,
+ "end_line" : 1318
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1650,
+ "end_line" : 1652
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1681,
+ "end_line" : 1683
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1851,
+ "end_line" : 1853
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2192,
+ "end_line" : 2194
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2212,
+ "end_line" : 2214
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2465,
+ "end_line" : 2467
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2561,
+ "end_line" : 2563
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2586,
+ "end_line" : 2588
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2605,
+ "end_line" : 2607
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2622,
+ "end_line" : 2624
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2664,
+ "end_line" : 2666
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2697,
+ "end_line" : 2699
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2711,
+ "end_line" : 2713
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2738,
+ "end_line" : 2740
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2826,
+ "end_line" : 2828
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2867,
+ "end_line" : 2869
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2888,
+ "end_line" : 2890
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2926,
+ "end_line" : 2928
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2965,
+ "end_line" : 2967
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3143,
+ "end_line" : 3145
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3180,
+ "end_line" : 3182
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3200,
+ "end_line" : 3202
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3256,
+ "end_line" : 3258
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3415,
+ "end_line" : 3417
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3478,
+ "end_line" : 3480
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3501,
+ "end_line" : 3503
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause AND LicenseRef-scancode-facebook-patent-rights-2",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3975,
+ "end_line" : 3977
+ },
+ "score" : 90.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 11,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-loose/LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-loose/LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-loose/README.md",
+ "start_line" : 18,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-loose/package.json",
+ "start_line" : 35,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-walk/LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-walk/LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-walk/README.md",
+ "start_line" : 8,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn-walk/package.json",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn/LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn/LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn/README.md",
+ "start_line" : 7,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn/package.json",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "acorn/src/index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/angular.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/backbone.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/ember.js",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/jquery.js",
+ "start_line" : 9,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/jquery.js",
+ "start_line" : 544,
+ "end_line" : 545
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15239,
+ "end_line" : 15239
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15245,
+ "end_line" : 15262
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16195,
+ "end_line" : 16195
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18273,
+ "end_line" : 18273
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3322,
+ "end_line" : 3322
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/bench/package.json",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2010-2016 Google, Inc. http://angularjs.org",
+ "location" : {
+ "path" : "test/bench/fixtures/angular.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "(c) 2010-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Backbone",
+ "location" : {
+ "path" : "test/bench/fixtures/backbone.js",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "(c) Sindre Sorhus",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18272,
+ "end_line" : 18272
+ }
+ }, {
+ "statement" : "(c) Sindre Sorhus",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3321,
+ "end_line" : 3321
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Ariya Hidayat ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Arpad Borsos ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 9,
+ "end_line" : 9
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Yusuke Suzuki ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Arpad Borsos ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Joost-Wim Boekesteijn ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright (c) 2012-2013 TJ Holowaychuk",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15241,
+ "end_line" : 15241
+ }
+ }, {
+ "statement" : "Copyright (c) 2012-2018 by various contributors",
+ "location" : {
+ "path" : "acorn-loose/LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2012-2018 by various contributors",
+ "location" : {
+ "path" : "acorn-walk/LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2012-2018 by various contributors",
+ "location" : {
+ "path" : "acorn/LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16299,
+ "end_line" : 16299
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17171,
+ "end_line" : 17171
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17253,
+ "end_line" : 17253
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17291,
+ "end_line" : 17291
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17321,
+ "end_line" : 17321
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17363,
+ "end_line" : 17363
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17403,
+ "end_line" : 17403
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17530,
+ "end_line" : 17530
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17614,
+ "end_line" : 17614
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17651,
+ "end_line" : 17651
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17671,
+ "end_line" : 17671
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17700,
+ "end_line" : 17700
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17739,
+ "end_line" : 17739
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17832,
+ "end_line" : 17832
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17873,
+ "end_line" : 17873
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17904,
+ "end_line" : 17904
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17943,
+ "end_line" : 17943
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18001,
+ "end_line" : 18001
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18026,
+ "end_line" : 18026
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18049,
+ "end_line" : 18049
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18079,
+ "end_line" : 18079
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18104,
+ "end_line" : 18104
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18136,
+ "end_line" : 18136
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2923,
+ "end_line" : 2923
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3140,
+ "end_line" : 3140
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3177,
+ "end_line" : 3177
+ }
+ }, {
+ "statement" : "Copyright (c) 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3197,
+ "end_line" : 3197
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Andreas Lubbe",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15242,
+ "end_line" : 15242
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Ingvar Stepanyan ",
+ "location" : {
+ "path" : "test/tests-harmony.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Tiancheng Timothy Gu",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15243,
+ "end_line" : 15243
+ }
+ }, {
+ "statement" : "Copyright 2011-2017 Tilde Inc. and contributors",
+ "location" : {
+ "path" : "test/bench/fixtures/ember.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright 2013-present Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 132,
+ "end_line" : 132
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 34,
+ "end_line" : 34
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 108,
+ "end_line" : 108
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 517,
+ "end_line" : 517
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 665,
+ "end_line" : 665
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 874,
+ "end_line" : 874
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 993,
+ "end_line" : 993
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1339,
+ "end_line" : 1339
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1682,
+ "end_line" : 1682
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1702,
+ "end_line" : 1702
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1912,
+ "end_line" : 1912
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2149,
+ "end_line" : 2149
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2197,
+ "end_line" : 2197
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2223,
+ "end_line" : 2223
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2323,
+ "end_line" : 2323
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2415,
+ "end_line" : 2415
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2693,
+ "end_line" : 2693
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 2948,
+ "end_line" : 2948
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3174,
+ "end_line" : 3174
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3308,
+ "end_line" : 3308
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3403,
+ "end_line" : 3403
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3639,
+ "end_line" : 3639
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3698,
+ "end_line" : 3698
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3836,
+ "end_line" : 3836
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 3948,
+ "end_line" : 3948
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4432,
+ "end_line" : 4432
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4508,
+ "end_line" : 4508
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 5410,
+ "end_line" : 5410
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 5521,
+ "end_line" : 5521
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6540,
+ "end_line" : 6540
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6735,
+ "end_line" : 6735
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6828,
+ "end_line" : 6828
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6847,
+ "end_line" : 6847
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6881,
+ "end_line" : 6881
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7166,
+ "end_line" : 7166
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7259,
+ "end_line" : 7259
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7302,
+ "end_line" : 7302
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7425,
+ "end_line" : 7425
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7625,
+ "end_line" : 7625
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 7837,
+ "end_line" : 7837
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8001,
+ "end_line" : 8001
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8297,
+ "end_line" : 8297
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8331,
+ "end_line" : 8331
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8802,
+ "end_line" : 8802
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8870,
+ "end_line" : 8870
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9006,
+ "end_line" : 9006
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9082,
+ "end_line" : 9082
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9115,
+ "end_line" : 9115
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9270,
+ "end_line" : 9270
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9394,
+ "end_line" : 9394
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9428,
+ "end_line" : 9428
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9552,
+ "end_line" : 9552
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9661,
+ "end_line" : 9661
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9711,
+ "end_line" : 9711
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10249,
+ "end_line" : 10249
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10699,
+ "end_line" : 10699
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10739,
+ "end_line" : 10739
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11334,
+ "end_line" : 11334
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11359,
+ "end_line" : 11359
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11376,
+ "end_line" : 11376
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11554,
+ "end_line" : 11554
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11722,
+ "end_line" : 11722
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12040,
+ "end_line" : 12040
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12191,
+ "end_line" : 12191
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12849,
+ "end_line" : 12849
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13100,
+ "end_line" : 13100
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13114,
+ "end_line" : 13114
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13416,
+ "end_line" : 13416
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13607,
+ "end_line" : 13607
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13835,
+ "end_line" : 13835
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13874,
+ "end_line" : 13874
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13912,
+ "end_line" : 13912
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13948,
+ "end_line" : 13948
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 13984,
+ "end_line" : 13984
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14252,
+ "end_line" : 14252
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14288,
+ "end_line" : 14288
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14325,
+ "end_line" : 14325
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14409,
+ "end_line" : 14409
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14481,
+ "end_line" : 14481
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14526,
+ "end_line" : 14526
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14565,
+ "end_line" : 14565
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14624,
+ "end_line" : 14624
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14678,
+ "end_line" : 14678
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14903,
+ "end_line" : 14903
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14988,
+ "end_line" : 14988
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15033,
+ "end_line" : 15033
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15121,
+ "end_line" : 15121
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15153,
+ "end_line" : 15153
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15355,
+ "end_line" : 15355
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15416,
+ "end_line" : 15416
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15493,
+ "end_line" : 15493
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15524,
+ "end_line" : 15524
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15574,
+ "end_line" : 15574
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15676,
+ "end_line" : 15676
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15719,
+ "end_line" : 15719
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15754,
+ "end_line" : 15754
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15784,
+ "end_line" : 15784
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15825,
+ "end_line" : 15825
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15899,
+ "end_line" : 15899
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15932,
+ "end_line" : 15932
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16033,
+ "end_line" : 16033
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16162,
+ "end_line" : 16162
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16222,
+ "end_line" : 16222
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16273,
+ "end_line" : 16273
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16338,
+ "end_line" : 16338
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16354,
+ "end_line" : 16354
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16452,
+ "end_line" : 16452
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16504,
+ "end_line" : 16504
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16546,
+ "end_line" : 16546
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17099,
+ "end_line" : 17099
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17117,
+ "end_line" : 17117
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17135,
+ "end_line" : 17135
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 17151,
+ "end_line" : 17151
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18363,
+ "end_line" : 18363
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18426,
+ "end_line" : 18426
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18449,
+ "end_line" : 18449
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18923,
+ "end_line" : 18923
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 65,
+ "end_line" : 65
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 177,
+ "end_line" : 177
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 281,
+ "end_line" : 281
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 472,
+ "end_line" : 472
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1195,
+ "end_line" : 1195
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1647,
+ "end_line" : 1647
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1678,
+ "end_line" : 1678
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2558,
+ "end_line" : 2558
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2583,
+ "end_line" : 2583
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2602,
+ "end_line" : 2602
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2619,
+ "end_line" : 2619
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2661,
+ "end_line" : 2661
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2694,
+ "end_line" : 2694
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2708,
+ "end_line" : 2708
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2735,
+ "end_line" : 2735
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2823,
+ "end_line" : 2823
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2864,
+ "end_line" : 2864
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2885,
+ "end_line" : 2885
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2962,
+ "end_line" : 2962
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3412,
+ "end_line" : 3412
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3475,
+ "end_line" : 3475
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3498,
+ "end_line" : 3498
+ }
+ }, {
+ "statement" : "Copyright 2013-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3972,
+ "end_line" : 3972
+ }
+ }, {
+ "statement" : "Copyright 2014-2015, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 18204,
+ "end_line" : 18204
+ }
+ }, {
+ "statement" : "Copyright 2014-2015, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 3253,
+ "end_line" : 3253
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4277,
+ "end_line" : 4277
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 4462,
+ "end_line" : 4462
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6768,
+ "end_line" : 6768
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8956,
+ "end_line" : 8956
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8976,
+ "end_line" : 8976
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9292,
+ "end_line" : 9292
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11811,
+ "end_line" : 11811
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 14930,
+ "end_line" : 14930
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1848,
+ "end_line" : 1848
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2189,
+ "end_line" : 2189
+ }
+ }, {
+ "statement" : "Copyright 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2209,
+ "end_line" : 2209
+ }
+ }, {
+ "statement" : "Copyright 2015-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 1564,
+ "end_line" : 1564
+ }
+ }, {
+ "statement" : "Copyright 2015-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 6522,
+ "end_line" : 6522
+ }
+ }, {
+ "statement" : "Copyright 2015-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8161,
+ "end_line" : 8161
+ }
+ }, {
+ "statement" : "Copyright 2015-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 11901,
+ "end_line" : 11901
+ }
+ }, {
+ "statement" : "Copyright 2015-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 12613,
+ "end_line" : 12613
+ }
+ }, {
+ "statement" : "Copyright 2015-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 16722,
+ "end_line" : 16722
+ }
+ }, {
+ "statement" : "Copyright 2015-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 2462,
+ "end_line" : 2462
+ }
+ }, {
+ "statement" : "Copyright 2016-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 8443,
+ "end_line" : 8443
+ }
+ }, {
+ "statement" : "Copyright 2016-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9360,
+ "end_line" : 9360
+ }
+ }, {
+ "statement" : "Copyright 2016-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9600,
+ "end_line" : 9600
+ }
+ }, {
+ "statement" : "Copyright 2016-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 9624,
+ "end_line" : 9624
+ }
+ }, {
+ "statement" : "Copyright 2016-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 10833,
+ "end_line" : 10833
+ }
+ }, {
+ "statement" : "Copyright 2016-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react-dom.js",
+ "start_line" : 15232,
+ "end_line" : 15232
+ }
+ }, {
+ "statement" : "Copyright 2016-present, Facebook, Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/react.js",
+ "start_line" : 1313,
+ "end_line" : 1313
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors",
+ "location" : {
+ "path" : "test/bench/fixtures/jquery.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "Copyright jQuery Foundation and other contributors",
+ "location" : {
+ "path" : "test/bench/fixtures/jquery.js",
+ "start_line" : 543,
+ "end_line" : 543
+ }
+ }, {
+ "statement" : "Portions Copyright 2006-2011 Strobe Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/ember.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Portions Copyright 2008-2011 Apple Inc.",
+ "location" : {
+ "path" : "test/bench/fixtures/ember.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ajv-validator/ajv.git",
+ "revision" : "fe591439f34e24030f69df9eb8d91e6d037a3af7",
+ "path" : ""
+ },
+ "resolved_revision" : "fe591439f34e24030f69df9eb8d91e6d037a3af7"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:17:31.000646049Z",
+ "end_time" : "2023-07-18T07:17:51.000030748Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-free-unknown",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 143,
+ "end_line" : 143
+ },
+ "score" : 90.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 171,
+ "end_line" : 171
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 172,
+ "end_line" : 172
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 173,
+ "end_line" : 173
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 1495,
+ "end_line" : 1497
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 58,
+ "end_line" : 58
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015-2017 Evgeny Poberezkin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/alexei/sprintf.js.git",
+ "revision" : "747b806c2dab5b64d5c9958c42884946a187c3b1",
+ "path" : ""
+ },
+ "resolved_revision" : "747b806c2dab5b64d5c9958c42884946a187c3b1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:05:08.000471773Z",
+ "end_time" : "2023-07-19T13:05:10.000995515Z",
+ "licenses" : [ {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 88,
+ "end_line" : 88
+ },
+ "score" : 83.33
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "dist/angular-sprintf.min.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "dist/sprintf.min.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause-Clear",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2007-2014, Alexandru Marasteanu",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/alexeyraspopov/picocolors.git",
+ "revision" : "228cea3fa726857785b8c069cccc58e9743cd71d",
+ "path" : ""
+ },
+ "resolved_revision" : "228cea3fa726857785b8c069cccc58e9743cd71d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:04:51.000923449Z",
+ "end_time" : "2023-07-19T12:04:54.000420108Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ampproject/remapping.git",
+ "revision" : "ee9a0b022cb8f739ae36bd39a2ca4bfdf1d859c1",
+ "path" : ""
+ },
+ "resolved_revision" : "ee9a0b022cb8f739ae36bd39a2ca4bfdf1d859c1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:41:49.000603480Z",
+ "end_time" : "2023-07-18T07:41:59.000195852Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 188
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 192,
+ "end_line" : 202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/bundle.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/bundle.js.map",
+ "start_line" : 29,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/main.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/main.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/main.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/placeholder.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/placeholder.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/placeholder.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js",
+ "start_line" : 23,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js.map",
+ "start_line" : 29,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/main.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/main.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/main.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/placeholder.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/placeholder.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/placeholder.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.min.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.min.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/a.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/a.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/a.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/b.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/b.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/b.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js",
+ "start_line" : 8,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js",
+ "start_line" : 27,
+ "end_line" : 37
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js.map",
+ "start_line" : 22,
+ "end_line" : 32
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/index.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/index.js.map",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/index.mjs",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 6,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2019 Google LLC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 190,
+ "end_line" : 190
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/bundle.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/bundle.js.map",
+ "start_line" : 27,
+ "end_line" : 27
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/main.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/main.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/main.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/placeholder.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/placeholder.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-hires/files/placeholder.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js",
+ "start_line" : 21,
+ "end_line" : 21
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/bundle.js.map",
+ "start_line" : 27,
+ "end_line" : 27
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/main.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/main.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/main.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/placeholder.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/placeholder.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-concat-lowres/files/placeholder.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.min.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.min.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-minify/files/helloworld.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/a.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/a.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/a.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/b.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/b.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/b.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js",
+ "start_line" : 25,
+ "end_line" : 25
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/bundle.js.map",
+ "start_line" : 20,
+ "end_line" : 20
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/index.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/index.js.map",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2019 The AMP HTML Authors",
+ "location" : {
+ "path" : "test/samples/transpile-rollup/files/index.mjs",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ashtuchkin/iconv-lite.git",
+ "revision" : "efbbb0937ca8dda1c14e0b69958b9d6f20771f7a",
+ "path" : ""
+ },
+ "resolved_revision" : "efbbb0937ca8dda1c14e0b69958b9d6f20771f7a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:52:39.000014698Z",
+ "end_time" : "2023-07-19T12:52:44.000098381Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 13,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/index.d.ts",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2011 Baidu /duty/' E1OAdegUPECdeg+-OPA http://www.miibeian.gov.cn",
+ "location" : {
+ "path" : "test/gbkFile.txt",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "(c) ICPO$?030173oA src http://gimg.baidu.com/img/gs.gif",
+ "location" : {
+ "path" : "test/gbkFile.txt",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Alexander Shtuchkin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) Microsoft Corporation",
+ "location" : {
+ "path" : "lib/index.d.ts",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/avajs/default-require-extensions.git",
+ "revision" : "409345923c4a4d1c751b3dec37ec750ee0b1a8f1",
+ "path" : ""
+ },
+ "resolved_revision" : "409345923c4a4d1c751b3dec37ec750ee0b1a8f1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:18:30.000579099Z",
+ "end_time" : "2023-07-18T07:18:32.000825989Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 7,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Node.js contributors",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright (c) James Talmage (https://github.com/jamestalmage)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/avajs/find-cache-dir.git",
+ "revision" : "21ae9442c2188b5c6f2a22219af779a2476e77a0",
+ "path" : ""
+ },
+ "resolved_revision" : "21ae9442c2188b5c6f2a22219af779a2476e77a0"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:40:27.000293953Z",
+ "end_time" : "2023-07-19T12:40:29.000457390Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "89f38880ceb908098071e1daa646690a100fb7dc",
+ "path" : ""
+ },
+ "resolved_revision" : "89f38880ceb908098071e1daa646690a100fb7dc"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:01:52.000113055Z",
+ "end_time" : "2023-07-18T06:12:05.000163014Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-parser/test/expressions/esprima/LICENSE",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-parser/test/fixtures/esprima/LICENSE",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helpers/package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helpers/scripts/generate-regenerator-runtime.js",
+ "start_line" : 35,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helpers/src/helpers-generated.ts",
+ "start_line" : 74,
+ "end_line" : 74
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helpers/src/helpers/regeneratorRuntime.js",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-parser/LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-parser/package.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-traverse/package.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012-2014 by various contributors",
+ "location" : {
+ "path" : "packages/babel-parser/LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "packages/babel-helpers/scripts/generate-regenerator-runtime.js",
+ "start_line" : 35,
+ "end_line" : 35
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "packages/babel-helpers/src/helpers-generated.ts",
+ "start_line" : 74,
+ "end_line" : 74
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present, Facebook, Inc.",
+ "location" : {
+ "path" : "packages/babel-helpers/src/helpers/regeneratorRuntime.js",
+ "start_line" : 12,
+ "end_line" : 12
+ }
+ }, {
+ "statement" : "Copyright (c) jQuery Foundation, Inc. and Contributors",
+ "location" : {
+ "path" : "packages/babel-parser/test/expressions/esprima/LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) jQuery Foundation, Inc. and Contributors",
+ "location" : {
+ "path" : "packages/babel-parser/test/fixtures/esprima/LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "eb621ac822df8d4656970b95394622957e1f6245",
+ "path" : ""
+ },
+ "resolved_revision" : "eb621ac822df8d4656970b95394622957e1f6245"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:12:56.000844416Z",
+ "end_time" : "2023-07-18T06:22:43.000893360Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-validator-identifier/package.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "0f25e4a15f8cfb525f4f1481ff5117d28cd870ed",
+ "path" : ""
+ },
+ "resolved_revision" : "0f25e4a15f8cfb525f4f1481ff5117d28cd870ed"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:25:34.000979121Z",
+ "end_time" : "2023-07-18T06:35:38.000863500Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-module-transforms/package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8",
+ "path" : ""
+ },
+ "resolved_revision" : "7c91b80f316bbe0872897e098e3974a94a1b7ff8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:37:18.000423585Z",
+ "end_time" : "2023-07-18T06:48:44.000481097Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-code-frame/package.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-hoist-variables/package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-module-imports/package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-split-export-declaration/package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-validator-option/package.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-highlight/package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "4ed66dd0b7a82df4a469bf3e71af4a495ce128b3",
+ "path" : ""
+ },
+ "resolved_revision" : "4ed66dd0b7a82df4a469bf3e71af4a495ce128b3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:51:44.000353896Z",
+ "end_time" : "2023-07-18T07:03:31.000795401Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/input.js",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/input.js",
+ "start_line" : 31,
+ "end_line" : 49
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/output.js",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/output.js",
+ "start_line" : 27,
+ "end_line" : 45
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/input.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/input.js",
+ "start_line" : 32,
+ "end_line" : 50
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/output.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/output.js",
+ "start_line" : 30,
+ "end_line" : 48
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-compat-data/package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-generator/package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-generator/src/buffer.ts",
+ "start_line" : 227,
+ "end_line" : 227
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/input.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/input.js",
+ "start_line" : 29,
+ "end_line" : 29
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/output.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-line-comment/output.js",
+ "start_line" : 25,
+ "end_line" : 25
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/input.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/input.js",
+ "start_line" : 30,
+ "end_line" : 30
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/output.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "packages/babel-generator/test/fixtures/comments/simple-a-lot-of-multi-comment/output.js",
+ "start_line" : 28,
+ "end_line" : 28
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "d414940e4c38eee91b63500a3129b75fbeaed71c",
+ "path" : ""
+ },
+ "resolved_revision" : "d414940e4c38eee91b63500a3129b75fbeaed71c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:05:19.000434892Z",
+ "end_time" : "2023-07-18T07:17:07.000832369Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-compilation-targets/package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-template/package.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-types/package.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "eb71c632c62f9fd6dc61c46c1ff195fb10b25e03",
+ "path" : ""
+ },
+ "resolved_revision" : "eb71c632c62f9fd6dc61c46c1ff195fb10b25e03"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:27:27.000457368Z",
+ "end_time" : "2023-07-18T07:39:22.000600641Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-core/package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "7a38850a839c99727b9bd6d949f3002c54267f97",
+ "path" : ""
+ },
+ "resolved_revision" : "7a38850a839c99727b9bd6d949f3002c54267f97"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:10:38.000241633Z",
+ "end_time" : "2023-07-19T12:23:47.000320627Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-string-parser/package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "70a13e49be1d5d5b33f60f4daed8096531c7028c",
+ "path" : ""
+ },
+ "resolved_revision" : "70a13e49be1d5d5b33f60f4daed8096531c7028c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:30:16.000647776Z",
+ "end_time" : "2023-07-20T07:40:46.000321052Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-function-name/package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "f1ac2906b1066e47503e4d82d0602acd4be94e60",
+ "path" : ""
+ },
+ "resolved_revision" : "f1ac2906b1066e47503e4d82d0602acd4be94e60"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:43:38.000994017Z",
+ "end_time" : "2023-07-20T07:54:09.000258865Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-environment-visitor/package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/babel/babel.git",
+ "revision" : "12a58cb58c07677215f5c51d60a623ca674a7a52",
+ "path" : ""
+ },
+ "resolved_revision" : "12a58cb58c07677215f5c51d60a623ca674a7a52"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:26:55.000454972Z",
+ "end_time" : "2023-07-19T12:39:22.000436178Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/babel-helper-simple-access/package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-present Sebastian McKenzie and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/benmosher/eslint-plugin-import.git",
+ "revision" : "bc3b034b59a034b4aa47b8a9e74f48fe0e14e997",
+ "path" : ""
+ },
+ "resolved_revision" : "bc3b034b59a034b4aa47b8a9e74f48fe0e14e997"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:28:30.000756958Z",
+ "end_time" : "2023-07-20T07:28:47.000901894Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "src/rules/no-named-as-default-member.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "memo-parser/package.json",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 44,
+ "end_line" : 44
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "resolvers/node/package.json",
+ "start_line" : 25,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "resolvers/webpack/package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/package.json",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Ben Mosher",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "copyright 2016 Desmond Brand",
+ "location" : {
+ "path" : "src/rules/no-named-as-default-member.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/bjyoungblood/es6-error.git",
+ "revision" : "5b553293429bac6b15d8caeab8a4174faeb38fa0",
+ "path" : ""
+ },
+ "resolved_revision" : "5b553293429bac6b15d8caeab8a4174faeb38fa0"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:16:12.000792878Z",
+ "end_time" : "2023-07-20T07:16:15.000214782Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Ben Youngblood",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/boneskull/node-environment-flags.git",
+ "revision" : "fbf451941e4721392c7c346de843514d7ad14a95",
+ "path" : ""
+ },
+ "resolved_revision" : "fbf451941e4721392c7c346de843514d7ad14a95"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:58:47.000872251Z",
+ "end_time" : "2023-07-20T07:58:53.000700580Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 176
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 59,
+ "end_line" : 59
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Christopher Hiller",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 59,
+ "end_line" : 59
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserify/resolve.git",
+ "revision" : "8eea601093612229da100e9dfbeb4b2b47693aa6",
+ "path" : ""
+ },
+ "resolved_revision" : "8eea601093612229da100e9dfbeb4b2b47693aa6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:41:25.000090418Z",
+ "end_time" : "2023-07-18T07:41:30.000770156Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "test/resolver/nested_symlinks/mylib/package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 51,
+ "end_line" : 51
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.markdown",
+ "start_line" : 283,
+ "end_line" : 285
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/resolver/multirepo/package.json",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/resolver/multirepo/packages/package-a/package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/resolver/multirepo/packages/package-b/package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012 James Halliday",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/browserslist.git",
+ "revision" : "fc5fc088c640466df62a6b6c86154b19be3de821",
+ "path" : ""
+ },
+ "resolved_revision" : "fc5fc088c640466df62a6b6c86154b19be3de821"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:43:48.000114260Z",
+ "end_time" : "2023-07-20T06:43:53.000964230Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2014 Andrey Sitnik and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/caniuse-lite.git",
+ "revision" : "01cc73e61eecf5ac219d65554e973f9b9f088216",
+ "path" : ""
+ },
+ "resolved_revision" : "01cc73e61eecf5ac219d65554e973f9b9f088216"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:41:25.000283765Z",
+ "end_time" : "2023-07-19T12:41:32.000070147Z",
+ "licenses" : [ {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 395
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 79,
+ "end_line" : 79
+ },
+ "score" : 50.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 80,
+ "end_line" : 80
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 39,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/browserslist/update-db.git",
+ "revision" : "597c6d12268e9c55368c754269872786662fe4b0",
+ "path" : ""
+ },
+ "resolved_revision" : "597c6d12268e9c55368c754269872786662fe4b0"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:18:50.000352092Z",
+ "end_time" : "2023-07-20T07:18:54.000993117Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/browserslist-diff-error/package-lock.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/browserslist-diff-error/package.json",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/browserslist-diff/package-lock.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/browserslist-diff/package.json",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-missing/package-lock.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-missing/package.json",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-npm-shrinkwrap/npm-shrinkwrap.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-npm-shrinkwrap/package.json",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-npm/package-lock.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-npm/package.json",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-yarn-v2/package.json",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-yarn-without-integrity/package.json",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-yarn-workspaces/package.json",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/update-yarn/package.json",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2022 Andrey Sitnik and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/get-package-type.git",
+ "revision" : "53f035a197b349125e43f60c8b8896664daf3942",
+ "path" : ""
+ },
+ "resolved_revision" : "53f035a197b349125e43f60c8b8896664daf3942"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:24:12.000667572Z",
+ "end_time" : "2023-07-19T12:24:17.000881739Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2020 CFWare, LLC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/node-preload.git",
+ "revision" : "f59d60cb94bafc4f4259d598ec26b543d293586d",
+ "path" : ""
+ },
+ "resolved_revision" : "f59d60cb94bafc4f4259d598ec26b543d293586d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:24:25.000257031Z",
+ "end_time" : "2023-07-19T12:24:28.000615913Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 CFWare, LLC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/cfware/process-on-spawn.git",
+ "revision" : "333106fa246ae4577ce010f8a5405d38061ec359",
+ "path" : ""
+ },
+ "resolved_revision" : "333106fa246ae4577ce010f8a5405d38061ec359"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:50:40.000931540Z",
+ "end_time" : "2023-07-18T06:50:43.000690149Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 CFWare, LLC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "a9babce885cf19c363cf1d1c645f834592c3f7a4",
+ "path" : ""
+ },
+ "resolved_revision" : "a9babce885cf19c363cf1d1c645f834592c3f7a4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:12:35.000490890Z",
+ "end_time" : "2023-07-18T06:12:37.000860371Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "f545bdb80048f527889eddb9ac1a851c6f2a2241",
+ "path" : ""
+ },
+ "resolved_revision" : "f545bdb80048f527889eddb9ac1a851c6f2a2241"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:42:49.000307890Z",
+ "end_time" : "2023-07-20T06:42:51.000781271Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 44,
+ "end_line" : 46
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-regex.git",
+ "revision" : "64735d25eb839b55bc9fae3877edb702b4c92ca2",
+ "path" : ""
+ },
+ "resolved_revision" : "64735d25eb839b55bc9fae3877edb702b4c92ca2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:15:57.000838805Z",
+ "end_time" : "2023-07-20T07:16:00.000929272Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 85,
+ "end_line" : 87
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-styles.git",
+ "revision" : "de7527a86c1cf49906b0eb32a0de1402d849ccc2",
+ "path" : ""
+ },
+ "resolved_revision" : "de7527a86c1cf49906b0eb32a0de1402d849ccc2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:40:47.000635476Z",
+ "end_time" : "2023-07-20T06:40:50.000042636Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 145,
+ "end_line" : 147
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/ansi-styles.git",
+ "revision" : "2d02d5bd070f733179007f0904eb5fb41090395a",
+ "path" : ""
+ },
+ "resolved_revision" : "2d02d5bd070f733179007f0904eb5fb41090395a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:36.000490694Z",
+ "end_time" : "2023-07-19T13:02:39.000031608Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/chalk.git",
+ "revision" : "95d74cbe8d3df3674dec1445a4608d3288d8b73c",
+ "path" : ""
+ },
+ "resolved_revision" : "95d74cbe8d3df3674dec1445a4608d3288d8b73c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:57:11.000124030Z",
+ "end_time" : "2023-07-20T07:57:32.000289099Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/chalk.git",
+ "revision" : "9776a2ae5b5b1712ccf16416b55f47e575a81fb9",
+ "path" : ""
+ },
+ "resolved_revision" : "9776a2ae5b5b1712ccf16416b55f47e575a81fb9"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:07:24.000689021Z",
+ "end_time" : "2023-07-19T13:07:29.000459280Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 312,
+ "end_line" : 314
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/slice-ansi.git",
+ "revision" : "bfb33a3eb13f2d3b8023f37ddb421eff3ea7a3ae",
+ "path" : ""
+ },
+ "resolved_revision" : "bfb33a3eb13f2d3b8023f37ddb421eff3ea7a3ae"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:43:23.000157485Z",
+ "end_time" : "2023-07-20T06:43:25.000288592Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 62,
+ "end_line" : 64
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) DC",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "c299056a42b31d7a479d6a89b41318b2a2462cc7",
+ "path" : ""
+ },
+ "resolved_revision" : "c299056a42b31d7a479d6a89b41318b2a2462cc7"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:26:48.000094431Z",
+ "end_time" : "2023-07-20T07:26:50.000441049Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 37,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "b9c492921b72c48f93568565dbdc929cf63c20e1",
+ "path" : ""
+ },
+ "resolved_revision" : "b9c492921b72c48f93568565dbdc929cf63c20e1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:59:16.000432462Z",
+ "end_time" : "2023-07-19T12:59:18.000561845Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 59,
+ "end_line" : 61
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/strip-ansi.git",
+ "revision" : "59533da99981f9d550de1ae0eb9d1a93c2383be3",
+ "path" : ""
+ },
+ "resolved_revision" : "59533da99981f9d550de1ae0eb9d1a93c2383be3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:41:02.000070916Z",
+ "end_time" : "2023-07-19T12:41:04.000231931Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "bfbe6692d549b423230292946756f3fdd79a808e",
+ "path" : ""
+ },
+ "resolved_revision" : "bfbe6692d549b423230292946756f3fdd79a808e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:09:15.000887160Z",
+ "end_time" : "2023-07-19T12:09:18.000710728Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 78,
+ "end_line" : 80
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "c5edf46896d1fc1826cb1183a60d61eecb65d749",
+ "path" : ""
+ },
+ "resolved_revision" : "c5edf46896d1fc1826cb1183a60d61eecb65d749"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:51:37.000900931Z",
+ "end_time" : "2023-07-19T12:51:40.000286760Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/supports-color.git",
+ "revision" : "7759fc135b1be07cb7411178d7b1ac33d367fec8",
+ "path" : ""
+ },
+ "resolved_revision" : "7759fc135b1be07cb7411178d7b1ac33d367fec8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:11:00.000489748Z",
+ "end_time" : "2023-07-19T13:11:02.000889949Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 64,
+ "end_line" : 66
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/wrap-ansi.git",
+ "revision" : "a28eb7d6cdbf91bccb56d04d095ca9463c15d3db",
+ "path" : ""
+ },
+ "resolved_revision" : "a28eb7d6cdbf91bccb56d04d095ca9463c15d3db"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:44:17.000795839Z",
+ "end_time" : "2023-07-19T12:44:20.000054056Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chalk/wrap-ansi.git",
+ "revision" : "2a1a55446d67c55a29e84173e99eb6abc91c937c",
+ "path" : ""
+ },
+ "resolved_revision" : "2a1a55446d67c55a29e84173e99eb6abc91c937c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:16.000045629Z",
+ "end_time" : "2023-07-19T13:02:18.000324914Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 106,
+ "end_line" : 108
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/chicoxyzzy/node-releases.git",
+ "revision" : "90b2db5f3f3f34d8a9ffd2599a493f0ba8f63d87",
+ "path" : ""
+ },
+ "resolved_revision" : "90b2db5f3f3f34d8a9ffd2599a493f0ba8f63d87"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:04:39.000480557Z",
+ "end_time" : "2023-07-19T12:04:41.000669211Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/debug-js/debug.git",
+ "revision" : "da66c86c5fd71ef570f36b5b1edfa4472149f1bc",
+ "path" : ""
+ },
+ "resolved_revision" : "da66c86c5fd71ef570f36b5b1edfa4472149f1bc"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:43:03.000399548Z",
+ "end_time" : "2023-07-20T06:43:06.000351054Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 6,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 457,
+ "end_line" : 459
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 464,
+ "end_line" : 481
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 25,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2017 TJ Holowaychuk ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2017 TJ Holowaychuk ",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 461,
+ "end_line" : 461
+ }
+ }, {
+ "statement" : "Copyright (c) 2018-2021 Josh Junon",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2018-2021 Josh Junon",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 462,
+ "end_line" : 462
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/dominictarr/through.git",
+ "revision" : "2c5a6f9a0cc54da759b6e10964f2081c358e49dc",
+ "path" : ""
+ },
+ "resolved_revision" : "2c5a6f9a0cc54da759b6e10964f2081c358e49dc"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:25:10.000501796Z",
+ "end_time" : "2023-07-18T06:25:12.000636987Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE.APACHE2",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE.APACHE2",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.MIT",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.MIT",
+ "start_line" : 5,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.markdown",
+ "start_line" : 62,
+ "end_line" : 64
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011 Dominic Tarr",
+ "location" : {
+ "path" : "LICENSE.APACHE2",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Dominic Tarr",
+ "location" : {
+ "path" : "LICENSE.MIT",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/doowb/ansi-colors.git",
+ "revision" : "d2a3fcdcd6babdd8c9429fa9277a858e2fc97e3b",
+ "path" : ""
+ },
+ "resolved_revision" : "d2a3fcdcd6babdd8c9429fa9277a858e2fc97e3b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:07:34.000407379Z",
+ "end_time" : "2023-07-19T13:07:37.000301712Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 270,
+ "end_line" : 270
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 17,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015-present, Brian Woodward",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Brian Woodward (https://github.com/doowb)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 269,
+ "end_line" : 269
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/electerious/nice-try.git",
+ "revision" : "87013431e0877520763863f77dcb77dfd11eb2a9",
+ "path" : ""
+ },
+ "resolved_revision" : "87013431e0877520763863f77dcb77dfd11eb2a9"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:10:17.000568870Z",
+ "end_time" : "2023-07-19T13:10:19.000700844Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Tobias Reich",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/fast-deep-equal.git",
+ "revision" : "d807ffc5013e710deb1c63d463a03f729bcd144d",
+ "path" : ""
+ },
+ "resolved_revision" : "d807ffc5013e710deb1c63d463a03f729bcd144d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:42:50.000006466Z",
+ "end_time" : "2023-07-18T07:42:53.000027900Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 94,
+ "end_line" : 96
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017 Evgeny Poberezkin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/fast-json-stable-stringify.git",
+ "revision" : "b3ab8bdfb91cb182c93475c2c3518d6224672bb4",
+ "path" : ""
+ },
+ "resolved_revision" : "b3ab8bdfb91cb182c93475c2c3518d6224672bb4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:16:20.000755168Z",
+ "end_time" : "2023-07-20T07:16:23.000077228Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 6,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 129,
+ "end_line" : 131
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 41,
+ "end_line" : 41
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 James Halliday",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2017 Evgeny Poberezkin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/epoberezkin/json-schema-traverse.git",
+ "revision" : "bc898eeee723833fc9d604523e00014350bcc4e1",
+ "path" : ""
+ },
+ "resolved_revision" : "bc898eeee723833fc9d604523e00014350bcc4e1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:44:17.000392525Z",
+ "end_time" : "2023-07-18T07:44:20.000189064Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 81,
+ "end_line" : 83
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017 Evgeny Poberezkin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Array.prototype.flat.git",
+ "revision" : "bf9db3ed1c011dc501be343f7d4fd03c87945aee",
+ "path" : ""
+ },
+ "resolved_revision" : "bf9db3ed1c011dc501be343f7d4fd03c87945aee"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:54:56.000549319Z",
+ "end_time" : "2023-07-20T07:54:59.000046920Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017 ECMAScript Shims",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Array.prototype.reduce.git",
+ "revision" : "9721175338f7085d7c76f73d2c827a44d1307b89",
+ "path" : ""
+ },
+ "resolved_revision" : "9721175338f7085d7c76f73d2c827a44d1307b89"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:54:33.000590865Z",
+ "end_time" : "2023-07-20T07:54:36.000985921Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 41,
+ "end_line" : 41
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Function.prototype.name.git",
+ "revision" : "1753ed2a9aa6558e6c4971b85f05bbaf7a371d22",
+ "path" : ""
+ },
+ "resolved_revision" : "1753ed2a9aa6558e6c4971b85f05bbaf7a371d22"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:04:46.000957789Z",
+ "end_time" : "2023-07-19T13:04:49.000795590Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2016 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/Object.values.git",
+ "revision" : "da744e066168573d2b4b13b9d9bd4daa386786bf",
+ "path" : ""
+ },
+ "resolved_revision" : "da744e066168573d2b4b13b9d9bd4daa386786bf"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:17:34.000712746Z",
+ "end_time" : "2023-07-20T07:17:37.000184082Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/RegExp.prototype.flags.git",
+ "revision" : "0ed48d003353a0157f14ca8f2b5e3034830dd179",
+ "path" : ""
+ },
+ "resolved_revision" : "0ed48d003353a0157f14ca8f2b5e3034830dd179"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:17:51.000589691Z",
+ "end_time" : "2023-07-20T07:17:54.000011242Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/String.prototype.trimEnd.git",
+ "revision" : "a4f90ea11058764f941e8a0e4b9dd1b519c421e6",
+ "path" : ""
+ },
+ "resolved_revision" : "a4f90ea11058764f941e8a0e4b9dd1b519c421e6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:34:56.000703342Z",
+ "end_time" : "2023-07-20T06:34:59.000886332Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 13,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017 Khaled Al-Ansari",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/String.prototype.trimStart.git",
+ "revision" : "535a3a63a25c84c7ea4c9250f7f70aff1a0eddfe",
+ "path" : ""
+ },
+ "resolved_revision" : "535a3a63a25c84c7ea4c9250f7f70aff1a0eddfe"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:46.000473985Z",
+ "end_time" : "2023-07-20T07:29:48.000823646Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 13,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017 Khaled Al-Ansari",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/array-includes.git",
+ "revision" : "4b1922ef553490e4b28008f5d0b0b629122fb04b",
+ "path" : ""
+ },
+ "resolved_revision" : "4b1922ef553490e4b28008f5d0b0b629122fb04b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:40:01.000272647Z",
+ "end_time" : "2023-07-20T06:40:03.000648968Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/es-set-tostringtag.git",
+ "revision" : "3cb0d8ae33b2982c8244648a412f9af70a720bb2",
+ "path" : ""
+ },
+ "resolved_revision" : "3cb0d8ae33b2982c8244648a412f9af70a720bb2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:51:08.000372119Z",
+ "end_time" : "2023-07-18T06:51:10.000832675Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2022 ECMAScript Shims",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/es-shims/object.getownpropertydescriptors.git",
+ "revision" : "cb869d59e110d4044b3b06edc0ec11595be17653",
+ "path" : ""
+ },
+ "resolved_revision" : "cb869d59e110d4044b3b06edc0ec11595be17653"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:17:06.000153594Z",
+ "end_time" : "2023-07-20T07:17:09.000311012Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/doctrine.git",
+ "revision" : "42434ca1f85b264a88afcfd317487a7417e6004b",
+ "path" : ""
+ },
+ "resolved_revision" : "42434ca1f85b264a88afcfd317487a7417e6004b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:04:30.000910982Z",
+ "end_time" : "2023-07-18T07:04:38.000043247Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 177
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE.closure-compiler",
+ "start_line" : 2,
+ "end_line" : 202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 98,
+ "end_line" : 114
+ },
+ "score" : 98.84
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 149,
+ "end_line" : 151
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 43,
+ "end_line" : 43
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 12.9
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "LICENSE.esprima",
+ "start_line" : 1,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 123,
+ "end_line" : 142
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012, 2011 Ariya Hidayat (http://ariya.ofilabs.com/about) (twitter ariyahidayat (http://twitter.com/ariyahidayat)) and other contributors",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 120,
+ "end_line" : 121
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 102,
+ "end_line" : 102
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/doctrine.git",
+ "revision" : "dcd631feb5dd5bcd0899dd35548da2752ea2263e",
+ "path" : ""
+ },
+ "resolved_revision" : "dcd631feb5dd5bcd0899dd35548da2752ea2263e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:40:14.000520537Z",
+ "end_time" : "2023-07-19T12:40:19.000094892Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE.closure-compiler",
+ "start_line" : 2,
+ "end_line" : 202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 158,
+ "end_line" : 160
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 12.9
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "LICENSE.BSD",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "LICENSE.esprima",
+ "start_line" : 1,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 104,
+ "end_line" : 123
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 132,
+ "end_line" : 151
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 47,
+ "end_line" : 50
+ },
+ "score" : 84.62
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 16
+ },
+ "score" : 99.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki (http://github.com/Constellation) (twitter Constellation (http://twitter.com/Constellation)) and other contributors",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 101,
+ "end_line" : 102
+ }
+ }, {
+ "statement" : "Copyright (c) 2012, 2011 Ariya Hidayat (http://ariya.ofilabs.com/about) (twitter ariyahidayat (http://twitter.com/ariyahidayat)) and other contributors",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 129,
+ "end_line" : 130
+ }
+ }, {
+ "statement" : "Copyright jQuery Foundation and other contributors, https://jquery.org",
+ "location" : {
+ "path" : "LICENSE.BSD",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint-scope.git",
+ "revision" : "8a7a21cce3a4bf17753d588f6444742235566a92",
+ "path" : ""
+ },
+ "resolved_revision" : "8a7a21cce3a4bf17753d588f6444742235566a92"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:28:52.000427163Z",
+ "end_time" : "2023-07-20T07:28:59.000780518Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 54,
+ "end_line" : 54
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/definition.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/index.js",
+ "start_line" : 6,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/pattern-visitor.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/reference.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/referencer.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/scope-manager.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/scope.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "lib/variable.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/arguments.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/catch-scope.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/child-visitor-keys.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-arrow-function-expression.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-block-scope.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-catch.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-class.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-default-parameters.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-destructuring-assignments.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-export.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-import.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-iteration-scope.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-new-target.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-object.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-rest-args.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-super.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-switch.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/es6-template-literal.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fallback.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/function-expression-name.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/get-declared-variables.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/global-increment.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/implicit-global-reference.js",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/implied-strict.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/label.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/nodejs-scope.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/optimistic.js",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/references.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/util/espree.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/with-scope.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-public-domain",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 70.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 25,
+ "end_line" : 25
+ },
+ "score" : 80.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 113,
+ "end_line" : 113
+ },
+ "score" : 80.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 54,
+ "end_line" : 54
+ },
+ "score" : 50.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT AND BSD-3-Clause",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 80.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012-2013 Yusuke Suzuki (twitter Constellation) and other contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2012-2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/index.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Alex Seville ",
+ "location" : {
+ "path" : "lib/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/implicit-global-reference.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/optimistic.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Thiago de Arruda ",
+ "location" : {
+ "path" : "lib/index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/arguments.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-arrow-function-expression.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-block-scope.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-catch.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-class.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-destructuring-assignments.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-export.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-import.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-iteration-scope.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-new-target.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-object.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-rest-args.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-switch.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-template-literal.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Toru Nagashima",
+ "location" : {
+ "path" : "tests/es6-default-parameters.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Toru Nagashima",
+ "location" : {
+ "path" : "tests/get-declared-variables.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Toru Nagashima",
+ "location" : {
+ "path" : "tests/references.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/definition.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/pattern-visitor.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/reference.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/referencer.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/scope-manager.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/scope.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "lib/variable.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/catch-scope.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/es6-super.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/function-expression-name.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/global-increment.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/implied-strict.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/label.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/nodejs-scope.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/util/espree.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/with-scope.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2016 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/child-visitor-keys.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2016 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fallback.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "copyright jQuery Foundation and other contributors, https://jquery.org",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint-visitor-keys.git",
+ "revision" : "80a3ee826297902d8fb777706670622536889eaf",
+ "path" : ""
+ },
+ "resolved_revision" : "80a3ee826297902d8fb777706670622536889eaf"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:43:34.000065719Z",
+ "end_time" : "2023-07-20T06:43:36.000799360Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 187
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 191,
+ "end_line" : 201
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 35,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/eslint.git",
+ "revision" : "9738f8cc864d769988ccf42bb70f524444df1349",
+ "path" : ""
+ },
+ "resolved_revision" : "9738f8cc864d769988ccf42bb70f524444df1349"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:53:00.000669612Z",
+ "end_time" : "2023-07-19T12:55:59.000449251Z",
+ "licenses" : [ {
+ "license" : "CC-BY-SA-2.0",
+ "location" : {
+ "path" : "docs/maintainer-guide/governance.md",
+ "start_line" : 181,
+ "end_line" : 181
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-3.0",
+ "location" : {
+ "path" : "docs/maintainer-guide/governance.md",
+ "start_line" : 181,
+ "end_line" : 181
+ },
+ "score" : 55.17
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "docs/developer-guide/architecture/dependency.svg",
+ "start_line" : 44,
+ "end_line" : 44
+ },
+ "score" : 50.0
+ }, {
+ "license" : "JSON",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 52746,
+ "end_line" : 52764
+ },
+ "score" : 100.0
+ }, {
+ "license" : "JSON",
+ "location" : {
+ "path" : "tests/performance/jshint.js",
+ "start_line" : 1078,
+ "end_line" : 1096
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 1531,
+ "end_line" : 1531
+ },
+ "score" : 75.0
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 47,
+ "end_line" : 47
+ },
+ "score" : 75.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "docs/developer-guide/contributing/README.md",
+ "start_line" : 13,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "docs/developer-guide/contributing/pull-requests.md",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-proprietary-license",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 52741,
+ "end_line" : 52742
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-proprietary-license",
+ "location" : {
+ "path" : "tests/performance/jshint.js",
+ "start_line" : 1073,
+ "end_line" : 1074
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-public-domain",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 47,
+ "end_line" : 47
+ },
+ "score" : 70.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 46,
+ "end_line" : 46
+ },
+ "score" : 80.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 905,
+ "end_line" : 905
+ },
+ "score" : 80.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-object-spread.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 52741,
+ "end_line" : 52741
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-object-spread.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/performance/jshint.js",
+ "start_line" : 1073,
+ "end_line" : 1073
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-warranty-disclaimer",
+ "location" : {
+ "path" : "docs/user-guide/configuring.md",
+ "start_line" : 881,
+ "end_line" : 881
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "Makefile.js",
+ "start_line" : 46,
+ "end_line" : 47
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/rules/utils/patterns/letters.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/rules/utils/patterns/letters.js",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/rules/utils/patterns/letters.js",
+ "start_line" : 14,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 142,
+ "end_line" : 142
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/eslint-config-eslint/LICENSE",
+ "start_line" : 4,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "packages/eslint-config-eslint/package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 50089,
+ "end_line" : 50104
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 50446,
+ "end_line" : 50463
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 50835,
+ "end_line" : 50852
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 51511,
+ "end_line" : 51511
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/bench/medium.js",
+ "start_line" : 9,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/bench/medium.js",
+ "start_line" : 558,
+ "end_line" : 559
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/bench/small.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/performance/jshint.js",
+ "start_line" : 7903,
+ "end_line" : 7903
+ },
+ "score" : 100.0
+ }, {
+ "license" : "WTFPL",
+ "location" : {
+ "path" : "tests/fixtures/autofix-integration/left-pad-expected-quiet.js",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 50.0
+ }, {
+ "license" : "WTFPL",
+ "location" : {
+ "path" : "tests/fixtures/autofix-integration/left-pad-expected.js",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 50.0
+ }, {
+ "license" : "WTFPL",
+ "location" : {
+ "path" : "tests/fixtures/autofix-integration/left-pad.js",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 50.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2009-2013 Jeremy Ashkenas, DocumentCloud Inc. Underscore",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 51510,
+ "end_line" : 51511
+ }
+ }, {
+ "statement" : "(c) 2009-2013 Jeremy Ashkenas, DocumentCloud Inc. Underscore",
+ "location" : {
+ "path" : "tests/performance/jshint.js",
+ "start_line" : 7902,
+ "end_line" : 7903
+ }
+ }, {
+ "statement" : "(c) ExpressionStatement CallExpression Identifier",
+ "location" : {
+ "path" : "tests/fixtures/code-path-analysis/try--try-catch-finally-3.js",
+ "start_line" : 38,
+ "end_line" : 38
+ }
+ }, {
+ "statement" : "(c) Steven Sanderson - http://knockoutjs.com",
+ "location" : {
+ "path" : "tests/bench/small.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2002 Douglas Crockford (www.JSLint.com)",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 52744,
+ "end_line" : 52744
+ }
+ }, {
+ "statement" : "Copyright (c) 2002 Douglas Crockford (www.JSLint.com)",
+ "location" : {
+ "path" : "tests/performance/jshint.js",
+ "start_line" : 1076,
+ "end_line" : 1076
+ }
+ }, {
+ "statement" : "Copyright (c) 2009 Thomas Robinson <280north.com>",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 50087,
+ "end_line" : 50087
+ }
+ }, {
+ "statement" : "Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors",
+ "location" : {
+ "path" : "tests/bench/medium.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "Copyright 2013 jQuery Foundation, Inc. and other contributors",
+ "location" : {
+ "path" : "tests/bench/medium.js",
+ "start_line" : 557,
+ "end_line" : 557
+ }
+ }, {
+ "statement" : "Copyright 2013-2016 Dulin Marat and other contributors",
+ "location" : {
+ "path" : "lib/rules/utils/patterns/letters.js",
+ "start_line" : 12,
+ "end_line" : 12
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "packages/eslint-config-eslint/LICENSE",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright Joyent, Inc. and other Node contributors",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 50444,
+ "end_line" : 50444
+ }
+ }, {
+ "statement" : "Copyright Joyent, Inc. and other Node contributors",
+ "location" : {
+ "path" : "tests/bench/large.js",
+ "start_line" : 50833,
+ "end_line" : 50833
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/eslint/espree.git",
+ "revision" : "6b7d0b8100537dcd5c84a7fb17bbe28edcabe05d",
+ "path" : ""
+ },
+ "resolved_revision" : "6b7d0b8100537dcd5c84a7fb17bbe28edcabe05d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:19:53.000352779Z",
+ "end_time" : "2023-07-18T07:26:13.000185076Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 78,
+ "end_line" : 78
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 15,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 37,
+ "end_line" : 55
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 19,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 450,
+ "end_line" : 468
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 2638,
+ "end_line" : 2656
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 2955,
+ "end_line" : 2973
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escope.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 397,
+ "end_line" : 415
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 728,
+ "end_line" : 746
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 1446,
+ "end_line" : 1464
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 1738,
+ "end_line" : 1756
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 2351,
+ "end_line" : 2369
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 2523,
+ "end_line" : 2541
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 2723,
+ "end_line" : 2741
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3085,
+ "end_line" : 3103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3274,
+ "end_line" : 3292
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3358,
+ "end_line" : 3376
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3442,
+ "end_line" : 3460
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3554,
+ "end_line" : 3572
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3631,
+ "end_line" : 3649
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3724,
+ "end_line" : 3742
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3858,
+ "end_line" : 3876
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3971,
+ "end_line" : 3989
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4085,
+ "end_line" : 4103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4203,
+ "end_line" : 4221
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4344,
+ "end_line" : 4362
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4499,
+ "end_line" : 4517
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4645,
+ "end_line" : 4663
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4750,
+ "end_line" : 4768
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4948,
+ "end_line" : 4966
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5123,
+ "end_line" : 5141
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5206,
+ "end_line" : 5224
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5775,
+ "end_line" : 5793
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5918,
+ "end_line" : 5936
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6232,
+ "end_line" : 6250
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6461,
+ "end_line" : 6479
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6641,
+ "end_line" : 6659
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6736,
+ "end_line" : 6754
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6809,
+ "end_line" : 6827
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6911,
+ "end_line" : 6929
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmorph.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esrefactor.js",
+ "start_line" : 5,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/estraverse.js",
+ "start_line" : 5,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tools/generate-test-fixture.js",
+ "start_line" : 7,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4719,
+ "end_line" : 4719
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "tests/fixtures/libraries/yui-3.12.0.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 99.0
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 54.55
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4718,
+ "end_line" : 4718
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4718,
+ "end_line" : 4718
+ },
+ "score" : 99.0
+ }, {
+ "license" : "LGPL-2.1-or-later",
+ "location" : {
+ "path" : "tests/fixtures/libraries/XMLHttpRequest.js",
+ "start_line" : 4,
+ "end_line" : 16
+ },
+ "score" : 97.44
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 78,
+ "end_line" : 78
+ },
+ "score" : 50.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/visitor-keys.js",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/visitor-keys.js",
+ "start_line" : 9,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/angular-1.2.5.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/backbone-1.1.0.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/benchmark.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 2460,
+ "end_line" : 2460
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/jquery-1.9.1.js",
+ "start_line" : 9,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/jquery-1.9.1.js",
+ "start_line" : 3690,
+ "end_line" : 3690
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 542,
+ "end_line" : 542
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 723,
+ "end_line" : 723
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 807,
+ "end_line" : 807
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 861,
+ "end_line" : 861
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 991,
+ "end_line" : 991
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 1202,
+ "end_line" : 1202
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 1457,
+ "end_line" : 1457
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 1584,
+ "end_line" : 1584
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 1701,
+ "end_line" : 1701
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 1881,
+ "end_line" : 1881
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 3043,
+ "end_line" : 3043
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4103,
+ "end_line" : 4103
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4322,
+ "end_line" : 4322
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4514,
+ "end_line" : 4514
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4715,
+ "end_line" : 4715
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 4999,
+ "end_line" : 4999
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 5180,
+ "end_line" : 5180
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 5350,
+ "end_line" : 5350
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 5463,
+ "end_line" : 5463
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 5542,
+ "end_line" : 5542
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 5657,
+ "end_line" : 5657
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 5937,
+ "end_line" : 5937
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 6027,
+ "end_line" : 6027
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 6110,
+ "end_line" : 6110
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 6158,
+ "end_line" : 6158
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 6234,
+ "end_line" : 6234
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 6341,
+ "end_line" : 6341
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "tests/fixtures/libraries/underscore-1.5.2.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2007-2008 Steven Levithan ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 1881,
+ "end_line" : 1881
+ }
+ }, {
+ "statement" : "(c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Underscore",
+ "location" : {
+ "path" : "tests/fixtures/libraries/underscore-1.5.2.js",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "(c) 2010-2011 Jeremy Ashkenas, DocumentCloud Inc.",
+ "location" : {
+ "path" : "tests/fixtures/libraries/backbone-1.1.0.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "(c) 2010-2014 Google, Inc. http://angularjs.org",
+ "location" : {
+ "path" : "tests/fixtures/libraries/angular-1.2.5.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "(c) 2011-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Backbone",
+ "location" : {
+ "path" : "tests/fixtures/libraries/backbone-1.1.0.js",
+ "start_line" : 4,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright (c) 2005-2007 Sam Stephenson",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 29,
+ "end_line" : 29
+ }
+ }, {
+ "statement" : "Copyright (c) 2006 Dean Edwards, GNU Lesser General",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 28,
+ "end_line" : 28
+ }
+ }, {
+ "statement" : "Copyright (c) 2006-2012 Valerio Proietti (http://mad4milk.net/)",
+ "location" : {
+ "path" : "tests/fixtures/libraries/mootools-1.4.5.js",
+ "start_line" : 23,
+ "end_line" : 23
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Ariya Hidayat ",
+ "location" : {
+ "path" : "tools/generate-test-fixture.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Sergey Ilinsky (http://www.ilinsky.com)",
+ "location" : {
+ "path" : "tests/fixtures/libraries/XMLHttpRequest.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2011-2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 443,
+ "end_line" : 443
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 2636,
+ "end_line" : 2636
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 1444,
+ "end_line" : 1444
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 1736,
+ "end_line" : 1736
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmorph.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esrefactor.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/estraverse.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Ariya Hidayat ",
+ "location" : {
+ "path" : "tools/generate-test-fixture.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Arpad Borsos ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 448,
+ "end_line" : 448
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 John Freeman ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 442,
+ "end_line" : 442
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Joost-Wim Boekesteijn ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 445,
+ "end_line" : 445
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Kris Kowal ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 446,
+ "end_line" : 446
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Mathias Bynens ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 444,
+ "end_line" : 444
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Michael Ficarra ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 440,
+ "end_line" : 440
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Michael Ficarra ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6639,
+ "end_line" : 6639
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Michael Ficarra ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6734,
+ "end_line" : 6734
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Mihai Bazon ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5915,
+ "end_line" : 5915
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Robert Gust-Bardon ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 441,
+ "end_line" : 441
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 447,
+ "end_line" : 447
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 2635,
+ "end_line" : 2635
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escodegen.browser.js",
+ "start_line" : 2953,
+ "end_line" : 2953
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/escope.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 395,
+ "end_line" : 395
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 726,
+ "end_line" : 726
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 1443,
+ "end_line" : 1443
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 1735,
+ "end_line" : 1735
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 2349,
+ "end_line" : 2349
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 2521,
+ "end_line" : 2521
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 2721,
+ "end_line" : 2721
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3083,
+ "end_line" : 3083
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3272,
+ "end_line" : 3272
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3356,
+ "end_line" : 3356
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3440,
+ "end_line" : 3440
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3552,
+ "end_line" : 3552
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3629,
+ "end_line" : 3629
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3722,
+ "end_line" : 3722
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3856,
+ "end_line" : 3856
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 3969,
+ "end_line" : 3969
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4083,
+ "end_line" : 4083
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4201,
+ "end_line" : 4201
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4342,
+ "end_line" : 4342
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4497,
+ "end_line" : 4497
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4643,
+ "end_line" : 4643
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4748,
+ "end_line" : 4748
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 4946,
+ "end_line" : 4946
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5121,
+ "end_line" : 5121
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5204,
+ "end_line" : 5204
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5773,
+ "end_line" : 5773
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 5916,
+ "end_line" : 5916
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6230,
+ "end_line" : 6230
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6459,
+ "end_line" : 6459
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6807,
+ "end_line" : 6807
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esmangle.browser.js",
+ "start_line" : 6909,
+ "end_line" : 6909
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/estraverse.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 Yusuke Suzuki ",
+ "location" : {
+ "path" : "tools/generate-test-fixture.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Ariya Hidayat ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/esrefactor.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Ingvar Stepanyan",
+ "location" : {
+ "path" : "lib/visitor-keys.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright (c) jQuery Foundation, Inc. and Contributors",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 35,
+ "end_line" : 35
+ }
+ }, {
+ "statement" : "Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors",
+ "location" : {
+ "path" : "tests/fixtures/libraries/jquery-1.9.1.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "Copyright 2010-2012 Mathias Bynens ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/benchmark.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright 2012 jQuery Foundation and other contributors",
+ "location" : {
+ "path" : "tests/fixtures/libraries/jquery-1.9.1.js",
+ "start_line" : 3689,
+ "end_line" : 3689
+ }
+ }, {
+ "statement" : "Copyright 2012-2015 Acorn",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 11,
+ "end_line" : 11
+ }
+ }, {
+ "statement" : "Copyright 2013 Yahoo! Inc.",
+ "location" : {
+ "path" : "tests/fixtures/libraries/yui-3.12.0.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright 2014-2015 Sebastian McKenzie ",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 13,
+ "end_line" : 13
+ }
+ }, {
+ "statement" : "Copyright 2014-2015 various",
+ "location" : {
+ "path" : "espree.js",
+ "start_line" : 12,
+ "end_line" : 12
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "copyright Robert Kieffer ",
+ "location" : {
+ "path" : "tests/fixtures/libraries/benchmark.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/estools/esquery.git",
+ "revision" : "7c3800a4b2ff5c7b3eb3b2cf742865b7c908981f",
+ "path" : ""
+ },
+ "resolved_revision" : "7c3800a4b2ff5c7b3eb3b2cf742865b7c908981f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:26:13.000642849Z",
+ "end_time" : "2023-07-19T12:26:19.000814975Z",
+ "licenses" : [ {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "license.txt",
+ "start_line" : 4,
+ "end_line" : 24
+ },
+ "score" : 99.04
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 71,
+ "end_line" : 71
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013, Joel Feenstra",
+ "location" : {
+ "path" : "license.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/estools/esrecurse.git",
+ "revision" : "8ceb63797813d9ac69572a671b95cf58ffdf35b6",
+ "path" : ""
+ },
+ "resolved_revision" : "8ceb63797813d9ac69572a671b95cf58ffdf35b6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:05:00.000470038Z",
+ "end_time" : "2023-07-19T13:05:02.000911844Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 152,
+ "end_line" : 171
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "esrecurse.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "gulpfile.babel.js",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 41,
+ "end_line" : 41
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/traverse.js",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Yusuke Suzuki ",
+ "location" : {
+ "path" : "test/traverse.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki (https://github.com/Constellation) (twitter Constellation (https://twitter.com/Constellation)) and other contributors",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 149,
+ "end_line" : 150
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "esrecurse.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Yusuke Suzuki ",
+ "location" : {
+ "path" : "gulpfile.babel.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/fromentries.git",
+ "revision" : "31c73f61eeed912788f15c1bc9abc3ef71650185",
+ "path" : ""
+ },
+ "resolved_revision" : "31c73f61eeed912788f15c1bc9abc3ef71650185"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:40:36.000322914Z",
+ "end_time" : "2023-07-20T06:40:38.000864430Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 68,
+ "end_line" : 70
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 34,
+ "end_line" : 34
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Feross Aboukhadijeh",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) Feross Aboukhadijeh (http://feross.org)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 70,
+ "end_line" : 70
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/is-buffer.git",
+ "revision" : "ec4bf3415108e8971375e6717ad63dde752faebf",
+ "path" : ""
+ },
+ "resolved_revision" : "ec4bf3415108e8971375e6717ad63dde752faebf"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:36:15.000779413Z",
+ "end_time" : "2023-07-20T06:36:18.000523577Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 52,
+ "end_line" : 54
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 39,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Feross Aboukhadijeh",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) Feross Aboukhadijeh (http://feross.org)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 54,
+ "end_line" : 54
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/feross/typedarray-to-buffer.git",
+ "revision" : "328a952e480a143bdc3fc98a2133490e28e2b3a2",
+ "path" : ""
+ },
+ "resolved_revision" : "328a952e480a143bdc3fc98a2133490e28e2b3a2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:56:20.000334558Z",
+ "end_time" : "2023-07-19T12:56:22.000538379Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 83,
+ "end_line" : 85
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 38,
+ "end_line" : 38
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Feross Aboukhadijeh",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) Feross Aboukhadijeh (http://feross.org)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 85,
+ "end_line" : 85
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gajus/table.git",
+ "revision" : "db1ad68d74b8e859448deebaeb823da39e40fa98",
+ "path" : ""
+ },
+ "resolved_revision" : "db1ad68d74b8e859448deebaeb823da39e40fa98"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:01:48.000934482Z",
+ "end_time" : "2023-07-19T13:01:53.000723480Z",
+ "licenses" : [ {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 24
+ },
+ "score" : 97.63
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 56,
+ "end_line" : 56
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/)",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/levn.git",
+ "revision" : "a92b9acf928282ba81134b4ae8e6a5f29e1f5e1e",
+ "path" : ""
+ },
+ "resolved_revision" : "a92b9acf928282ba81134b4ae8e6a5f29e1f5e1e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:08:26.000440648Z",
+ "end_time" : "2023-07-19T13:08:29.000326185Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json.ls",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/optionator.git",
+ "revision" : "80318611b86ad28a38671f811d6c80bf564cdbda",
+ "path" : ""
+ },
+ "resolved_revision" : "80318611b86ad28a38671f811d6c80bf564cdbda"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:51:45.000986069Z",
+ "end_time" : "2023-07-19T12:51:49.000282019Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json.ls",
+ "start_line" : 19,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/prelude-ls.git",
+ "revision" : "d69be8fd8a682321ba24eced17caf3a1b8ca73b8",
+ "path" : ""
+ },
+ "resolved_revision" : "d69be8fd8a682321ba24eced17caf3a1b8ca73b8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:24:13.000075044Z",
+ "end_time" : "2023-07-18T06:24:17.000258914Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "browser/prelude-browser-min.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "browser/prelude-browser.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 28,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json.ls",
+ "start_line" : 30,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "preroll.ls",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "browser/prelude-browser-min.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "browser/prelude-browser.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "preroll.ls",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gkz/type-check.git",
+ "revision" : "0ab04e7a660485d0cc3aa87e95f2f9a6464cf8e6",
+ "path" : ""
+ },
+ "resolved_revision" : "0ab04e7a660485d0cc3aa87e95f2f9a6464cf8e6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:49:58.000753422Z",
+ "end_time" : "2023-07-18T06:50:03.000557475Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "browser/type-check.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json.ls",
+ "start_line" : 19,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "preroll",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "browser/type-check.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) George Zahariev",
+ "location" : {
+ "path" : "preroll",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/gulpjs/glob-parent.git",
+ "revision" : "eb2c439de448c779b450472e591a2bc9e37e9668",
+ "path" : ""
+ },
+ "resolved_revision" : "eb2c439de448c779b450472e591a2bc9e37e9668"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:41:37.000324786Z",
+ "end_time" : "2023-07-20T06:41:39.000931121Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 113,
+ "end_line" : 115
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015, 2019 Elan Shanker",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/hiddentao/fast-levenshtein.git",
+ "revision" : "5bffe7151f99fb02f319f70a004e653105a760fb",
+ "path" : ""
+ },
+ "resolved_revision" : "5bffe7151f99fb02f319f70a004e653105a760fb"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:34:32.000263091Z",
+ "end_time" : "2023-07-20T06:34:34.000721045Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 5,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 102,
+ "end_line" : 104
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 38,
+ "end_line" : 38
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Ramesh Nair (http://www.hiddentao.com/)",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Ramesh Nair (http://www.hiddentao.com/)",
+ "location" : {
+ "path" : "levenshtein.min.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/hughsk/flat.git",
+ "revision" : "d2ed12bea2bce66254b3d013e5a1cfc73b77c71e",
+ "path" : ""
+ },
+ "resolved_revision" : "d2ed12bea2bce66254b3d013e5a1cfc73b77c71e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:43:20.000732116Z",
+ "end_time" : "2023-07-20T07:43:23.000357217Z",
+ "licenses" : [ {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014, Hugh Kennedy",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/hughsk/is-typedarray.git",
+ "revision" : "0617cfa871686cf541af62b144f130488f44f6fe",
+ "path" : ""
+ },
+ "resolved_revision" : "0617cfa871686cf541af62b144f130488f44f6fe"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:58:26.000669825Z",
+ "end_time" : "2023-07-19T12:58:28.000705576Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 3,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 14,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/iarna/wide-align.git",
+ "revision" : "6b766c9874a1e5157eda2ac75b90ccc01b313620",
+ "path" : ""
+ },
+ "resolved_revision" : "6b766c9874a1e5157eda2ac75b90ccc01b313620"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:50:50.000844684Z",
+ "end_time" : "2023-07-18T06:50:53.000839432Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 19,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015, Rebecca Turner ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "d85bc4414cf3516e9ba96aa83eab919e8bd01979",
+ "path" : ""
+ },
+ "resolved_revision" : "d85bc4414cf3516e9ba96aa83eab919e8bd01979"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:36:15.000780678Z",
+ "end_time" : "2023-07-18T06:36:57.000313584Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "src/rules/no-named-as-default-member.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-warranty-disclaimer",
+ "location" : {
+ "path" : "src/rules/no-unused-modules.js",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "memo-parser/package.json",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 50,
+ "end_line" : 50
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "resolvers/node/package.json",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "resolvers/webpack/package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/package.json",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 15,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 19,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Ben Mosher",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 13,
+ "end_line" : 13
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 17,
+ "end_line" : 17
+ }
+ }, {
+ "statement" : "copyright 2016 Desmond Brand",
+ "location" : {
+ "path" : "src/rules/no-named-as-default-member.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "copyright Sindre Sorhus",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 10,
+ "end_line" : 10
+ }
+ }, {
+ "statement" : "copyright Sindre Sorhus",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 14,
+ "end_line" : 14
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/import-js/eslint-plugin-import.git",
+ "revision" : "74e2a9562c010aa0f875c83c644e929600fa64c8",
+ "path" : ""
+ },
+ "resolved_revision" : "74e2a9562c010aa0f875c83c644e929600fa64c8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:43:25.000519772Z",
+ "end_time" : "2023-07-19T12:43:49.000816153Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "src/rules/no-named-as-default-member.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-warranty-disclaimer",
+ "location" : {
+ "path" : "src/rules/no-unused-modules.js",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "memo-parser/package.json",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 52,
+ "end_line" : 52
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "resolvers/node/package.json",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "resolvers/webpack/package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/package.json",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 15,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 19,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Ben Mosher",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 13,
+ "end_line" : 13
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 17,
+ "end_line" : 17
+ }
+ }, {
+ "statement" : "copyright 2016 Desmond Brand",
+ "location" : {
+ "path" : "src/rules/no-named-as-default-member.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "copyright Sindre Sorhus",
+ "location" : {
+ "path" : "utils/pkgUp.js",
+ "start_line" : 10,
+ "end_line" : 10
+ }
+ }, {
+ "statement" : "copyright Sindre Sorhus",
+ "location" : {
+ "path" : "utils/readPkgUp.js",
+ "start_line" : 14,
+ "end_line" : 14
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/available-typed-arrays.git",
+ "revision" : "d0f3cb979af4322acaa149e08ae58fd4faed3715",
+ "path" : ""
+ },
+ "resolved_revision" : "d0f3cb979af4322acaa149e08ae58fd4faed3715"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:25:18.000116937Z",
+ "end_time" : "2023-07-18T06:25:20.000434022Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 54,
+ "end_line" : 54
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2020 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/functions-have-names.git",
+ "revision" : "3ac881daaf2066bff7c422fd606271f4976efa8f",
+ "path" : ""
+ },
+ "resolved_revision" : "3ac881daaf2066bff7c422fd606271f4976efa8f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:35:51.000388134Z",
+ "end_time" : "2023-07-20T06:35:54.000651156Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/get-symbol-description.git",
+ "revision" : "6579bf3c250bc1cf12fec4900956ac7f08f34a41",
+ "path" : ""
+ },
+ "resolved_revision" : "6579bf3c250bc1cf12fec4900956ac7f08f34a41"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:59.000867986Z",
+ "end_time" : "2023-07-19T13:03:02.000320228Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2021 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-property-descriptors.git",
+ "revision" : "3771c8b4f20e963d3a64b101b3233c20791c32ae",
+ "path" : ""
+ },
+ "resolved_revision" : "3771c8b4f20e963d3a64b101b3233c20791c32ae"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:40:20.000049172Z",
+ "end_time" : "2023-07-20T06:40:22.000431872Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 40,
+ "end_line" : 40
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2022 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-proto.git",
+ "revision" : "21f977f068b3e59597576c32f13b4a4ec899adbf",
+ "path" : ""
+ },
+ "resolved_revision" : "21f977f068b3e59597576c32f13b4a4ec899adbf"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:43:22.000367898Z",
+ "end_time" : "2023-07-18T07:43:25.000311444Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 40,
+ "end_line" : 40
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2022 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-symbols.git",
+ "revision" : "444dc14d035df9891743a28cbc5d6ecdb0cb3b01",
+ "path" : ""
+ },
+ "resolved_revision" : "444dc14d035df9891743a28cbc5d6ecdb0cb3b01"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:04:13.000452561Z",
+ "end_time" : "2023-07-18T07:04:16.000319207Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 51,
+ "end_line" : 51
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2016 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/has-tostringtag.git",
+ "revision" : "011dfc074077ece0eaa7aa740bb4d50623dec774",
+ "path" : ""
+ },
+ "resolved_revision" : "011dfc074077ece0eaa7aa740bb4d50623dec774"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:10.000990552Z",
+ "end_time" : "2023-07-20T07:29:13.000702511Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2021 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-array-buffer.git",
+ "revision" : "1ac0ffe4f48f86e9cb1777bdb972d1bc47bf3225",
+ "path" : ""
+ },
+ "resolved_revision" : "1ac0ffe4f48f86e9cb1777bdb972d1bc47bf3225"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:25:37.000440246Z",
+ "end_time" : "2023-07-19T12:25:40.000503997Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 39,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Chen Gengyuan, Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-bigint.git",
+ "revision" : "726750ea98291eaf3ac6aae247f638eb3a94d343",
+ "path" : ""
+ },
+ "resolved_revision" : "726750ea98291eaf3ac6aae247f638eb3a94d343"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:16:39.000904950Z",
+ "end_time" : "2023-07-20T07:16:43.000522753Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-boolean-object.git",
+ "revision" : "586b4a72c8d6973e5416610a2eaca65c1fb6da3d",
+ "path" : ""
+ },
+ "resolved_revision" : "586b4a72c8d6973e5416610a2eaca65c1fb6da3d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:16:05.000764007Z",
+ "end_time" : "2023-07-20T07:16:08.000410818Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-callable.git",
+ "revision" : "f23584dd25c26473e702e80a5e8e7e79e2a89aee",
+ "path" : ""
+ },
+ "resolved_revision" : "f23584dd25c26473e702e80a5e8e7e79e2a89aee"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:24:30.000853342Z",
+ "end_time" : "2023-07-18T06:24:33.000403232Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-core-module.git",
+ "revision" : "12cfb2d3bcefc3de19264b3a39208d29f5432516",
+ "path" : ""
+ },
+ "resolved_revision" : "12cfb2d3bcefc3de19264b3a39208d29f5432516"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:29.000539873Z",
+ "end_time" : "2023-07-19T13:02:32.000066351Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 39,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Dave Justice",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-date-object.git",
+ "revision" : "61eab012a36b7b5141f7e7dd09a6cdd11008668f",
+ "path" : ""
+ },
+ "resolved_revision" : "61eab012a36b7b5141f7e7dd09a6cdd11008668f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:00:09.000045010Z",
+ "end_time" : "2023-07-19T13:00:11.000454480Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-negative-zero.git",
+ "revision" : "360cdcc36d5194992f0dae68a624c02d2c945a94",
+ "path" : ""
+ },
+ "resolved_revision" : "360cdcc36d5194992f0dae68a624c02d2c945a94"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:55:20.000575300Z",
+ "end_time" : "2023-07-20T07:55:23.000508165Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-number-object.git",
+ "revision" : "50c53ae827537cd9d951c87e9e6286339575d402",
+ "path" : ""
+ },
+ "resolved_revision" : "50c53ae827537cd9d951c87e9e6286339575d402"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:43:34.000461434Z",
+ "end_time" : "2023-07-18T07:43:38.000210142Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 34,
+ "end_line" : 34
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-regex.git",
+ "revision" : "13598e3491ac8f05d257d339cbf8bae0bb049a0d",
+ "path" : ""
+ },
+ "resolved_revision" : "13598e3491ac8f05d257d339cbf8bae0bb049a0d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:10:36.000972787Z",
+ "end_time" : "2023-07-19T13:10:39.000521703Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-shared-array-buffer.git",
+ "revision" : "0a8c0a3a53fa882f24f4e378b8c9ed30af35e0e4",
+ "path" : ""
+ },
+ "resolved_revision" : "0a8c0a3a53fa882f24f4e378b8c9ed30af35e0e4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:43:55.000624664Z",
+ "end_time" : "2023-07-18T07:43:58.000117581Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 13,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2021 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-symbol.git",
+ "revision" : "962084d30f3a2a83dff90d59504d03b85ffa5c17",
+ "path" : ""
+ },
+ "resolved_revision" : "962084d30f3a2a83dff90d59504d03b85ffa5c17"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:05.000451100Z",
+ "end_time" : "2023-07-20T07:42:08.000163235Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-typed-array.git",
+ "revision" : "0f7c619d10400f28a6131ed2ef6352bfe22dc1a6",
+ "path" : ""
+ },
+ "resolved_revision" : "0f7c619d10400f28a6131ed2ef6352bfe22dc1a6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:08:43.000893576Z",
+ "end_time" : "2023-07-19T12:08:48.000115937Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/is-weakref.git",
+ "revision" : "f63853b41b499be00bc3d4b519a4c6e3844a467c",
+ "path" : ""
+ },
+ "resolved_revision" : "f63853b41b499be00bc3d4b519a4c6e3844a467c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:37:03.000563350Z",
+ "end_time" : "2023-07-18T06:37:06.000360663Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 36,
+ "end_line" : 36
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2020 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git",
+ "revision" : "1f7cac19c0c298cf40b3f2f3c735477ad579ac61",
+ "path" : ""
+ },
+ "resolved_revision" : "1f7cac19c0c298cf40b3f2f3c735477ad579ac61"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:43:12.000354650Z",
+ "end_time" : "2023-07-20T06:43:14.000826288Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 44,
+ "end_line" : 44
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2022 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/object-inspect.git",
+ "revision" : "8155d9e0721dcf8d2c07a3d262ae29f444f35e37",
+ "path" : ""
+ },
+ "resolved_revision" : "8155d9e0721dcf8d2c07a3d262ae29f444f35e37"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:19:41.000531625Z",
+ "end_time" : "2023-07-20T07:19:47.000843409Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 78,
+ "end_line" : 78
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.markdown",
+ "start_line" : 68,
+ "end_line" : 70
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 James Halliday",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/typed-array-length.git",
+ "revision" : "c30864c777e9d2565c5a459904f9a40976586bba",
+ "path" : ""
+ },
+ "resolved_revision" : "c30864c777e9d2565c5a459904f9a40976586bba"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:26:28.000511089Z",
+ "end_time" : "2023-07-19T12:26:32.000316396Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 48,
+ "end_line" : 48
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2020 Inspect JS",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/which-boxed-primitive.git",
+ "revision" : "e2572398ae2be0d87527bc1726c1393a982a2f37",
+ "path" : ""
+ },
+ "resolved_revision" : "e2572398ae2be0d87527bc1726c1393a982a2f37"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:45:56.000206013Z",
+ "end_time" : "2023-07-19T12:45:58.000597324Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/inspect-js/which-typed-array.git",
+ "revision" : "c7f7c5510fce82dbf8deb77d091b22d0f20a4695",
+ "path" : ""
+ },
+ "resolved_revision" : "c7f7c5510fce82dbf8deb77d091b22d0f20a4695"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:53.000902090Z",
+ "end_time" : "2023-07-19T13:02:56.000308606Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/fs.realpath.git",
+ "revision" : "03e7c884431fe185dfebbc9b771aeca339c1807a",
+ "path" : ""
+ },
+ "resolved_revision" : "03e7c884431fe185dfebbc9b771aeca339c1807a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:46:01.000383604Z",
+ "end_time" : "2023-07-19T12:46:03.000869831Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 15
+ },
+ "score" : 94.26
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 27,
+ "end_line" : 43
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "old.js",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Joyent, Inc. and other Node contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 25,
+ "end_line" : 25
+ }
+ }, {
+ "statement" : "Copyright Joyent, Inc. and other Node contributors",
+ "location" : {
+ "path" : "old.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/inherits.git",
+ "revision" : "9a2c29400c6d491e0b7beefe0c32efa3b462545d",
+ "path" : ""
+ },
+ "resolved_revision" : "9a2c29400c6d491e0b7beefe0c32efa3b462545d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:38.000272331Z",
+ "end_time" : "2023-07-20T07:29:40.000876315Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/isexe.git",
+ "revision" : "10f8be491aab2e158c7e20df64a7f90ab5b5475c",
+ "path" : ""
+ },
+ "resolved_revision" : "10f8be491aab2e158c7e20df64a7f90ab5b5475c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:28.000218384Z",
+ "end_time" : "2023-07-20T07:27:30.000410882Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/minimatch.git",
+ "revision" : "699c459443a6bd98f5b28197978f76e7f71467ac",
+ "path" : ""
+ },
+ "resolved_revision" : "699c459443a6bd98f5b28197978f76e7f71467ac"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:08:28.000813736Z",
+ "end_time" : "2023-07-19T12:08:35.000629338Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3253,
+ "end_line" : 3253
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3936,
+ "end_line" : 3936
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3060,
+ "end_line" : 3060
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2961,
+ "end_line" : 2961
+ },
+ "score" : 95.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4124,
+ "end_line" : 4124
+ },
+ "score" : 95.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3223,
+ "end_line" : 3223
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3266,
+ "end_line" : 3266
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3302,
+ "end_line" : 3302
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3317,
+ "end_line" : 3317
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3364,
+ "end_line" : 3364
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3374,
+ "end_line" : 3374
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3601,
+ "end_line" : 3601
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3619,
+ "end_line" : 3619
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3652,
+ "end_line" : 3652
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3739,
+ "end_line" : 3739
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3837,
+ "end_line" : 3837
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3868,
+ "end_line" : 3868
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3883,
+ "end_line" : 3883
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4021,
+ "end_line" : 4021
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4039,
+ "end_line" : 4039
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4226,
+ "end_line" : 4226
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4253,
+ "end_line" : 4253
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4259,
+ "end_line" : 4259
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2428,
+ "end_line" : 2428
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2440,
+ "end_line" : 2440
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2449,
+ "end_line" : 2449
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2479,
+ "end_line" : 2479
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2493,
+ "end_line" : 2493
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2505,
+ "end_line" : 2505
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2523,
+ "end_line" : 2523
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2537,
+ "end_line" : 2537
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2549,
+ "end_line" : 2549
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2561,
+ "end_line" : 2561
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2573,
+ "end_line" : 2573
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2585,
+ "end_line" : 2585
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2604,
+ "end_line" : 2604
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2616,
+ "end_line" : 2616
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2625,
+ "end_line" : 2625
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2640,
+ "end_line" : 2640
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2652,
+ "end_line" : 2652
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2664,
+ "end_line" : 2664
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2673,
+ "end_line" : 2673
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2682,
+ "end_line" : 2682
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2696,
+ "end_line" : 2696
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2710,
+ "end_line" : 2710
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2722,
+ "end_line" : 2722
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2741,
+ "end_line" : 2741
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2756,
+ "end_line" : 2756
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2768,
+ "end_line" : 2768
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2783,
+ "end_line" : 2783
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2798,
+ "end_line" : 2798
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2817,
+ "end_line" : 2817
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2831,
+ "end_line" : 2831
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2851,
+ "end_line" : 2851
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2864,
+ "end_line" : 2864
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2884,
+ "end_line" : 2884
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2896,
+ "end_line" : 2896
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2908,
+ "end_line" : 2908
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2917,
+ "end_line" : 2917
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2923,
+ "end_line" : 2923
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2934,
+ "end_line" : 2934
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2940,
+ "end_line" : 2940
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2946,
+ "end_line" : 2946
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2961,
+ "end_line" : 2961
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2973,
+ "end_line" : 2973
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2982,
+ "end_line" : 2982
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2994,
+ "end_line" : 2994
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3000,
+ "end_line" : 3000
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3009,
+ "end_line" : 3009
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3021,
+ "end_line" : 3021
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3027,
+ "end_line" : 3027
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3037,
+ "end_line" : 3037
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3070,
+ "end_line" : 3070
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3083,
+ "end_line" : 3083
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3097,
+ "end_line" : 3097
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3103,
+ "end_line" : 3103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3115,
+ "end_line" : 3115
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3127,
+ "end_line" : 3127
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3143,
+ "end_line" : 3143
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3155,
+ "end_line" : 3155
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3164,
+ "end_line" : 3164
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3170,
+ "end_line" : 3170
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3176,
+ "end_line" : 3176
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3182,
+ "end_line" : 3182
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3191,
+ "end_line" : 3191
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3200,
+ "end_line" : 3200
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3206,
+ "end_line" : 3206
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3229,
+ "end_line" : 3229
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3235,
+ "end_line" : 3235
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3244,
+ "end_line" : 3244
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3272,
+ "end_line" : 3272
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3289,
+ "end_line" : 3289
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3308,
+ "end_line" : 3308
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3337,
+ "end_line" : 3337
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3346,
+ "end_line" : 3346
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3355,
+ "end_line" : 3355
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3380,
+ "end_line" : 3380
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3423,
+ "end_line" : 3423
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3438,
+ "end_line" : 3438
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3454,
+ "end_line" : 3454
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3466,
+ "end_line" : 3466
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3472,
+ "end_line" : 3472
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3481,
+ "end_line" : 3481
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3493,
+ "end_line" : 3493
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3505,
+ "end_line" : 3505
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3514,
+ "end_line" : 3514
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3520,
+ "end_line" : 3520
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3532,
+ "end_line" : 3532
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3547,
+ "end_line" : 3547
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3559,
+ "end_line" : 3559
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3565,
+ "end_line" : 3565
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3577,
+ "end_line" : 3577
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3592,
+ "end_line" : 3592
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3613,
+ "end_line" : 3613
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3631,
+ "end_line" : 3631
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3637,
+ "end_line" : 3637
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3643,
+ "end_line" : 3643
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3661,
+ "end_line" : 3661
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3676,
+ "end_line" : 3676
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3691,
+ "end_line" : 3691
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3703,
+ "end_line" : 3703
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3712,
+ "end_line" : 3712
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3721,
+ "end_line" : 3721
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3730,
+ "end_line" : 3730
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3745,
+ "end_line" : 3745
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3757,
+ "end_line" : 3757
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3766,
+ "end_line" : 3766
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3779,
+ "end_line" : 3779
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3789,
+ "end_line" : 3789
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3806,
+ "end_line" : 3806
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3815,
+ "end_line" : 3815
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3824,
+ "end_line" : 3824
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3852,
+ "end_line" : 3852
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3858,
+ "end_line" : 3858
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3877,
+ "end_line" : 3877
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3889,
+ "end_line" : 3889
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3903,
+ "end_line" : 3903
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3918,
+ "end_line" : 3918
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3930,
+ "end_line" : 3930
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3945,
+ "end_line" : 3945
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3957,
+ "end_line" : 3957
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3966,
+ "end_line" : 3966
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3980,
+ "end_line" : 3980
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3992,
+ "end_line" : 3992
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4004,
+ "end_line" : 4004
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4030,
+ "end_line" : 4030
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4057,
+ "end_line" : 4057
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4072,
+ "end_line" : 4072
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4085,
+ "end_line" : 4085
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4097,
+ "end_line" : 4097
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4103,
+ "end_line" : 4103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4112,
+ "end_line" : 4112
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4124,
+ "end_line" : 4124
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4136,
+ "end_line" : 4136
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4146,
+ "end_line" : 4146
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4155,
+ "end_line" : 4155
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4167,
+ "end_line" : 4167
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4179,
+ "end_line" : 4179
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4193,
+ "end_line" : 4193
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4208,
+ "end_line" : 4208
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4220,
+ "end_line" : 4220
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4232,
+ "end_line" : 4232
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4268,
+ "end_line" : 4268
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/minimatch.git",
+ "revision" : "e46989a323d5f0aa4781eff5e2e6e7aafa223321",
+ "path" : ""
+ },
+ "resolved_revision" : "e46989a323d5f0aa4781eff5e2e6e7aafa223321"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:59:02.000820494Z",
+ "end_time" : "2023-07-19T12:59:05.000925496Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/mute-stream.git",
+ "revision" : "aa4a4baeaff5eeec83b5717738a44642f6948a9f",
+ "path" : ""
+ },
+ "resolved_revision" : "aa4a4baeaff5eeec83b5717738a44642f6948a9f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:43:27.000292779Z",
+ "end_time" : "2023-07-20T07:43:30.000016335Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 24,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-glob.git",
+ "revision" : "c3cd57ae128faa0e9190492acc743bb779ac4054",
+ "path" : ""
+ },
+ "resolved_revision" : "c3cd57ae128faa0e9190492acc743bb779ac4054"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:34:44.000151640Z",
+ "end_time" : "2023-07-20T06:34:51.000073554Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3328,
+ "end_line" : 3328
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4023,
+ "end_line" : 4023
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3135,
+ "end_line" : 3135
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-4.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 20,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-4.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 356,
+ "end_line" : 356
+ },
+ "score" : 86.36
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3036,
+ "end_line" : 3036
+ },
+ "score" : 95.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4211,
+ "end_line" : 4211
+ },
+ "score" : 95.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "changelog.md",
+ "start_line" : 51,
+ "end_line" : 51
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3298,
+ "end_line" : 3298
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3341,
+ "end_line" : 3341
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3377,
+ "end_line" : 3377
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3392,
+ "end_line" : 3392
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3439,
+ "end_line" : 3439
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3449,
+ "end_line" : 3449
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3676,
+ "end_line" : 3676
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3694,
+ "end_line" : 3694
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3739,
+ "end_line" : 3739
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3826,
+ "end_line" : 3826
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3924,
+ "end_line" : 3924
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3955,
+ "end_line" : 3955
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3970,
+ "end_line" : 3970
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4108,
+ "end_line" : 4108
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4126,
+ "end_line" : 4126
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4313,
+ "end_line" : 4313
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4340,
+ "end_line" : 4340
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4346,
+ "end_line" : 4346
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 51,
+ "end_line" : 51
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 19,
+ "end_line" : 20
+ },
+ "score" : 50.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2503,
+ "end_line" : 2503
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2515,
+ "end_line" : 2515
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2524,
+ "end_line" : 2524
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2554,
+ "end_line" : 2554
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2568,
+ "end_line" : 2568
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2580,
+ "end_line" : 2580
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2598,
+ "end_line" : 2598
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2612,
+ "end_line" : 2612
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2624,
+ "end_line" : 2624
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2636,
+ "end_line" : 2636
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2648,
+ "end_line" : 2648
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2660,
+ "end_line" : 2660
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2679,
+ "end_line" : 2679
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2691,
+ "end_line" : 2691
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2700,
+ "end_line" : 2700
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2715,
+ "end_line" : 2715
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2727,
+ "end_line" : 2727
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2739,
+ "end_line" : 2739
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2748,
+ "end_line" : 2748
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2757,
+ "end_line" : 2757
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2771,
+ "end_line" : 2771
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2785,
+ "end_line" : 2785
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2797,
+ "end_line" : 2797
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2816,
+ "end_line" : 2816
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2831,
+ "end_line" : 2831
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2843,
+ "end_line" : 2843
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2858,
+ "end_line" : 2858
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2873,
+ "end_line" : 2873
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2892,
+ "end_line" : 2892
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2906,
+ "end_line" : 2906
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2926,
+ "end_line" : 2926
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2939,
+ "end_line" : 2939
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2959,
+ "end_line" : 2959
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2971,
+ "end_line" : 2971
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2983,
+ "end_line" : 2983
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2992,
+ "end_line" : 2992
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 2998,
+ "end_line" : 2998
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3009,
+ "end_line" : 3009
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3015,
+ "end_line" : 3015
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3021,
+ "end_line" : 3021
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3036,
+ "end_line" : 3036
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3048,
+ "end_line" : 3048
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3057,
+ "end_line" : 3057
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3069,
+ "end_line" : 3069
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3075,
+ "end_line" : 3075
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3084,
+ "end_line" : 3084
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3096,
+ "end_line" : 3096
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3102,
+ "end_line" : 3102
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3112,
+ "end_line" : 3112
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3145,
+ "end_line" : 3145
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3158,
+ "end_line" : 3158
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3172,
+ "end_line" : 3172
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3178,
+ "end_line" : 3178
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3190,
+ "end_line" : 3190
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3202,
+ "end_line" : 3202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3218,
+ "end_line" : 3218
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3230,
+ "end_line" : 3230
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3239,
+ "end_line" : 3239
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3245,
+ "end_line" : 3245
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3251,
+ "end_line" : 3251
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3257,
+ "end_line" : 3257
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3266,
+ "end_line" : 3266
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3275,
+ "end_line" : 3275
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3281,
+ "end_line" : 3281
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3304,
+ "end_line" : 3304
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3310,
+ "end_line" : 3310
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3319,
+ "end_line" : 3319
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3347,
+ "end_line" : 3347
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3364,
+ "end_line" : 3364
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3383,
+ "end_line" : 3383
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3412,
+ "end_line" : 3412
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3421,
+ "end_line" : 3421
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3430,
+ "end_line" : 3430
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3455,
+ "end_line" : 3455
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3498,
+ "end_line" : 3498
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3513,
+ "end_line" : 3513
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3529,
+ "end_line" : 3529
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3541,
+ "end_line" : 3541
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3547,
+ "end_line" : 3547
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3556,
+ "end_line" : 3556
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3568,
+ "end_line" : 3568
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3580,
+ "end_line" : 3580
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3589,
+ "end_line" : 3589
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3595,
+ "end_line" : 3595
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3607,
+ "end_line" : 3607
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3622,
+ "end_line" : 3622
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3634,
+ "end_line" : 3634
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3640,
+ "end_line" : 3640
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3652,
+ "end_line" : 3652
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3667,
+ "end_line" : 3667
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3688,
+ "end_line" : 3688
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3718,
+ "end_line" : 3718
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3724,
+ "end_line" : 3724
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3730,
+ "end_line" : 3730
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3748,
+ "end_line" : 3748
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3763,
+ "end_line" : 3763
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3778,
+ "end_line" : 3778
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3790,
+ "end_line" : 3790
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3799,
+ "end_line" : 3799
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3808,
+ "end_line" : 3808
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3817,
+ "end_line" : 3817
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3832,
+ "end_line" : 3832
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3844,
+ "end_line" : 3844
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3853,
+ "end_line" : 3853
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3866,
+ "end_line" : 3866
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3876,
+ "end_line" : 3876
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3893,
+ "end_line" : 3893
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3902,
+ "end_line" : 3902
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3911,
+ "end_line" : 3911
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3939,
+ "end_line" : 3939
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3945,
+ "end_line" : 3945
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3964,
+ "end_line" : 3964
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3976,
+ "end_line" : 3976
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 3990,
+ "end_line" : 3990
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4005,
+ "end_line" : 4005
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4017,
+ "end_line" : 4017
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4032,
+ "end_line" : 4032
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4044,
+ "end_line" : 4044
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4053,
+ "end_line" : 4053
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4067,
+ "end_line" : 4067
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4079,
+ "end_line" : 4079
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4091,
+ "end_line" : 4091
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4117,
+ "end_line" : 4117
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4144,
+ "end_line" : 4144
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4159,
+ "end_line" : 4159
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4172,
+ "end_line" : 4172
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4184,
+ "end_line" : 4184
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4190,
+ "end_line" : 4190
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4199,
+ "end_line" : 4199
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4211,
+ "end_line" : 4211
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4223,
+ "end_line" : 4223
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4233,
+ "end_line" : 4233
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4242,
+ "end_line" : 4242
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4254,
+ "end_line" : 4254
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4266,
+ "end_line" : 4266
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4280,
+ "end_line" : 4280
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4295,
+ "end_line" : 4295
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4307,
+ "end_line" : 4307
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4319,
+ "end_line" : 4319
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4355,
+ "end_line" : 4355
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 49,
+ "end_line" : 51
+ },
+ "score" : 71.25
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-glob.git",
+ "revision" : "8882c8fccabbe459465e73cc2581e121a5fdd25b",
+ "path" : ""
+ },
+ "resolved_revision" : "8882c8fccabbe459465e73cc2581e121a5fdd25b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:17:42.000315494Z",
+ "end_time" : "2023-07-20T07:17:46.000738674Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "changelog.md",
+ "start_line" : 51,
+ "end_line" : 51
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 42,
+ "end_line" : 42
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 40,
+ "end_line" : 42
+ },
+ "score" : 71.25
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-graceful-fs.git",
+ "revision" : "1f19b0b467e4144260b397343cd60f37c5bdcfda",
+ "path" : ""
+ },
+ "resolved_revision" : "1f19b0b467e4144260b397343cd60f37c5bdcfda"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:12:24.000759597Z",
+ "end_time" : "2023-07-18T06:12:29.000041656Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 36,
+ "end_line" : 36
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-lru-cache.git",
+ "revision" : "a71be6cd547d28b24d28957a15b10cd3eb34555a",
+ "path" : ""
+ },
+ "resolved_revision" : "a71be6cd547d28b24d28957a15b10cd3eb34555a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:14.000855058Z",
+ "end_time" : "2023-07-20T07:27:17.000714319Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 25,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-which.git",
+ "revision" : "563406d75b97f97a33e506b9cc7a82b268332b6f",
+ "path" : ""
+ },
+ "resolved_revision" : "563406d75b97f97a33e506b9cc7a82b268332b6f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:09:07.000748021Z",
+ "end_time" : "2023-07-19T13:09:10.000681172Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 123,
+ "end_line" : 123
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 123,
+ "end_line" : 125
+ },
+ "score" : 80.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/node-which.git",
+ "revision" : "6a822d836de79f92fb3170f685a6e283fbfeff87",
+ "path" : ""
+ },
+ "resolved_revision" : "6a822d836de79f92fb3170f685a6e283fbfeff87"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:11:07.000523643Z",
+ "end_time" : "2023-07-19T13:11:10.000273871Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 137,
+ "end_line" : 137
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 137,
+ "end_line" : 139
+ },
+ "score" : 80.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/once.git",
+ "revision" : "0e614d9f5a7e6f0305c625f6b581f6d80b33b8a6",
+ "path" : ""
+ },
+ "resolved_revision" : "0e614d9f5a7e6f0305c625f6b581f6d80b33b8a6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:19:31.000157437Z",
+ "end_time" : "2023-07-20T07:19:34.000924425Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 32,
+ "end_line" : 32
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/rimraf.git",
+ "revision" : "9442819908e52f2c32620e8fa609d7a5d472cc2c",
+ "path" : ""
+ },
+ "resolved_revision" : "9442819908e52f2c32620e8fa609d7a5d472cc2c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:41:39.000277577Z",
+ "end_time" : "2023-07-18T07:41:42.000301763Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/rimraf.git",
+ "revision" : "8c10fb8d685d5cc35708e0ffc4dac9ec5dd5b444",
+ "path" : ""
+ },
+ "resolved_revision" : "8c10fb8d685d5cc35708e0ffc4dac9ec5dd5b444"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:34.000520289Z",
+ "end_time" : "2023-07-20T07:27:37.000329693Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/isaacs/yallist.git",
+ "revision" : "ab350a79eb94c80f7146662748a12b6fcd63729c",
+ "path" : ""
+ },
+ "resolved_revision" : "ab350a79eb94c80f7146662748a12b6fcd63729c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:25:26.000112122Z",
+ "end_time" : "2023-07-19T12:25:28.000633951Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/append-transform.git",
+ "revision" : "3c2618eb953a5de61099452f2b4764a1e1d10674",
+ "path" : ""
+ },
+ "resolved_revision" : "3c2618eb953a5de61099452f2b4764a1e1d10674"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:01:23.000507813Z",
+ "end_time" : "2023-07-19T13:01:26.000910967Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 74,
+ "end_line" : 76
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) James Talmage (https://github.com/jamestalmage)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 76,
+ "end_line" : 76
+ }
+ }, {
+ "statement" : "Copyright (c) James Talmage ",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/caching-transform.git",
+ "revision" : "961cc0dab59f4327795446eb41e700c067d0b87d",
+ "path" : ""
+ },
+ "resolved_revision" : "961cc0dab59f4327795446eb41e700c067d0b87d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:57:43.000148179Z",
+ "end_time" : "2023-07-20T07:57:47.000179391Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 161,
+ "end_line" : 163
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) James Talmage (https://github.com/jamestalmage)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 163,
+ "end_line" : 163
+ }
+ }, {
+ "statement" : "Copyright (c) James Talmage ",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/istanbul-lib-processinfo.git",
+ "revision" : "b9cd52cf6eb140cf3bff24ba5df34d5812845d66",
+ "path" : ""
+ },
+ "resolved_revision" : "b9cd52cf6eb140cf3bff24ba5df34d5812845d66"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:16:48.000883465Z",
+ "end_time" : "2023-07-20T07:16:52.000835429Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/load-nyc-config.git",
+ "revision" : "2033a007672d90669c48c79e6a2d63a3cd0851a7",
+ "path" : ""
+ },
+ "resolved_revision" : "2033a007672d90669c48c79e6a2d63a3cd0851a7"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:41:40.000279628Z",
+ "end_time" : "2023-07-20T07:41:42.000833479Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019, Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/schema.git",
+ "revision" : "d7da65adc197d15e06afb3761f560507ae048495",
+ "path" : ""
+ },
+ "resolved_revision" : "d7da65adc197d15e06afb3761f560507ae048495"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:23:09.000253507Z",
+ "end_time" : "2023-07-18T06:23:11.000676822Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 16,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 CFWare, LLC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/spawn-wrap.git",
+ "revision" : "c1c6cea28dc9d6760ae2c4eebeff8a60a80d7fd7",
+ "path" : ""
+ },
+ "resolved_revision" : "c1c6cea28dc9d6760ae2c4eebeff8a60a80d7fd7"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:58:40.000025750Z",
+ "end_time" : "2023-07-20T07:58:43.000700482Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/istanbuljs/test-exclude.git",
+ "revision" : "b788e7bd7cfdec8b471ad7b79d0d4a44975e2e99",
+ "path" : ""
+ },
+ "resolved_revision" : "b788e7bd7cfdec8b471ad7b79d0d4a44975e2e99"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:24:22.000098699Z",
+ "end_time" : "2023-07-18T06:24:24.000615397Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 3,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2016, Contributors",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jbgutierrez/path-parse.git",
+ "revision" : "9f1db2802ffbc572e6b447f66126697e33b0055e",
+ "path" : ""
+ },
+ "resolved_revision" : "9f1db2802ffbc572e6b447f66126697e33b0055e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:07:10.000553256Z",
+ "end_time" : "2023-07-19T13:07:12.000767605Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 40,
+ "end_line" : 42
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Javier Blanco (http://jbgutierrez.info)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 42,
+ "end_line" : 42
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Javier Blanco",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jensyt/imurmurhash-js.git",
+ "revision" : "9f40361c7e2835a9b7b8eaa1cbab2a9f94ee22a2",
+ "path" : ""
+ },
+ "resolved_revision" : "9f40361c7e2835a9b7b8eaa1cbab2a9f94ee22a2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:21.000898580Z",
+ "end_time" : "2023-07-20T07:27:24.000373414Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 103,
+ "end_line" : 103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 107,
+ "end_line" : 122
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 32,
+ "end_line" : 32
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Gary Court, Jens Taylor",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Gary Court, Jens Taylor",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 105,
+ "end_line" : 105
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/fill-range.git",
+ "revision" : "39f421b499d5c97b62e955c179fa34c062aab2a5",
+ "path" : ""
+ },
+ "resolved_revision" : "39f421b499d5c97b62e955c179fa34c062aab2a5"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:04:55.000081100Z",
+ "end_time" : "2023-07-18T07:04:58.000153520Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 233,
+ "end_line" : 233
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/verify-matches.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "test/verify-matches.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 232,
+ "end_line" : 232
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-extglob.git",
+ "revision" : "10a74787acbe79abf02141c5d487950d1b197b15",
+ "path" : ""
+ },
+ "resolved_revision" : "10a74787acbe79abf02141c5d487950d1b197b15"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:41:58.000817651Z",
+ "end_time" : "2023-07-20T07:42:01.000167037Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 103,
+ "end_line" : 103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 11,
+ "end_line" : 11
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2015, Jon Schlinkert",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2016, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2016, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2016, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 102,
+ "end_line" : 102
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-number.git",
+ "revision" : "98e8ff1da1a89f93d1397a24d7413ed15421c139",
+ "path" : ""
+ },
+ "resolved_revision" : "98e8ff1da1a89f93d1397a24d7413ed15421c139"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:04:21.000131232Z",
+ "end_time" : "2023-07-18T07:04:23.000933659Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 183,
+ "end_line" : 183
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 16,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2018, Jon Schlinkert",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-present, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 182,
+ "end_line" : 182
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/is-windows.git",
+ "revision" : "4dcfff4ed9e36ad761a1a24d3899c832382d7254",
+ "path" : ""
+ },
+ "resolved_revision" : "4dcfff4ed9e36ad761a1a24d3899c832382d7254"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:09:05.000139646Z",
+ "end_time" : "2023-07-19T12:09:07.000621273Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 91,
+ "end_line" : 91
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 16,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015-2018, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2015-2018, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 90,
+ "end_line" : 90
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/normalize-path.git",
+ "revision" : "0979eb807a1725d83d5a996347d41067cf773d1f",
+ "path" : ""
+ },
+ "resolved_revision" : "0979eb807a1725d83d5a996347d41067cf773d1f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:17:16.000393952Z",
+ "end_time" : "2023-07-20T07:17:19.000706027Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 123,
+ "end_line" : 123
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "benchmark/code/v2.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "benchmark/code/v2.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2018, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2018, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2018, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 122,
+ "end_line" : 122
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/word-wrap.git",
+ "revision" : "cdab7f263a0af97df0626043d908aa087d3d3089",
+ "path" : ""
+ },
+ "resolved_revision" : "cdab7f263a0af97df0626043d908aa087d3d3089"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:35:07.000024613Z",
+ "end_time" : "2023-07-20T06:35:10.000257548Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 178,
+ "end_line" : 178
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2016, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 177,
+ "end_line" : 177
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jonschlinkert/write.git",
+ "revision" : "6a48d4e363510c52653fabc25f620a484d6058bf",
+ "path" : ""
+ },
+ "resolved_revision" : "6a48d4e363510c52653fabc25f620a484d6058bf"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:39:15.000372065Z",
+ "end_time" : "2023-07-20T06:39:21.000483353Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 174,
+ "end_line" : 174
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2015, Jon Schlinkert",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2017, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 173,
+ "end_line" : 173
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jquery/esprima.git",
+ "revision" : "0ed4b8afdf2abd416f738977672c6232836f410a",
+ "path" : ""
+ },
+ "resolved_revision" : "0ed4b8afdf2abd416f738977672c6232836f410a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:46:33.000421834Z",
+ "end_time" : "2023-07-19T12:51:31.000706649Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "LICENSE.BSD",
+ "start_line" : 3,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "bin/esparse.js",
+ "start_line" : 5,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "bin/esvalidate.js",
+ "start_line" : 5,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 36,
+ "end_line" : 36
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "src/esprima.ts",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/api-tests.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/benchmark-parser.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/benchmark-tokenizer.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/browser-tests.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/check-complexity.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/check-version.js",
+ "start_line" : 6,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/downstream.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/grammar-tests.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/hostile-environment-tests.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/profile.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/regression-tests.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/unit-tests.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/utils/create-testcases.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/utils/error-to-object.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "test/utils/evaluate-testcase.js",
+ "start_line" : 4,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tools/fixupbundle.js",
+ "start_line" : 5,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "tools/generate-fixtures.js",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4719,
+ "end_line" : 4719
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "test/3rdparty/yui-3.12.0.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 99.0
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 54.55
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4718,
+ "end_line" : 4718
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LGPL-2.0-or-later",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4718,
+ "end_line" : 4718
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/angular-1.2.5.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/backbone-1.1.0.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/benchmark.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/jquery-1.9.1.js",
+ "start_line" : 9,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/jquery-1.9.1.js",
+ "start_line" : 3690,
+ "end_line" : 3690
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 7,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 232,
+ "end_line" : 233
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 831,
+ "end_line" : 832
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 14000,
+ "end_line" : 14001
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 542,
+ "end_line" : 542
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 723,
+ "end_line" : 723
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 807,
+ "end_line" : 807
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 861,
+ "end_line" : 861
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 991,
+ "end_line" : 991
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 1202,
+ "end_line" : 1202
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 1457,
+ "end_line" : 1457
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 1584,
+ "end_line" : 1584
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 1701,
+ "end_line" : 1701
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 1881,
+ "end_line" : 1881
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 3043,
+ "end_line" : 3043
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4103,
+ "end_line" : 4103
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4322,
+ "end_line" : 4322
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4514,
+ "end_line" : 4514
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4715,
+ "end_line" : 4715
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 4999,
+ "end_line" : 4999
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 5180,
+ "end_line" : 5180
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 5350,
+ "end_line" : 5350
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 5463,
+ "end_line" : 5463
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 5542,
+ "end_line" : 5542
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 5657,
+ "end_line" : 5657
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 5937,
+ "end_line" : 5937
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 6027,
+ "end_line" : 6027
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 6110,
+ "end_line" : 6110
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 6158,
+ "end_line" : 6158
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 6234,
+ "end_line" : 6234
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 6341,
+ "end_line" : 6341
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/3rdparty/underscore-1.5.2.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT OR BSD-3-Clause",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 1910,
+ "end_line" : 1910
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT OR GPL-2.0-only",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 1522,
+ "end_line" : 1523
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT OR GPL-2.0-only",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 1538,
+ "end_line" : 1539
+ },
+ "score" : 99.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2007-2008 Steven Levithan ",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 1881,
+ "end_line" : 1881
+ }
+ }, {
+ "statement" : "(c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Underscore",
+ "location" : {
+ "path" : "test/3rdparty/underscore-1.5.2.js",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "(c) 2010-2011 Jeremy Ashkenas, DocumentCloud Inc.",
+ "location" : {
+ "path" : "test/3rdparty/backbone-1.1.0.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "(c) 2010-2014 Google, Inc. http://angularjs.org",
+ "location" : {
+ "path" : "test/3rdparty/angular-1.2.5.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "(c) 2011-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Backbone",
+ "location" : {
+ "path" : "test/3rdparty/backbone-1.1.0.js",
+ "start_line" : 4,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "(c) r 2016",
+ "location" : {
+ "path" : "test/fixtures/JSX/attribute-unknown-entity.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "(c) r 2016",
+ "location" : {
+ "path" : "test/fixtures/JSX/attribute-unknown-entity.tree.json",
+ "start_line" : 52,
+ "end_line" : 52
+ }
+ }, {
+ "statement" : "Copyright (c) 2005-2007 Sam Stephenson",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 29,
+ "end_line" : 29
+ }
+ }, {
+ "statement" : "Copyright (c) 2006 Dean Edwards, GNU Lesser General",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 28,
+ "end_line" : 28
+ }
+ }, {
+ "statement" : "Copyright (c) 2006-2012 Valerio Proietti (http://mad4milk.net/)",
+ "location" : {
+ "path" : "test/3rdparty/mootools-1.4.5.js",
+ "start_line" : 23,
+ "end_line" : 23
+ }
+ }, {
+ "statement" : "Copyright (c) 2010 Cowboy Ben Alman",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 1521,
+ "end_line" : 1521
+ }
+ }, {
+ "statement" : "Copyright (c) 2010 Cowboy Ben Alman",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 1537,
+ "end_line" : 1537
+ }
+ }, {
+ "statement" : "Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors",
+ "location" : {
+ "path" : "test/3rdparty/jquery-1.9.1.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "Copyright 2010, 2014 jQuery Foundation, Inc. and other contributors",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright 2010-2012 Mathias Bynens ",
+ "location" : {
+ "path" : "test/3rdparty/benchmark.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright 2012 jQuery Foundation and other contributors",
+ "location" : {
+ "path" : "test/3rdparty/jquery-1.9.1.js",
+ "start_line" : 3689,
+ "end_line" : 3689
+ }
+ }, {
+ "statement" : "Copyright 2013 Yahoo! Inc.",
+ "location" : {
+ "path" : "test/3rdparty/yui-3.12.0.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright 2013 jQuery Foundation and other contributors",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 231,
+ "end_line" : 231
+ }
+ }, {
+ "statement" : "Copyright 2013 jQuery Foundation and other contributors",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 830,
+ "end_line" : 830
+ }
+ }, {
+ "statement" : "Copyright 2013 jQuery Foundation and other contributors",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 13999,
+ "end_line" : 13999
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "LICENSE.BSD",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "bin/esparse.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "bin/esvalidate.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "src/esprima.ts",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/api-tests.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/benchmark-parser.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/benchmark-tokenizer.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/browser-tests.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/check-complexity.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/check-version.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/downstream.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/grammar-tests.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/hostile-environment-tests.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/profile.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/regression-tests.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/unit-tests.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/utils/create-testcases.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/utils/error-to-object.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "test/utils/evaluate-testcase.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "tools/fixupbundle.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright JS Foundation and other contributors, https://js.foundation",
+ "location" : {
+ "path" : "tools/generate-fixtures.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "copyright (c) 2012 Scott Jehl, Paul Irish, Nicholas Zakas",
+ "location" : {
+ "path" : "test/3rdparty/jquery.mobile-1.4.2.js",
+ "start_line" : 1910,
+ "end_line" : 1910
+ }
+ }, {
+ "statement" : "copyright Robert Kieffer ",
+ "location" : {
+ "path" : "test/3rdparty/benchmark.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "a44a71dd0aa2c4eac4a8577f3e150dbc3aafdb80",
+ "path" : ""
+ },
+ "resolved_revision" : "a44a71dd0aa2c4eac4a8577f3e150dbc3aafdb80"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:05:38.000316557Z",
+ "end_time" : "2023-07-19T12:05:42.000975884Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2022 Justin Ridgewell ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/gen-mapping.git",
+ "revision" : "2464c6cbd4b98bbbd6d97bbf1889edd1a647adcc",
+ "path" : ""
+ },
+ "resolved_revision" : "2464c6cbd4b98bbbd6d97bbf1889edd1a647adcc"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:01:13.000377016Z",
+ "end_time" : "2023-07-19T13:01:18.000559050Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2022 Justin Ridgewell ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/resolve-uri.git",
+ "revision" : "7cc23209430909a54f44b740e07cb27573535c95",
+ "path" : ""
+ },
+ "resolved_revision" : "7cc23209430909a54f44b740e07cb27573535c95"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:08:46.000595495Z",
+ "end_time" : "2023-07-19T13:08:57.000234773Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2019 Justin Ridgewell ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/set-array.git",
+ "revision" : "f1d9855dd0d7e34bcc02307249783589ed715661",
+ "path" : ""
+ },
+ "resolved_revision" : "f1d9855dd0d7e34bcc02307249783589ed715661"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:52:03.000583874Z",
+ "end_time" : "2023-07-19T12:52:07.000427552Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2022 Justin Ridgewell ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/sourcemap-codec.git",
+ "revision" : "802e17965c9b5694b338412618a1b32bd07af166",
+ "path" : ""
+ },
+ "resolved_revision" : "802e17965c9b5694b338412618a1b32bd07af166"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:39:48.000009745Z",
+ "end_time" : "2023-07-19T12:39:52.000454823Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 198,
+ "end_line" : 200
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 56,
+ "end_line" : 56
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Rich Harris",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jridgewell/trace-mapping.git",
+ "revision" : "23ab4a29244444d825044ff8fb9a8d57f41837fa",
+ "path" : ""
+ },
+ "resolved_revision" : "23ab4a29244444d825044ff8fb9a8d57f41837fa"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:03:53.000148143Z",
+ "end_time" : "2023-07-18T07:04:01.000684646Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 32,
+ "end_line" : 32
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2022 Justin Ridgewell ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-db.git",
+ "revision" : "c28146bfd5a10f3bc1da482e1751e7782817a60b",
+ "path" : ""
+ },
+ "resolved_revision" : "c28146bfd5a10f3bc1da482e1751e7782817a60b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:01:31.000356219Z",
+ "end_time" : "2023-07-19T13:01:42.000485130Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 6,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Jonathan Ong",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Jonathan Ong me@jongleberry.com",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jshttp/mime-types.git",
+ "revision" : "73f9933bfa5247337b459240ec67ea6045cdec84",
+ "path" : ""
+ },
+ "resolved_revision" : "73f9933bfa5247337b459240ec67ea6045cdec84"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-17T11:25:52.000180663Z",
+ "end_time" : "2023-07-17T11:25:54.000553831Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 6,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 101,
+ "end_line" : 103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Jonathan Ong",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Jonathan Ong ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Douglas Christopher Wilson",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Douglas Christopher Wilson ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-correct.js.git",
+ "revision" : "24954c75aba5ace68365345154ff21bcd3580302",
+ "path" : ""
+ },
+ "resolved_revision" : "24954c75aba5ace68365345154ff21bcd3580302"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:04:44.000900058Z",
+ "end_time" : "2023-07-18T07:04:48.000417029Z",
+ "licenses" : [ {
+ "license" : "AGPL-3.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 80.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 146,
+ "end_line" : 146
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 142,
+ "end_line" : 142
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 150,
+ "end_line" : 150
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause-Clear",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 154,
+ "end_line" : 154
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 32,
+ "end_line" : 32
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 35,
+ "end_line" : 35
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 40,
+ "end_line" : 40
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 41,
+ "end_line" : 41
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 43,
+ "end_line" : 43
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 43,
+ "end_line" : 43
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 44,
+ "end_line" : 44
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 44,
+ "end_line" : 44
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 45,
+ "end_line" : 46
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 46,
+ "end_line" : 46
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 47,
+ "end_line" : 47
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 47,
+ "end_line" : 47
+ },
+ "score" : 50.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 48,
+ "end_line" : 48
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 48,
+ "end_line" : 49
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-1.0-or-later",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 49,
+ "end_line" : 49
+ },
+ "score" : 50.0
+ }, {
+ "license" : "LicenseRef-scancode-other-permissive",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 158,
+ "end_line" : 158
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MPL-1.0",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 51,
+ "end_line" : 51
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2014 WTFPL",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 382,
+ "end_line" : 382
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Michael",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 311,
+ "end_line" : 311
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Austin",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 295,
+ "end_line" : 295
+ }
+ }, {
+ "statement" : "Copyright 2014 uh-sem-blee, Co.' AGPL-3.0-or-later', AGPL-3' AGPL-3.0-or-later', AGPL3' AGPL-3.0-or-later",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 33,
+ "end_line" : 35
+ }
+ }, {
+ "statement" : "Copyright First Rally",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 304,
+ "end_line" : 304
+ }
+ }, {
+ "statement" : "Copyright spdx-correct.js contributors",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-expression-parse.js.git",
+ "revision" : "d7daff468ce455f636838a8375d8699cf36be64d",
+ "path" : ""
+ },
+ "resolved_revision" : "d7daff468ce455f636838a8375d8699cf36be64d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:05:24.000493034Z",
+ "end_time" : "2023-07-19T12:05:27.000145565Z",
+ "licenses" : [ {
+ "license" : "CC-BY-3.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 91,
+ "end_line" : 91
+ },
+ "score" : 100.0
+ }, {
+ "license" : "JSON",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla AND MIT",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 91,
+ "end_line" : 91
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Kyle E. Mitchell",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/jslicense/spdx-license-ids.git",
+ "revision" : "d2623744e1e6afa1b393491dda5e8e5168de1aef",
+ "path" : ""
+ },
+ "resolved_revision" : "d2623744e1e6afa1b393491dda5e8e5168de1aef"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:43:57.000732803Z",
+ "end_time" : "2023-07-19T12:44:01.000151729Z",
+ "licenses" : [ {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 50,
+ "end_line" : 52
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/json-schema/JSON-Schema-Test-Suite.git",
+ "revision" : "eadeacb04209a18fc81f1a1959e83eef72dcc97a",
+ "path" : ""
+ },
+ "resolved_revision" : "eadeacb04209a18fc81f1a1959e83eef72dcc97a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:18:02.000743242Z",
+ "end_time" : "2023-07-18T07:18:14.000582520Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012 Julian Berman",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/json5/json5.git",
+ "revision" : "c3a75242772a5026a49c4017a16d9b3543b62776",
+ "path" : ""
+ },
+ "resolved_revision" : "c3a75242772a5026a49c4017a16d9b3543b62776"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:41:12.000303976Z",
+ "end_time" : "2023-07-18T07:41:17.000728452Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 251,
+ "end_line" : 252
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 48,
+ "end_line" : 48
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json5",
+ "start_line" : 49,
+ "end_line" : 49
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012-2018 Aseem Kishore, and others",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/balanced-match.git",
+ "revision" : "c7412e09b95d6ad97fd1e2996f6adca7626a9ae8",
+ "path" : ""
+ },
+ "resolved_revision" : "c7412e09b95d6ad97fd1e2996f6adca7626a9ae8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:07:17.000512650Z",
+ "end_time" : "2023-07-19T13:07:19.000746901Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 75,
+ "end_line" : 77
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 81,
+ "end_line" : 97
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Julian Gruber ",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Julian Gruber ",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 79,
+ "end_line" : 79
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/brace-expansion.git",
+ "revision" : "01a21de7441549d26ac0c0a9ff91385d16e5c21c",
+ "path" : ""
+ },
+ "resolved_revision" : "01a21de7441549d26ac0c0a9ff91385d16e5c21c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:44.000503569Z",
+ "end_time" : "2023-07-19T13:02:46.000918318Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 107,
+ "end_line" : 109
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 113,
+ "end_line" : 129
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Julian Gruber ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2013 Julian Gruber ",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 111,
+ "end_line" : 111
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/juliangruber/isarray.git",
+ "revision" : "2a23a281f369e9ae06394c0fb4d2381355a6ba33",
+ "path" : ""
+ },
+ "resolved_revision" : "2a23a281f369e9ae06394c0fb4d2381355a6ba33"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:54:26.000730601Z",
+ "end_time" : "2023-07-20T07:54:29.000198586Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 38,
+ "end_line" : 40
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 44,
+ "end_line" : 60
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "component.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 25,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Julian Gruber ",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 42,
+ "end_line" : 42
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kemitchell/spdx-exceptions.json.git",
+ "revision" : "b1405b421074aae250f5cfefc1adff1c6085b293",
+ "path" : ""
+ },
+ "resolved_revision" : "b1405b421074aae250f5cfefc1adff1c6085b293"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:01:58.000007758Z",
+ "end_time" : "2023-07-19T13:02:00.000148260Z",
+ "licenses" : [ {
+ "license" : "CC-BY-3.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 16,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-3.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2010-2015 Linux Foundation and its Contributors",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 16,
+ "end_line" : 16
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kemitchell/validate-npm-package-license.js.git",
+ "revision" : "6bbe26201fa7e5c7281516b04b9f3f4cc6db145c",
+ "path" : ""
+ },
+ "resolved_revision" : "6bbe26201fa7e5c7281516b04b9f3f4cc6db145c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:26:20.000481643Z",
+ "end_time" : "2023-07-20T07:26:22.000899792Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 39,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 50,
+ "end_line" : 50
+ },
+ "score" : 100.0
+ }, {
+ "license" : "GPL-3.0-only",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 50,
+ "end_line" : 50
+ },
+ "score" : 50.0
+ }, {
+ "license" : "LicenseRef-scancode-proprietary-license",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 38,
+ "end_line" : 38
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 66,
+ "end_line" : 66
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 85,
+ "end_line" : 85
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 94,
+ "end_line" : 94
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/astral-regex.git",
+ "revision" : "20d5f406d37af3697145eb415355a89fdd4a2279",
+ "path" : ""
+ },
+ "resolved_revision" : "20d5f406d37af3697145eb415355a89fdd4a2279"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:18:19.000767050Z",
+ "end_time" : "2023-07-18T07:18:22.000098840Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 41,
+ "end_line" : 43
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Kevin Martensson (https://github.com/kevva)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 43,
+ "end_line" : 43
+ }
+ }, {
+ "statement" : "Copyright (c) Kevin Martensson ",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/shebang-command.git",
+ "revision" : "01de9b7d355f21e00417650a6fb1eb56321bc23c",
+ "path" : ""
+ },
+ "resolved_revision" : "01de9b7d355f21e00417650a6fb1eb56321bc23c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:10:43.000863301Z",
+ "end_time" : "2023-07-19T13:10:45.000940120Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 37,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Kevin Martensson (http://github.com/kevva)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 39,
+ "end_line" : 39
+ }
+ }, {
+ "statement" : "Copyright (c) Kevin Martensson ",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kevva/shebang-command.git",
+ "revision" : "003c4c7d6882d029aa8b3e5777716d726894d734",
+ "path" : ""
+ },
+ "resolved_revision" : "003c4c7d6882d029aa8b3e5777716d726894d734"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:45.000212414Z",
+ "end_time" : "2023-07-20T07:42:47.000299776Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Kevin Martensson ",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kilian/electron-to-chromium.git",
+ "revision" : "107f7d7bd48c0128618554f95cfc101709597c63",
+ "path" : ""
+ },
+ "resolved_revision" : "107f7d7bd48c0128618554f95cfc101709597c63"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:24:40.000076132Z",
+ "end_time" : "2023-07-18T06:24:42.000563159Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "JSON",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 14,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2018 Kilian Valkhof",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/kpdecker/jsdiff.git",
+ "revision" : "e9ab94893a77f1f7d7ea8483b873083e6c6a390a",
+ "path" : ""
+ },
+ "resolved_revision" : "e9ab94893a77f1f7d7ea8483b873083e6c6a390a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:41:21.000856326Z",
+ "end_time" : "2023-07-20T07:41:28.000897718Z",
+ "licenses" : [ {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 31
+ },
+ "score" : 93.89
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "components/component.json",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 16,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 211,
+ "end_line" : 211
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "src/index.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2009-2015, Kevin Decker ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/litejs/natural-compare-lite.git",
+ "revision" : "eec83eee67cfac84d6db30cdd65363f155673770",
+ "path" : ""
+ },
+ "resolved_revision" : "eec83eee67cfac84d6db30cdd65363f155673770"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:19:00.000747411Z",
+ "end_time" : "2023-07-20T07:19:04.000199036Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 124,
+ "end_line" : 124
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "dist/index-min.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 38,
+ "end_line" : 38
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012-2015 Lauri Rooden ",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 123,
+ "end_line" : 123
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/System.global.git",
+ "revision" : "8bc4bb4c715f89390fe083f2e2ed277474775972",
+ "path" : ""
+ },
+ "resolved_revision" : "8bc4bb4c715f89390fe083f2e2ed277474775972"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:51:00.000571328Z",
+ "end_time" : "2023-07-18T06:51:03.000167598Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2016 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/call-bind.git",
+ "revision" : "42b3cbfb095850822acd2352ec2a8cd0f7f58dd0",
+ "path" : ""
+ },
+ "resolved_revision" : "42b3cbfb095850822acd2352ec2a8cd0f7f58dd0"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:55:27.000858158Z",
+ "end_time" : "2023-07-20T07:55:30.000554361Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 54,
+ "end_line" : 54
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2020 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/define-properties.git",
+ "revision" : "08fa234e22964a179aad624bed13eca44ad8c6b4",
+ "path" : ""
+ },
+ "resolved_revision" : "08fa234e22964a179aad624bed13eca44ad8c6b4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:07.000981791Z",
+ "end_time" : "2023-07-20T07:27:10.000495706Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-abstract.git",
+ "revision" : "b3fc2d4f7af5dd9a22811e423cf19360f7d4da6d",
+ "path" : ""
+ },
+ "resolved_revision" : "b3fc2d4f7af5dd9a22811e423cf19360f7d4da6d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:41:37.000276687Z",
+ "end_time" : "2023-07-19T12:42:36.000583865Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2015/ArraySpeciesCreate.js",
+ "start_line" : 31,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2016/ArraySpeciesCreate.js",
+ "start_line" : 31,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2017/ArraySpeciesCreate.js",
+ "start_line" : 31,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2018/ArraySpeciesCreate.js",
+ "start_line" : 31,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2019/ArraySpeciesCreate.js",
+ "start_line" : 31,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2020/ArraySpeciesCreate.js",
+ "start_line" : 31,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2021/ArraySpeciesCreate.js",
+ "start_line" : 33,
+ "end_line" : 34
+ }
+ }, {
+ "statement" : "(c) Object C",
+ "location" : {
+ "path" : "2022/ArraySpeciesCreate.js",
+ "start_line" : 33,
+ "end_line" : 34
+ }
+ }, {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-array-method-boxes-properly.git",
+ "revision" : "3eaba7ec973da0af31aaae4ac40c720d486d24f9",
+ "path" : ""
+ },
+ "resolved_revision" : "3eaba7ec973da0af31aaae4ac40c720d486d24f9"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:55:13.000677021Z",
+ "end_time" : "2023-07-20T07:55:16.000243716Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 19,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-shim-unscopables.git",
+ "revision" : "4927833211c6ca86d5a892b979b6804f1edc4c71",
+ "path" : ""
+ },
+ "resolved_revision" : "4927833211c6ca86d5a892b979b6804f1edc4c71"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:55:40.000488944Z",
+ "end_time" : "2023-07-20T07:55:43.000513541Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2022 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/es-to-primitive.git",
+ "revision" : "fc864b766689e70707a0b86a136b0ec0021e4d17",
+ "path" : ""
+ },
+ "resolved_revision" : "fc864b766689e70707a0b86a136b0ec0021e4d17"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:40:59.000348950Z",
+ "end_time" : "2023-07-20T06:41:01.000902620Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/get-intrinsic.git",
+ "revision" : "0b60d7ac9d93e8824a36ddd52635be1fc13758d1",
+ "path" : ""
+ },
+ "resolved_revision" : "0b60d7ac9d93e8824a36ddd52635be1fc13758d1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:50:28.000118279Z",
+ "end_time" : "2023-07-18T06:50:31.000038211Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 45,
+ "end_line" : 45
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2020 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/gopd.git",
+ "revision" : "e3236ba6cdee15eef18be63dcc46045c035d4429",
+ "path" : ""
+ },
+ "resolved_revision" : "e3236ba6cdee15eef18be63dcc46045c035d4429"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:25.000547412Z",
+ "end_time" : "2023-07-20T07:42:27.000748439Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 39,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2022 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/has-bigints.git",
+ "revision" : "6aa1ab523edade31d6c558d57d34204639318633",
+ "path" : ""
+ },
+ "resolved_revision" : "6aa1ab523edade31d6c558d57d34204639318633"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:50:11.000753756Z",
+ "end_time" : "2023-07-18T06:50:14.000194390Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/internal-slot.git",
+ "revision" : "36eb820fff0dd696f966ab9ed597ddabdd401b3c",
+ "path" : ""
+ },
+ "resolved_revision" : "36eb820fff0dd696f966ab9ed597ddabdd401b3c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:44:44.000205632Z",
+ "end_time" : "2023-07-19T12:44:46.000633861Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 35,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/is-string.git",
+ "revision" : "e8a5b6d659f59e744ae03b2557e0482cd69194b3",
+ "path" : ""
+ },
+ "resolved_revision" : "e8a5b6d659f59e744ae03b2557e0482cd69194b3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:55:34.000925666Z",
+ "end_time" : "2023-07-20T07:55:37.000451977Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object-keys.git",
+ "revision" : "ba2c1989270c7de969aa8498fc3b7c8e677806f3",
+ "path" : ""
+ },
+ "resolved_revision" : "ba2c1989270c7de969aa8498fc3b7c8e677806f3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:51:56.000030461Z",
+ "end_time" : "2023-07-19T12:51:58.000546345Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object.assign.git",
+ "revision" : "5fd74aee40aba36e9a8eb0c329abd33a07b93164",
+ "path" : ""
+ },
+ "resolved_revision" : "5fd74aee40aba36e9a8eb0c329abd33a07b93164"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:23:42.000131002Z",
+ "end_time" : "2023-07-18T06:23:44.000675257Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/object.assign.git",
+ "revision" : "025e374fb6436c378918e91b47049a7a043f4b5b",
+ "path" : ""
+ },
+ "resolved_revision" : "025e374fb6436c378918e91b47049a7a043f4b5b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:56:55.000542958Z",
+ "end_time" : "2023-07-19T12:56:58.000356167Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 22,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/safe-regex-test.git",
+ "revision" : "5ff385f943afbe6d23a0e01e5e0444d88b4bee93",
+ "path" : ""
+ },
+ "resolved_revision" : "5ff385f943afbe6d23a0e01e5e0444d88b4bee93"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:50:34.000673770Z",
+ "end_time" : "2023-07-18T06:50:37.000266340Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 39,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2022 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/side-channel.git",
+ "revision" : "5c3c3fe90858eff0dd5c24d1f6a8351f8810755e",
+ "path" : ""
+ },
+ "resolved_revision" : "5c3c3fe90858eff0dd5c24d1f6a8351f8810755e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:41:52.000470310Z",
+ "end_time" : "2023-07-20T07:41:54.000852847Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 40,
+ "end_line" : 40
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/ljharb/unbox-primitive.git",
+ "revision" : "c93a80dea8d62105b3bd10e4f33440943737f5d9",
+ "path" : ""
+ },
+ "resolved_revision" : "c93a80dea8d62105b3bd10e4f33440943737f5d9"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:28:18.000180343Z",
+ "end_time" : "2023-07-20T07:28:20.000514055Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Jordan Harband",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lodash/lodash.git",
+ "revision" : "e878559fb910f0e5e45d06c8a4d76021a4c9a5de",
+ "path" : ""
+ },
+ "resolved_revision" : "e878559fb910f0e5e45d06c8a4d76021a4c9a5de"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:39:42.000691930Z",
+ "end_time" : "2023-07-18T07:40:55.000205561Z",
+ "licenses" : [ {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "vendor/firebug-lite/license.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "vendor/firebug-lite/license.txt",
+ "start_line" : 6,
+ "end_line" : 30
+ },
+ "score" : 99.08
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 17228,
+ "end_line" : 17228
+ },
+ "score" : 99.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 17233,
+ "end_line" : 17257
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "CONTRIBUTING.md",
+ "start_line" : 35,
+ "end_line" : 35
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-json-pd",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11997,
+ "end_line" : 12008
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-json-pd",
+ "location" : {
+ "path" : "vendor/json-js/json2.js",
+ "start_line" : 5,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/skin/xp/debugger.css",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/skin/xp/firebug.css",
+ "start_line" : 209,
+ "end_line" : 209
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/skin/xp/firebug.css",
+ "start_line" : 340,
+ "end_line" : 340
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/skin/xp/firebug.css",
+ "start_line" : 1170,
+ "end_line" : 1170
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/skin/xp/firebug.css",
+ "start_line" : 1837,
+ "end_line" : 1837
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/skin/xp/html.css",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 6104,
+ "end_line" : 6104
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 6231,
+ "end_line" : 6231
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 7592,
+ "end_line" : 7592
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 8569,
+ "end_line" : 8569
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 9217,
+ "end_line" : 9217
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11585,
+ "end_line" : 11585
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11598,
+ "end_line" : 11598
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11780,
+ "end_line" : 11780
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11916,
+ "end_line" : 11916
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11929,
+ "end_line" : 11929
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11962,
+ "end_line" : 11962
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 11991,
+ "end_line" : 11991
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 12485,
+ "end_line" : 12485
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 12628,
+ "end_line" : 12628
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 13660,
+ "end_line" : 13660
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 14186,
+ "end_line" : 14186
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 15326,
+ "end_line" : 15326
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 15996,
+ "end_line" : 15996
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 17262,
+ "end_line" : 17262
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 18659,
+ "end_line" : 18659
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 19204,
+ "end_line" : 19204
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 20517,
+ "end_line" : 20517
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 21282,
+ "end_line" : 21282
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 21411,
+ "end_line" : 21411
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 21618,
+ "end_line" : 21618
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 22813,
+ "end_line" : 22813
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 23656,
+ "end_line" : 23656
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 24211,
+ "end_line" : 24211
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 25013,
+ "end_line" : 25013
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 25384,
+ "end_line" : 25384
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 25697,
+ "end_line" : 25697
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 26322,
+ "end_line" : 26322
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 28815,
+ "end_line" : 28815
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 29117,
+ "end_line" : 29117
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 30810,
+ "end_line" : 30810
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 30991,
+ "end_line" : 30991
+ },
+ "score" : 90.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 31064,
+ "end_line" : 31064
+ },
+ "score" : 90.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 7,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "dist/lodash.core.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "dist/lodash.core.js",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "dist/lodash.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "dist/lodash.js",
+ "start_line" : 8,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "vendor/backbone/LICENSE",
+ "start_line" : 3,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "vendor/backbone/backbone.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 12492,
+ "end_line" : 12508
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "vendor/underscore/LICENSE",
+ "start_line" : 4,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "vendor/underscore/underscore-min.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "vendor/underscore/underscore.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT OR BSD-3-Clause OR GPL-2.0-only",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 18,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT OR BSD-3-Clause OR GPL-2.0-only",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 12636,
+ "end_line" : 12637
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Underscore",
+ "location" : {
+ "path" : "vendor/underscore/underscore-min.js",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "(c) 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Underscore",
+ "location" : {
+ "path" : "vendor/underscore/underscore.js",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "(c) 2010-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors Backbone",
+ "location" : {
+ "path" : "vendor/backbone/backbone.js",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2006, Yahoo! Inc.",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 17230,
+ "end_line" : 17230
+ }
+ }, {
+ "statement" : "Copyright (c) 2007, Parakey Inc.",
+ "location" : {
+ "path" : "vendor/firebug-lite/license.txt",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2007, Parakey Inc.",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright (c) 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors",
+ "location" : {
+ "path" : "vendor/underscore/LICENSE",
+ "start_line" : 1,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright (c) 2010-2011 Marcus Westin",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 12490,
+ "end_line" : 12490
+ }
+ }, {
+ "statement" : "Copyright (c) 2010-2016 Jeremy Ashkenas, DocumentCloud",
+ "location" : {
+ "path" : "vendor/backbone/LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright 2009, The Dojo Foundation",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 17,
+ "end_line" : 17
+ }
+ }, {
+ "statement" : "Copyright 2009, The Dojo Foundation",
+ "location" : {
+ "path" : "vendor/firebug-lite/src/firebug-lite-debug.js",
+ "start_line" : 12635,
+ "end_line" : 12635
+ }
+ }, {
+ "statement" : "Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors",
+ "location" : {
+ "path" : "dist/lodash.core.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors",
+ "location" : {
+ "path" : "dist/lodash.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "Copyright 2012-2016 The Dojo Foundation ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright 2012-2016 The Dojo Foundation ",
+ "location" : {
+ "path" : "dist/lodash.core.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright 2012-2016 The Dojo Foundation ",
+ "location" : {
+ "path" : "dist/lodash.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright 2012-2016 The Dojo Foundation ",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 5
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lodash/lodash.git",
+ "revision" : "c6e281b878b315c7a10d90f9c2af4cdb112d9625",
+ "path" : ""
+ },
+ "resolved_revision" : "c6e281b878b315c7a10d90f9c2af4cdb112d9625"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:09:18.000862604Z",
+ "end_time" : "2023-07-19T13:10:05.000795564Z",
+ "licenses" : [ {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 36,
+ "end_line" : 40
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 15,
+ "end_line" : 32
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "core.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "core.js",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lodash.min.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lodash.min.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 99.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors",
+ "location" : {
+ "path" : "core.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors",
+ "location" : {
+ "path" : "lodash.min.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright OpenJS Foundation and other contributors ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright OpenJS Foundation and other contributors ",
+ "location" : {
+ "path" : "core.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright OpenJS Foundation and other contributors ",
+ "location" : {
+ "path" : "lodash.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright OpenJS Foundation and other contributors ",
+ "location" : {
+ "path" : "lodash.min.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/loganfsmyth/gensync.git",
+ "revision" : "a182868db47da283a1a044cb15bfd388697a632f",
+ "path" : ""
+ },
+ "resolved_revision" : "a182868db47da283a1a044cb15bfd388697a632f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:56:36.000419611Z",
+ "end_time" : "2023-07-20T07:56:43.000141174Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2018 Logan Smyth ",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lukeed/escalade.git",
+ "revision" : "2477005062cdbd8407afc90d3f48f4930354252b",
+ "path" : ""
+ },
+ "resolved_revision" : "2477005062cdbd8407afc90d3f48f4930354252b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:31.000491167Z",
+ "end_time" : "2023-07-20T07:42:33.000877514Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 9,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 209,
+ "end_line" : 211
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Luke Edwards (https://lukeed.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 211,
+ "end_line" : 211
+ }
+ }, {
+ "statement" : "Copyright (c) Luke Edwards (lukeed.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/lydell/js-tokens.git",
+ "revision" : "0eb6e9daee32160ab0fca979b6dc91a1991b720c",
+ "path" : ""
+ },
+ "resolved_revision" : "0eb6e9daee32160ab0fca979b6dc91a1991b720c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:12.000711498Z",
+ "end_time" : "2023-07-20T07:42:16.000046715Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 237,
+ "end_line" : 240
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "esprima-compare.js",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "generate-index.js",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "regex.coffee",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/index.js",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright 2014 Simon Lydell",
+ "location" : {
+ "path" : "generate-index.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell",
+ "location" : {
+ "path" : "regex.coffee",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell",
+ "location" : {
+ "path" : "test/index.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ }, {
+ "statement" : "Copyright 2015, 2017 Simon Lydell",
+ "location" : {
+ "path" : "esprima-compare.js",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "3cbaf44e18f4996464ce97f1484ef425bbe8864a",
+ "path" : ""
+ },
+ "resolved_revision" : "3cbaf44e18f4996464ce97f1484ef425bbe8864a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:40.000208860Z",
+ "end_time" : "2023-07-20T07:27:44.000418770Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 73,
+ "end_line" : 73
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright Mathias Bynens ",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/emoji-regex.git",
+ "revision" : "a9f2e514523d4c0931974aff5059052da10c52c5",
+ "path" : ""
+ },
+ "resolved_revision" : "a9f2e514523d4c0931974aff5059052da10c52c5"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:59:23.000304557Z",
+ "end_time" : "2023-07-19T12:59:27.000357181Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 73,
+ "end_line" : 73
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright Mathias Bynens ",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/he.git",
+ "revision" : "36afe179392226cf1b6ccdb16ebbb7a5a844d93a",
+ "path" : ""
+ },
+ "resolved_revision" : "36afe179392226cf1b6ccdb16ebbb7a5a844d93a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:24:58.000813294Z",
+ "end_time" : "2023-07-19T12:25:09.000935519Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 379,
+ "end_line" : 379
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "component.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "he.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 17,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "src/he.js",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright Mathias Bynens ",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/jsesc.git",
+ "revision" : "5169a48f015437b7cdaffecaa10db52f155dace7",
+ "path" : ""
+ },
+ "resolved_revision" : "5169a48f015437b7cdaffecaa10db52f155dace7"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:42:53.000739300Z",
+ "end_time" : "2023-07-19T12:42:56.000741174Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 421,
+ "end_line" : 421
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 34,
+ "end_line" : 34
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright Mathias Bynens ",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mathiasbynens/punycode.js.git",
+ "revision" : "44e6200b96c186ebc5de72dcce2bcdfe8a32bfbc",
+ "path" : ""
+ },
+ "resolved_revision" : "44e6200b96c186ebc5de72dcce2bcdfe8a32bfbc"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:19:05.000684457Z",
+ "end_time" : "2023-07-18T07:19:08.000438162Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 3,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 126,
+ "end_line" : 126
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 21,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 38,
+ "end_line" : 38
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright Mathias Bynens ",
+ "location" : {
+ "path" : "LICENSE-MIT.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/anymatch.git",
+ "revision" : "cbd278e43710eaf325d2061fa11aefd127c509be",
+ "path" : ""
+ },
+ "resolved_revision" : "cbd278e43710eaf325d2061fa11aefd127c509be"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:10:24.000384385Z",
+ "end_time" : "2023-07-19T13:10:26.000705550Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 85,
+ "end_line" : 87
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 17,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/braces.git",
+ "revision" : "25791512d219b284bd62bb068cae85d8e68bd05b",
+ "path" : ""
+ },
+ "resolved_revision" : "25791512d219b284bd62bb068cae85d8e68bd05b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:52:16.000625146Z",
+ "end_time" : "2023-07-19T12:52:20.000467028Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 589,
+ "end_line" : 589
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2018, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 588,
+ "end_line" : 588
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/is-glob.git",
+ "revision" : "627ca7e552c69e8d62d620b4715a2658267b3d17",
+ "path" : ""
+ },
+ "resolved_revision" : "627ca7e552c69e8d62d620b4715a2658267b3d17"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:40:02.000496699Z",
+ "end_time" : "2023-07-19T12:40:05.000118643Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 202,
+ "end_line" : 202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 16,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2014-2015, Jon Schlinkert",
+ "location" : {
+ "path" : "test.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2017, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 201,
+ "end_line" : 201
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/picomatch.git",
+ "revision" : "5467a5a9638472610de4f30709991b9a56bb5613",
+ "path" : ""
+ },
+ "resolved_revision" : "5467a5a9638472610de4f30709991b9a56bb5613"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:07:49.000027878Z",
+ "end_time" : "2023-07-19T13:08:01.000512951Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : ".verb.md",
+ "start_line" : 505,
+ "end_line" : 505
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 708,
+ "end_line" : 708
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017-present, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2017-present, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : ".verb.md",
+ "start_line" : 504,
+ "end_line" : 504
+ }
+ }, {
+ "statement" : "Copyright (c) 2017-present, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 707,
+ "end_line" : 707
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/micromatch/to-regex-range.git",
+ "revision" : "c05ef9ec07e7703d146467934098ecbde9d0bd95",
+ "path" : ""
+ },
+ "resolved_revision" : "c05ef9ec07e7703d146467934098ecbde9d0bd95"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:59:10.000563319Z",
+ "end_time" : "2023-07-19T12:59:13.000323299Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 301,
+ "end_line" : 301
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015-present, Jon Schlinkert",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2015-present, Jon Schlinkert",
+ "location" : {
+ "path" : "index.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2019, Jon Schlinkert (https://github.com/jonschlinkert)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 300,
+ "end_line" : 300
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/minimistjs/minimist.git",
+ "revision" : "c590d75b741a12b5423e2b299f38a7f7c7d25a18",
+ "path" : ""
+ },
+ "resolved_revision" : "c590d75b741a12b5423e2b299f38a7f7c7d25a18"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:58:54.000830055Z",
+ "end_time" : "2023-07-19T12:58:57.000578179Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 103,
+ "end_line" : 105
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 61,
+ "end_line" : 61
+ },
+ "score" : 100.0
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mochajs/mocha.git",
+ "revision" : "69339a3e7710a790b106b922ce53fcb87772f689",
+ "path" : ""
+ },
+ "resolved_revision" : "69339a3e7710a790b106b922ce53fcb87772f689"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:00:44.000391540Z",
+ "end_time" : "2023-07-19T13:01:10.000137736Z",
+ "licenses" : [ {
+ "license" : "CC-BY-3.0",
+ "location" : {
+ "path" : "assets/mocha-banner.svg",
+ "start_line" : 31,
+ "end_line" : 37
+ },
+ "score" : 96.55
+ }, {
+ "license" : "CC-BY-3.0",
+ "location" : {
+ "path" : "assets/mocha-logo.svg",
+ "start_line" : 31,
+ "end_line" : 37
+ },
+ "score" : 96.55
+ }, {
+ "license" : "CC-BY-3.0",
+ "location" : {
+ "path" : "docs/images/mocha-logo.svg",
+ "start_line" : 31,
+ "end_line" : 37
+ },
+ "score" : 96.55
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "PROJECT_CHARTER.md",
+ "start_line" : 75,
+ "end_line" : 75
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "PROJECT_CHARTER.md",
+ "start_line" : 75,
+ "end_line" : 75
+ },
+ "score" : 50.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "docs/LICENSE-CC-BY-4.0",
+ "start_line" : 1,
+ "end_line" : 395
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "docs/README.md",
+ "start_line" : 43,
+ "end_line" : 43
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "docs/README.md",
+ "start_line" : 43,
+ "end_line" : 43
+ },
+ "score" : 50.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "docs/_includes/default.html",
+ "start_line" : 59,
+ "end_line" : 64
+ },
+ "score" : 81.82
+ }, {
+ "license" : "CC-BY-SA-3.0",
+ "location" : {
+ "path" : "assets/mocha-banner.svg",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-3.0",
+ "location" : {
+ "path" : "assets/mocha-logo.svg",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-3.0",
+ "location" : {
+ "path" : "docs/images/mocha-logo.svg",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-4.0",
+ "location" : {
+ "path" : "assets/mocha-banner.svg",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-4.0",
+ "location" : {
+ "path" : "assets/mocha-logo.svg",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-SA-4.0",
+ "location" : {
+ "path" : "docs/images/mocha-logo.svg",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "test/integration/fixtures/config/mocha-config/package.json",
+ "start_line" : 13,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : ".github/CONTRIBUTING.md",
+ "start_line" : 75,
+ "end_line" : 75
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-generic-cla",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 798,
+ "end_line" : 798
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-other-copyleft",
+ "location" : {
+ "path" : "assets/mocha-banner.svg",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 80.0
+ }, {
+ "license" : "LicenseRef-scancode-other-copyleft",
+ "location" : {
+ "path" : "assets/mocha-logo.svg",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 80.0
+ }, {
+ "license" : "LicenseRef-scancode-other-copyleft",
+ "location" : {
+ "path" : "docs/images/mocha-logo.svg",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 80.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "assets/mocha-banner.svg",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "assets/mocha-banner.svg",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "assets/mocha-banner.svg",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "assets/mocha-logo.svg",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "assets/mocha-logo.svg",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "assets/mocha-logo.svg",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "docs/images/mocha-logo.svg",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "docs/images/mocha-logo.svg",
+ "start_line" : 30,
+ "end_line" : 30
+ },
+ "score" : 60.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "docs/images/mocha-logo.svg",
+ "start_line" : 37,
+ "end_line" : 37
+ },
+ "score" : 60.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 802,
+ "end_line" : 802
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 1707,
+ "end_line" : 1707
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "PROJECT_CHARTER.md",
+ "start_line" : 75,
+ "end_line" : 75
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 101,
+ "end_line" : 103
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs/README.md",
+ "start_line" : 45,
+ "end_line" : 45
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs/css/normalize.css",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/mocha.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 509,
+ "end_line" : 509
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT OR GPL-2.0-only",
+ "location" : {
+ "path" : "docs/js/html5shiv.min.js",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011 TJ Holowaychuk ",
+ "location" : {
+ "path" : "lib/mocha.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright (c) 2011-2018 JS Foundation and contributors, https://js.foundation",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "copyright 2016-2018 JS Foundation (https://js.foundation) and contributors",
+ "location" : {
+ "path" : "docs/README.md",
+ "start_line" : 41,
+ "end_line" : 41
+ }
+ }, {
+ "statement" : "copyright year ( josephlin55555 (https://github.com/josephlin55555))",
+ "location" : {
+ "path" : "CHANGELOG.md",
+ "start_line" : 523,
+ "end_line" : 523
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mrkmg/node-external-editor.git",
+ "revision" : "3069d69f023f7e46ab06a01791d256655ccf634e",
+ "path" : ""
+ },
+ "resolved_revision" : "3069d69f023f7e46ab06a01791d256655ccf634e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:43:06.000513640Z",
+ "end_time" : "2023-07-20T07:43:09.000203430Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 149,
+ "end_line" : 151
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 155,
+ "end_line" : 171
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 23,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2016 Kevin Gravier",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2016-2018 Kevin Gravier",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 153,
+ "end_line" : 153
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-plugin-es.git",
+ "revision" : "d86abb11c0c10fc1695cc5545ef5ab4f1b78581a",
+ "path" : ""
+ },
+ "resolved_revision" : "d86abb11c0c10fc1695cc5545ef5ab4f1b78581a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:00:21.000073338Z",
+ "end_time" : "2023-07-19T13:00:40.000761010Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "docs/.vuepress/config.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-accessor-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-array-from.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-array-isarray.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-array-of.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-arrow-functions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-async-functions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-async-iteration.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-atomics.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-bigint.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-binary-numeric-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-block-scoped-functions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-block-scoped-variables.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-classes.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-computed-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-date-now.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-default-parameters.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-destructuring.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-dynamic-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-exponential-operators.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-for-of-loops.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-generators.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-global-this.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-json-superset.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-json.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-keyword-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-malformed-template-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-map.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-acosh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-asinh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-atanh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-cbrt.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-clz32.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-cosh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-expm1.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-fround.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-hypot.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-imul.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-log10.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-log1p.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-log2.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-sign.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-sinh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-tanh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-math-trunc.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-modules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-new-target.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-epsilon.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-isfinite.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-isinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-isnan.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-issafeinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-maxsafeinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-minsafeinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-parsefloat.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-number-parseint.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-assign.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-defineproperties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-defineproperty.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-entries.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-freeze.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-getownpropertydescriptor.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-getownpropertydescriptors.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-getownpropertynames.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-getownpropertysymbols.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-getprototypeof.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-is.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-isextensible.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-isfrozen.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-issealed.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-keys.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-preventextensions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-seal.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-setprototypeof.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-super-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-object-values.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-octal-numeric-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-optional-catch-binding.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-promise-all-settled.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-promise.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-property-shorthands.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-proxy.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-reflect.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-regexp-lookbehind-assertions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-regexp-named-capture-groups.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-regexp-s-flag.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-regexp-u-flag.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-regexp-unicode-property-escapes-2019.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-regexp-unicode-property-escapes.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-regexp-y-flag.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-rest-parameters.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-rest-spread-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-set.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-shared-array-buffer.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-spread-elements.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-string-fromcodepoint.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-string-raw.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-subclassing-builtins.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-symbol.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-template-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-trailing-commas.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-trailing-function-commas.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-typed-arrays.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unicode-codepoint-escapes.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-weak-map.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-weak-set.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/utils.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/new-rule.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/new-rule.js",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/new-rule.js",
+ "start_line" : 62,
+ "end_line" : 62
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/rules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/update-docs-readme.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/update-docs-rules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/update-index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-accessor-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-array-from.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-array-isarray.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-array-of.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-arrow-functions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-async-functions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-async-iteration.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-atomics.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-bigint.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-binary-numeric-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-block-scoped-functions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-block-scoped-variables.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-classes.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-computed-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-date-now.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-default-parameters.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-destructuring.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-dynamic-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-exponential-operators.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-for-of-loops.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-generators.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-global-this.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-json-superset.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-json.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-keyword-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-malformed-template-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-map.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-acosh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-asinh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-atanh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-cbrt.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-clz32.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-cosh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-expm1.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-fround.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-hypot.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-imul.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-log10.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-log1p.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-log2.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-sign.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-sinh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-tanh.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-math-trunc.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-modules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-new-target.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-epsilon.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-isfinite.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-isinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-isnan.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-issafeinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-maxsafeinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-minsafeinteger.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-parsefloat.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-number-parseint.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-assign.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-defineproperties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-defineproperty.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-entries.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-freeze.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-getownpropertydescriptor.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-getownpropertydescriptors.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-getownpropertynames.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-getownpropertysymbols.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-getprototypeof.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-is.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-isextensible.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-isfrozen.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-issealed.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-keys.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-preventextensions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-seal.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-setprototypeof.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-super-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-object-values.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-octal-numeric-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-optional-catch-binding.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-promise-all-settled.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-promise.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-property-shorthands.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-proxy.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-reflect.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-regexp-lookbehind-assertions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-regexp-named-capture-groups.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-regexp-s-flag.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-regexp-u-flag.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-regexp-unicode-property-escapes-2019.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-regexp-unicode-property-escapes.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-regexp-y-flag.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-rest-parameters.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-rest-spread-properties.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-set.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-shared-array-buffer.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-spread-elements.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-string-fromcodepoint.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-string-raw.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-subclassing-builtins.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-symbol.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-template-literals.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-trailing-commas.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-trailing-function-commas.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-typed-arrays.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unicode-codepoint-escapes.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-weak-map.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-weak-set.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/tester.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 68,
+ "end_line" : 68
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Toru Nagashima",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-plugin-node.git",
+ "revision" : "b8f99452c0e1a808af7aa349d417dca0837e3a67",
+ "path" : ""
+ },
+ "resolved_revision" : "b8f99452c0e1a808af7aa349d417dca0837e3a67"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:18:13.000553496Z",
+ "end_time" : "2023-07-20T07:18:28.000702907Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : ".eslintrc.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/exports-style.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/file-extension-in-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-callback-literal.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-deprecated-api.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-exports-assign.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-extraneous-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-extraneous-require.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-hide-core-modules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-missing-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-missing-require.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unpublished-bin.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unpublished-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unpublished-require.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unsupported-features.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unsupported-features/es-builtins.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unsupported-features/es-syntax.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/no-unsupported-features/node-builtins.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-global/buffer.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-global/console.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-global/process.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-global/text-decoder.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-global/text-encoder.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-global/url-search-params.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-global/url.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-promises/dns.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/prefer-promises/fs.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/process-exit-as-throw.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/rules/shebang.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/cache.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/check-existence.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/check-extraneous.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/check-prefer-global.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/check-publish.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/check-unsupported-builtins.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/enumerate-property-names.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/exists.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-allow-modules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-configured-node-version.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-convert-path.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-npmignore.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-package-json.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-resolve-paths.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-semver-range.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/get-try-extensions.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/import-target.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/merge-visitors-in-place.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/strip-import-path-params.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/visit-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "lib/util/visit-require.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/new-rule.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/new-rule.js",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/new-rule.js",
+ "start_line" : 61,
+ "end_line" : 61
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/rules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/update-docs-header-and-footer.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/update-lib-index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/update-readme.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "scripts/update.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/exports-style.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/file-extension-in-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-callback-literal.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-deprecated-api.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-exports-assign.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-extraneous-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-extraneous-require.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-hide-core-modules.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-missing-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-missing-require.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unpublished-bin.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unpublished-import.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unpublished-require.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unsupported-features.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unsupported-features/es-builtins.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unsupported-features/es-syntax.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/no-unsupported-features/node-builtins.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-global/buffer.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-global/console.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-global/process.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-global/text-decoder.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-global/text-encoder.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-global/url-search-params.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-global/url.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-promises/dns.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/prefer-promises/fs.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/process-exit-as-throw.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "tests/lib/rules/shebang.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 70,
+ "end_line" : 70
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Toru Nagashima",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "copyright 2016 Toru Nagashima",
+ "location" : {
+ "path" : "tests/lib/rules/no-hide-core-modules.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23709f84c8e21f1a38f61ad689c82a8763e0737f",
+ "path" : ""
+ },
+ "resolved_revision" : "23709f84c8e21f1a38f61ad689c82a8763e0737f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:49:05.000272236Z",
+ "end_time" : "2023-07-18T06:49:12.000049859Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "rollup.config.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "src/pattern-matcher.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 59,
+ "end_line" : 59
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Toru Nagashima",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/eslint-utils.git",
+ "revision" : "23f4ddc58eda5e6aec3d6a43c6266acbe19345cd",
+ "path" : ""
+ },
+ "resolved_revision" : "23f4ddc58eda5e6aec3d6a43c6266acbe19345cd"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:56:29.000326817Z",
+ "end_time" : "2023-07-19T12:56:34.000008908Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "rollup.config.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "src/pattern-matcher.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 58,
+ "end_line" : 58
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Toru Nagashima",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/regexpp.git",
+ "revision" : "b8bc4e82885a9cff44b908d247685cde129cd863",
+ "path" : ""
+ },
+ "resolved_revision" : "b8bc4e82885a9cff44b908d247685cde129cd863"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:26:31.000576705Z",
+ "end_time" : "2023-07-18T07:27:10.000652025Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 85,
+ "end_line" : 85
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Toru Nagashima",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/mysticatea/regexpp.git",
+ "revision" : "d68b435cbf6d37e3fa6af186965a7b6c738bf685",
+ "path" : ""
+ },
+ "resolved_revision" : "d68b435cbf6d37e3fa6af186965a7b6c738bf685"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:45:12.000179590Z",
+ "end_time" : "2023-07-19T12:45:42.000078036Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 74,
+ "end_line" : 74
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2018 Toru Nagashima",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nexdrew/which-module.git",
+ "revision" : "7f78f42d0761133263c3947a3b24dde324a467ce",
+ "path" : ""
+ },
+ "resolved_revision" : "7f78f42d0761133263c3947a3b24dde324a467ce"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:41:14.000924867Z",
+ "end_time" : "2023-07-20T07:41:17.000094974Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 53,
+ "end_line" : 55
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2016, Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/argparse.git",
+ "revision" : "ea45e14bad13b9e4a10af28f11fb7e731079ab72",
+ "path" : ""
+ },
+ "resolved_revision" : "ea45e14bad13b9e4a10af28f11fb7e731079ab72"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:41:18.000049724Z",
+ "end_time" : "2023-07-20T06:41:27.000380950Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 254,
+ "end_line" : 255
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 254,
+ "end_line" : 254
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012 Vitaly Puzrin (https://github.com/puzrin)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 253,
+ "end_line" : 253
+ }
+ }, {
+ "statement" : "Copyright (c) 2012 by Vitaly Puzrin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/js-yaml.git",
+ "revision" : "37caaad57dc37d350d9a4577a5da53f482bb2983",
+ "path" : ""
+ },
+ "resolved_revision" : "37caaad57dc37d350d9a4577a5da53f482bb2983"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:55:49.000312807Z",
+ "end_time" : "2023-07-20T07:56:13.000203809Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "support/demo_template/base64.js",
+ "start_line" : 8,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011 Aleksey V Zapparov",
+ "location" : {
+ "path" : "support/demo_template/base64.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Vitaly Puzrin",
+ "location" : {
+ "path" : "support/demo_template/base64.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2011-2015 by Vitaly Puzrin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/nodeca/js-yaml.git",
+ "revision" : "665aadda42349dcae869f12040d9b10ef18d12da",
+ "path" : ""
+ },
+ "resolved_revision" : "665aadda42349dcae869f12040d9b10ef18d12da"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:26:28.000181964Z",
+ "end_time" : "2023-07-20T07:26:44.000742288Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "bower.json",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "support/demo_template/base64.js",
+ "start_line" : 8,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011 Aleksey V Zapparov",
+ "location" : {
+ "path" : "support/demo_template/base64.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2011 Vitaly Puzrin",
+ "location" : {
+ "path" : "support/demo_template/base64.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2011-2015 by Vitaly Puzrin",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/novemberborn/package-hash.git",
+ "revision" : "6afce110db308d4ed70dbdb5658fc4ec50522c86",
+ "path" : ""
+ },
+ "resolved_revision" : "6afce110db308d4ed70dbdb5658fc4ec50522c86"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:57:15.000198571Z",
+ "end_time" : "2023-07-19T12:57:18.000548356Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2006, 2008 Junio C Hamano",
+ "location" : {
+ "path" : "test/fixtures/packed/dirty-repo.tar",
+ "start_line" : 297,
+ "end_line" : 297
+ }
+ }, {
+ "statement" : "Copyright (c) 2006, 2008 Junio C Hamano",
+ "location" : {
+ "path" : "test/fixtures/packed/fake-repo-parent.tar",
+ "start_line" : 308,
+ "end_line" : 308
+ }
+ }, {
+ "statement" : "Copyright (c) 2006, 2008 Junio C Hamano",
+ "location" : {
+ "path" : "test/fixtures/packed/head-is-a-commit.tar",
+ "start_line" : 284,
+ "end_line" : 284
+ }
+ }, {
+ "statement" : "Copyright (c) 2006, 2008 Junio C Hamano",
+ "location" : {
+ "path" : "test/fixtures/packed/head-is-a-ref.tar",
+ "start_line" : 285,
+ "end_line" : 285
+ }
+ }, {
+ "statement" : "Copyright (c) 2006, 2008 Junio C Hamano",
+ "location" : {
+ "path" : "test/fixtures/packed/repo-with-packed-refs.tar",
+ "start_line" : 288,
+ "end_line" : 288
+ }
+ }, {
+ "statement" : "Copyright (c) 2006, 2008 Junio C Hamano",
+ "location" : {
+ "path" : "test/fixtures/packed/repo-without-refs.tar",
+ "start_line" : 279,
+ "end_line" : 279
+ }
+ }, {
+ "statement" : "Copyright (c) 2016-2017, Mark Wubben (novemberborn.net)",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/novemberborn/release-zalgo.git",
+ "revision" : "696e6ac92340120fe4b26fce4152f0197b45183b",
+ "path" : ""
+ },
+ "resolved_revision" : "696e6ac92340120fe4b26fce4152f0197b45183b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:26:14.000190618Z",
+ "end_time" : "2023-07-20T07:26:16.000555711Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 14
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 27,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2017, Mark Wubben (novemberborn.net)",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/hosted-git-info.git",
+ "revision" : "8d4b3697d79bcd89cdb36d1db165e3696c783a01",
+ "path" : ""
+ },
+ "resolved_revision" : "8d4b3697d79bcd89cdb36d1db165e3696c783a01"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:08:18.000502331Z",
+ "end_time" : "2023-07-19T13:08:21.000943891Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 13
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 17,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015, Rebecca Turner",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/inflight.git",
+ "revision" : "a547881738c8f57b27795e584071d67cf6ac1a57",
+ "path" : ""
+ },
+ "resolved_revision" : "a547881738c8f57b27795e584071d67cf6ac1a57"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:26:09.000010071Z",
+ "end_time" : "2023-07-20T07:26:11.000241812Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/node-semver.git",
+ "revision" : "0eeceecfba490d136eb3ccae3a8dc118a28565a0",
+ "path" : ""
+ },
+ "resolved_revision" : "0eeceecfba490d136eb3ccae3a8dc118a28565a0"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:44:08.000931809Z",
+ "end_time" : "2023-07-19T12:44:12.000894079Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Isaac Z.",
+ "location" : {
+ "path" : "bin/semver.js",
+ "start_line" : 131,
+ "end_line" : 131
+ }
+ }, {
+ "statement" : "Copyright Isaac Z. Schlueter",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 34,
+ "end_line" : 34
+ }
+ }, {
+ "statement" : "Copyright Isaac Z. Schlueter",
+ "location" : {
+ "path" : "tap-snapshots/test-cli.js-TAP.test.js",
+ "start_line" : 57,
+ "end_line" : 57
+ }
+ }, {
+ "statement" : "Copyright Isaac Z. Schlueter",
+ "location" : {
+ "path" : "tap-snapshots/test-cli.js-TAP.test.js",
+ "start_line" : 66,
+ "end_line" : 66
+ }
+ }, {
+ "statement" : "Copyright Isaac Z. Schlueter",
+ "location" : {
+ "path" : "tap-snapshots/test-cli.js-TAP.test.js",
+ "start_line" : 75,
+ "end_line" : 75
+ }
+ }, {
+ "statement" : "Copyright Isaac Z. Schlueter",
+ "location" : {
+ "path" : "tap-snapshots/test-cli.js-TAP.test.js",
+ "start_line" : 84,
+ "end_line" : 84
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/node-semver.git",
+ "revision" : "c83c18cf84f9ccaea3431c929bb285fd168c01e4",
+ "path" : ""
+ },
+ "resolved_revision" : "c83c18cf84f9ccaea3431c929bb285fd168c01e4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:52:28.000381007Z",
+ "end_time" : "2023-07-19T12:52:32.000030824Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Isaac Z.",
+ "location" : {
+ "path" : "bin/semver",
+ "start_line" : 123,
+ "end_line" : 123
+ }
+ }, {
+ "statement" : "Copyright Isaac Z. Schlueter",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 34,
+ "end_line" : 34
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/normalize-package-data.git",
+ "revision" : "dedb606de22fa4bdf21c3679dece5fd07b4a0b1a",
+ "path" : ""
+ },
+ "resolved_revision" : "dedb606de22fa4bdf21c3679dece5fd07b4a0b1a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:28:04.000469085Z",
+ "end_time" : "2023-07-20T07:28:08.000415761Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "test/normalize.js",
+ "start_line" : 151,
+ "end_line" : 151
+ },
+ "score" : 90.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 9,
+ "end_line" : 30
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 105,
+ "end_line" : 105
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 99.0
+ }, {
+ "license" : "JSON",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 97,
+ "end_line" : 97
+ },
+ "score" : 100.0
+ }, {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 2,
+ "end_line" : 2
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 105,
+ "end_line" : 105
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/async.json",
+ "start_line" : 14,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/bcrypt.json",
+ "start_line" : 23,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/coffee-script.json",
+ "start_line" : 7,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/http-server.json",
+ "start_line" : 49,
+ "end_line" : 49
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/node-module_exist.json",
+ "start_line" : 25,
+ "end_line" : 25
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/npm.json",
+ "start_line" : 129,
+ "end_line" : 131
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/read-package-json.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "test/fixtures/underscore.json",
+ "start_line" : 16,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Meryn Stol",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 106,
+ "end_line" : 106
+ }
+ }, {
+ "statement" : "Copyright (c) Meryn Stol 'Author",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/wrappy.git",
+ "revision" : "71d91b6dc5bdeac37e218c2cf03f9ab55b60d214",
+ "path" : ""
+ },
+ "resolved_revision" : "71d91b6dc5bdeac37e218c2cf03f9ab55b60d214"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:05:11.000562259Z",
+ "end_time" : "2023-07-19T12:05:13.000830616Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 24,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/npm/write-file-atomic.git",
+ "revision" : "eb8dff15f83f16be1e0b89be54fa80200356614a",
+ "path" : ""
+ },
+ "resolved_revision" : "eb8dff15f83f16be1e0b89be54fa80200356614a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:18.000386061Z",
+ "end_time" : "2023-07-20T07:29:21.000246006Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 24,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015, Rebecca Turner",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/paulmillr/chokidar.git",
+ "revision" : "ccf759aac9af8a484924aeacd1e1a5280f508a75",
+ "path" : ""
+ },
+ "resolved_revision" : "ccf759aac9af8a484924aeacd1e1a5280f508a75"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:09:36.000206480Z",
+ "end_time" : "2023-07-19T12:09:40.000783283Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 299,
+ "end_line" : 299
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 297,
+ "end_line" : 299
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 51,
+ "end_line" : 51
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Paul Miller ",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 299,
+ "end_line" : 299
+ }
+ }, {
+ "statement" : "Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/paulmillr/readdirp.git",
+ "revision" : "cdfb3df2192e0721be258b28c19b9be1d43fcdd0",
+ "path" : ""
+ },
+ "resolved_revision" : "cdfb3df2192e0721be258b28c19b9be1d43fcdd0"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:04:05.000884109Z",
+ "end_time" : "2023-07-19T13:04:08.000517792Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-unknown-license-reference",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 122,
+ "end_line" : 122
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 122,
+ "end_line" : 122
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 49,
+ "end_line" : 49
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 120,
+ "end_line" : 120
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/qix-/node-error-ex.git",
+ "revision" : "3953ebb9e4a33287e67676a70a8ad72bbbe38075",
+ "path" : ""
+ },
+ "resolved_revision" : "3953ebb9e4a33287e67676a70a8ad72bbbe38075"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:41:32.000948423Z",
+ "end_time" : "2023-07-20T07:41:35.000543703Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 142,
+ "end_line" : 143
+ },
+ "score" : 91.67
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 19,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 JD Ballard",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/qix-/node-is-arrayish.git",
+ "revision" : "53f22aa6ce557d7d31a3d1152a590a2df220df9d",
+ "path" : ""
+ },
+ "resolved_revision" : "53f22aa6ce557d7d31a3d1152a590a2df220df9d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:56:47.000178836Z",
+ "end_time" : "2023-07-19T12:56:49.000335690Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 14,
+ "end_line" : 15
+ },
+ "score" : 91.67
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 17,
+ "end_line" : 17
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 JD Ballard",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/raszi/node-tmp.git",
+ "revision" : "0900dd5b112ac7a482e4bdf3cb002bfe1b3acf77",
+ "path" : ""
+ },
+ "resolved_revision" : "0900dd5b112ac7a482e4bdf3cb002bfe1b3acf77"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:59:50.000359911Z",
+ "end_time" : "2023-07-19T13:00:02.000914558Z",
+ "licenses" : [ {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "docs/scripts/prettify/Apache-License-2.0.txt",
+ "start_line" : 2,
+ "end_line" : 202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs/tmp.js.html",
+ "start_line" : 34,
+ "end_line" : 34
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/tmp.js",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2011-2015 KARASZI Istvan github@spam.raszi.hu",
+ "location" : {
+ "path" : "docs/tmp.js.html",
+ "start_line" : 32,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "Copyright (c) 2011-2017 KARASZI Istvan ",
+ "location" : {
+ "path" : "lib/tmp.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 KARASZI Istvan",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/reactivex/rxjs.git",
+ "revision" : "beeeb7bdc3b09524bdd6c59ff40ed80ac932076a",
+ "path" : ""
+ },
+ "resolved_revision" : "beeeb7bdc3b09524bdd6c59ff40ed80ac932076a"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:05:24.000663637Z",
+ "end_time" : "2023-07-19T13:07:06.000987766Z",
+ "licenses" : [ {
+ "license" : "AGPL-3.0-or-later",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 147,
+ "end_line" : 147
+ },
+ "score" : 90.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : ".make-compat-package.js",
+ "start_line" : 33,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : ".make-packages.js",
+ "start_line" : 43,
+ "end_line" : 43
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 1,
+ "end_line" : 187
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 191,
+ "end_line" : 201
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 19,
+ "end_line" : 19
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "compat/package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "docs_app/src/assets/js/prettify.js",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6281,
+ "end_line" : 6281
+ },
+ "score" : 100.0
+ }, {
+ "license" : "Apache-2.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 173,
+ "end_line" : 173
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6648,
+ "end_line" : 6648
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6503,
+ "end_line" : 6503
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "docs_app/src/styles/2-modules/_presskit.scss",
+ "start_line" : 12,
+ "end_line" : 12
+ },
+ "score" : 50.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6162,
+ "end_line" : 6162
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6179,
+ "end_line" : 6179
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6186,
+ "end_line" : 6186
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6215,
+ "end_line" : 6215
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6239,
+ "end_line" : 6239
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6294,
+ "end_line" : 6294
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6304,
+ "end_line" : 6304
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6311,
+ "end_line" : 6311
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6328,
+ "end_line" : 6328
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6346,
+ "end_line" : 6346
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6366,
+ "end_line" : 6366
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6376,
+ "end_line" : 6376
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6387,
+ "end_line" : 6387
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6394,
+ "end_line" : 6394
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6424,
+ "end_line" : 6424
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6444,
+ "end_line" : 6444
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6525,
+ "end_line" : 6525
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6539,
+ "end_line" : 6539
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6546,
+ "end_line" : 6546
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6557,
+ "end_line" : 6557
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6590,
+ "end_line" : 6590
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6620,
+ "end_line" : 6620
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6687,
+ "end_line" : 6687
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6714,
+ "end_line" : 6714
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6721,
+ "end_line" : 6721
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6731,
+ "end_line" : 6731
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6738,
+ "end_line" : 6738
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6793,
+ "end_line" : 6793
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6819,
+ "end_line" : 6819
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6829,
+ "end_line" : 6829
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6836,
+ "end_line" : 6836
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/content/license.md",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/content/license.md",
+ "start_line" : 7,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/package.json",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/src/app/search/search.service.ts",
+ "start_line" : 3,
+ "end_line" : 4
+ },
+ "score" : 96.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/src/app/shared/copier.service.ts",
+ "start_line" : 7,
+ "end_line" : 7
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/src/app/shared/web-worker.ts",
+ "start_line" : 3,
+ "end_line" : 4
+ },
+ "score" : 96.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-api-package/index.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-api-package/mocks/importedSrc.ts",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-api-package/mocks/testSrc.ts",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-base-package/index.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-content-package/index.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular.io-package/index.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/api-package.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/guide-package.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/index.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/marketing-package.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/tutorial-package.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/helpers/test-package.js",
+ "start_line" : 5,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "docs_app/tools/transforms/remark-package/services/renderMarkdown.js",
+ "start_line" : 116,
+ "end_line" : 116
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6169,
+ "end_line" : 6169
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6197,
+ "end_line" : 6197
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6204,
+ "end_line" : 6204
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6222,
+ "end_line" : 6222
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6232,
+ "end_line" : 6232
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6246,
+ "end_line" : 6246
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6253,
+ "end_line" : 6253
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6263,
+ "end_line" : 6263
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6274,
+ "end_line" : 6274
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6353,
+ "end_line" : 6353
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6404,
+ "end_line" : 6404
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6417,
+ "end_line" : 6417
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6437,
+ "end_line" : 6437
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6455,
+ "end_line" : 6455
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6465,
+ "end_line" : 6465
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6478,
+ "end_line" : 6478
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6485,
+ "end_line" : 6485
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6570,
+ "end_line" : 6570
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6580,
+ "end_line" : 6580
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6600,
+ "end_line" : 6600
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6610,
+ "end_line" : 6610
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6631,
+ "end_line" : 6631
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6641,
+ "end_line" : 6641
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6664,
+ "end_line" : 6664
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6671,
+ "end_line" : 6671
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6700,
+ "end_line" : 6700
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6707,
+ "end_line" : 6707
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6745,
+ "end_line" : 6745
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6755,
+ "end_line" : 6755
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6770,
+ "end_line" : 6770
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6783,
+ "end_line" : 6783
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6812,
+ "end_line" : 6812
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "spec/helpers/testScheduler-ui.ts",
+ "start_line" : 18,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "src/internal/util/root.ts",
+ "start_line" : 7,
+ "end_line" : 8
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT OR Apache-2.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6648,
+ "end_line" : 6648
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) 2007 Steven Levithan",
+ "location" : {
+ "path" : "docs_app/tools/transforms/remark-package/services/renderMarkdown.js",
+ "start_line" : 115,
+ "end_line" : 115
+ }
+ }, {
+ "statement" : "(c) Zeno Rocha",
+ "location" : {
+ "path" : "docs_app/src/app/shared/copier.service.ts",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "Copyright (c) 2006 Google Inc.",
+ "location" : {
+ "path" : "docs_app/src/assets/js/prettify.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) 2014-2018 Google, Inc.",
+ "location" : {
+ "path" : "docs_app/content/license.md",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 189,
+ "end_line" : 189
+ }
+ }, {
+ "statement" : "Copyright 2016 Google Inc.",
+ "location" : {
+ "path" : "docs_app/src/app/search/search.service.ts",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright 2016 Google Inc.",
+ "location" : {
+ "path" : "docs_app/src/app/shared/web-worker.ts",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-api-package/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-api-package/mocks/importedSrc.ts",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-api-package/mocks/testSrc.ts",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-base-package/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular-content-package/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/angular.io-package/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/api-package.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/guide-package.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/index.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/marketing-package.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/authors-package/tutorial-package.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "docs_app/tools/transforms/helpers/test-package.js",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright Google Inc.",
+ "location" : {
+ "path" : "src/internal/util/root.ts",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/royriojas/file-entry-cache.git",
+ "revision" : "03f700c99b76133dc14648b465a1550ec2930e5c",
+ "path" : ""
+ },
+ "resolved_revision" : "03f700c99b76133dc14648b465a1550ec2930e5c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:51:25.000918908Z",
+ "end_time" : "2023-07-18T06:51:29.000443862Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 108,
+ "end_line" : 110
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Roy Riojas",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/royriojas/flat-cache.git",
+ "revision" : "9e95cdca746ccc5c066d277f1edde9c9b9f95348",
+ "path" : ""
+ },
+ "resolved_revision" : "9e95cdca746ccc5c066d277f1edde9c9b9f95348"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:23:26.000517546Z",
+ "end_time" : "2023-07-18T06:23:29.000454427Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 67,
+ "end_line" : 69
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 6,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Roy Riojas",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/samn/json-stable-stringify.git",
+ "revision" : "c0b3c36d976c54e31a814c492cd1c2557a4d3758",
+ "path" : ""
+ },
+ "resolved_revision" : "c0b3c36d976c54e31a814c492cd1c2557a4d3758"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:58:19.000153802Z",
+ "end_time" : "2023-07-20T07:58:21.000780929Z",
+ "licenses" : [ {
+ "license" : "LicenseRef-scancode-public-domain",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 70.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 18
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 42,
+ "end_line" : 42
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.markdown",
+ "start_line" : 130,
+ "end_line" : 132
+ },
+ "score" : 100.0
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/aggregate-error.git",
+ "revision" : "d5bb4ac02a43f005ec7ad45f6e62919d7ebed0e5",
+ "path" : ""
+ },
+ "resolved_revision" : "d5bb4ac02a43f005ec7ad45f6e62919d7ebed0e5"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:49:17.000865260Z",
+ "end_time" : "2023-07-18T06:49:20.000211099Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/ansi-escapes.git",
+ "revision" : "ca9d5f8eb6ecfcf6ef2d8764a056d865e68bf178",
+ "path" : ""
+ },
+ "resolved_revision" : "ca9d5f8eb6ecfcf6ef2d8764a056d865e68bf178"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:04:31.000515375Z",
+ "end_time" : "2023-07-19T13:04:33.000855527Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/binary-extensions.git",
+ "revision" : "40e44b510d87a63dcf42300bc8fbcb105f45a61c",
+ "path" : ""
+ },
+ "resolved_revision" : "40e44b510d87a63dcf42300bc8fbcb105f45a61c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:01.000310333Z",
+ "end_time" : "2023-07-20T07:27:04.000245272Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/callsites.git",
+ "revision" : "f89815af2e0255094283c86977f1e679a8fb411b",
+ "path" : ""
+ },
+ "resolved_revision" : "f89815af2e0255094283c86977f1e679a8fb411b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:00:11.000373320Z",
+ "end_time" : "2023-07-18T06:00:13.000462800Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 46,
+ "end_line" : 48
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 48,
+ "end_line" : 48
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/camelcase.git",
+ "revision" : "cbe5a519ec6745adbb5283d5ee8c5c9889050d74",
+ "path" : ""
+ },
+ "resolved_revision" : "cbe5a519ec6745adbb5283d5ee8c5c9889050d74"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:03:06.000216642Z",
+ "end_time" : "2023-07-19T13:03:08.000395922Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 97,
+ "end_line" : 99
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 99,
+ "end_line" : 99
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/clean-stack.git",
+ "revision" : "91440c5a1615354fb9419354650937c434eb9f49",
+ "path" : ""
+ },
+ "resolved_revision" : "91440c5a1615354fb9419354650937c434eb9f49"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:26:01.000231931Z",
+ "end_time" : "2023-07-19T12:26:05.000032799Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 74,
+ "end_line" : 76
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 76,
+ "end_line" : 76
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/cli-cursor.git",
+ "revision" : "49edacfb841a9dac691972c2aa5d40dba8e0b56b",
+ "path" : ""
+ },
+ "resolved_revision" : "49edacfb841a9dac691972c2aa5d40dba8e0b56b"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:18:33.000432502Z",
+ "end_time" : "2023-07-20T07:18:35.000587985Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/decamelize.git",
+ "revision" : "95980ab6fb44c40eaca7792bdf93aff7c210c805",
+ "path" : ""
+ },
+ "resolved_revision" : "95980ab6fb44c40eaca7792bdf93aff7c210c805"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:40:13.000632669Z",
+ "end_time" : "2023-07-20T06:40:15.000843287Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 46,
+ "end_line" : 48
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 48,
+ "end_line" : 48
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/escape-string-regexp.git",
+ "revision" : "db124a3e1aae9d692c4899e42a5c6c3e329eaa20",
+ "path" : ""
+ },
+ "resolved_revision" : "db124a3e1aae9d692c4899e42a5c6c3e329eaa20"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:58:41.000423722Z",
+ "end_time" : "2023-07-19T12:58:43.000463732Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 25,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (http://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 27,
+ "end_line" : 27
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/figures.git",
+ "revision" : "add96242a5467efdcca234433a21da6554df6410",
+ "path" : ""
+ },
+ "resolved_revision" : "add96242a5467efdcca234433a21da6554df6410"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:54:42.000020762Z",
+ "end_time" : "2023-07-20T07:54:45.000221057Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "6c32f0caed1684ef778053b6f79b13a772e22ba4",
+ "path" : ""
+ },
+ "resolved_revision" : "6c32f0caed1684ef778053b6f79b13a772e22ba4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:58.000131943Z",
+ "end_time" : "2023-07-20T07:30:00.000647056Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "10202fb1621f0c277d5d5eeaf01c1c32b008fbef",
+ "path" : ""
+ },
+ "resolved_revision" : "10202fb1621f0c277d5d5eeaf01c1c32b008fbef"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:04:52.000912864Z",
+ "end_time" : "2023-07-19T13:04:55.000226317Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 83,
+ "end_line" : 85
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 85,
+ "end_line" : 85
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/find-up.git",
+ "revision" : "2319b79a9e728fc13fc1a1a15e84bf5df100719e",
+ "path" : ""
+ },
+ "resolved_revision" : "2319b79a9e728fc13fc1a1a15e84bf5df100719e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:40:37.000221847Z",
+ "end_time" : "2023-07-19T12:40:39.000419104Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 85,
+ "end_line" : 87
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 87,
+ "end_line" : 87
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/globals.git",
+ "revision" : "92bbb85fc797e03465fbf6e69fb881be4f07e23d",
+ "path" : ""
+ },
+ "resolved_revision" : "92bbb85fc797e03465fbf6e69fb881be4f07e23d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:57:52.000116677Z",
+ "end_time" : "2023-07-20T07:57:55.000528266Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/globals.git",
+ "revision" : "6bf39e6d2aaf5b107a840fd18f29be45760f2749",
+ "path" : ""
+ },
+ "resolved_revision" : "6bf39e6d2aaf5b107a840fd18f29be45760f2749"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:10:10.000129126Z",
+ "end_time" : "2023-07-19T13:10:13.000512265Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 39,
+ "end_line" : 41
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 41,
+ "end_line" : 41
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/has-flag.git",
+ "revision" : "474aa39afca7333d356c022fc5be4d31732bbba3",
+ "path" : ""
+ },
+ "resolved_revision" : "474aa39afca7333d356c022fc5be4d31732bbba3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:05:02.000870716Z",
+ "end_time" : "2023-07-19T12:05:05.000120251Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 87,
+ "end_line" : 89
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 89,
+ "end_line" : 89
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/has-flag.git",
+ "revision" : "8b2ca7e693b2c742b29f2399194077b64b9ff781",
+ "path" : ""
+ },
+ "resolved_revision" : "8b2ca7e693b2c742b29f2399194077b64b9ff781"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:57:35.000863173Z",
+ "end_time" : "2023-07-20T07:57:38.000256561Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 68,
+ "end_line" : 70
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 70,
+ "end_line" : 70
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/hasha.git",
+ "revision" : "6e9d961913bd446167b23007e76bd00ef470736c",
+ "path" : ""
+ },
+ "resolved_revision" : "6e9d961913bd446167b23007e76bd00ef470736c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:27:57.000710278Z",
+ "end_time" : "2023-07-20T07:28:00.000014584Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/import-fresh.git",
+ "revision" : "f1dddc06da4f1cdfb44a3aaba1f2c353c00dea02",
+ "path" : ""
+ },
+ "resolved_revision" : "f1dddc06da4f1cdfb44a3aaba1f2c353c00dea02"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:26:54.000636337Z",
+ "end_time" : "2023-07-20T07:26:57.000186563Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/indent-string.git",
+ "revision" : "99280aa24669a3fab303bb231d6caafd7d5029d3",
+ "path" : ""
+ },
+ "resolved_revision" : "99280aa24669a3fab303bb231d6caafd7d5029d3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:52.000484520Z",
+ "end_time" : "2023-07-20T07:29:54.000703484Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 68,
+ "end_line" : 70
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 70,
+ "end_line" : 70
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-binary-path.git",
+ "revision" : "efe99d8b3d0ef825925e8b986d047e39bee173c3",
+ "path" : ""
+ },
+ "resolved_revision" : "efe99d8b3d0ef825925e8b986d047e39bee173c3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:56:17.000145051Z",
+ "end_time" : "2023-07-20T07:56:19.000770461Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 32,
+ "end_line" : 34
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 34,
+ "end_line" : 34
+ }
+ }, {
+ "statement" : "Copyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "80e5e314d86e5f76bd1b0573aa9d33e615a372db",
+ "path" : ""
+ },
+ "resolved_revision" : "80e5e314d86e5f76bd1b0573aa9d33e615a372db"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:44:04.000040298Z",
+ "end_time" : "2023-07-18T07:44:06.000291160Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 37,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 39,
+ "end_line" : 39
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-fullwidth-code-point.git",
+ "revision" : "e94a78056056c5546f2bf4c4cf812a2163a46dae",
+ "path" : ""
+ },
+ "resolved_revision" : "e94a78056056c5546f2bf4c4cf812a2163a46dae"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:03:35.000738822Z",
+ "end_time" : "2023-07-19T13:03:37.000876660Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 37,
+ "end_line" : 39
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 39,
+ "end_line" : 39
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/is-stream.git",
+ "revision" : "fb8caed475b4107cee3c22be3252a904020eb2d4",
+ "path" : ""
+ },
+ "resolved_revision" : "fb8caed475b4107cee3c22be3252a904020eb2d4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:51:17.000581496Z",
+ "end_time" : "2023-07-18T06:51:19.000929931Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/load-json-file.git",
+ "revision" : "49620f12bce627dc2459a08f5ef18cd2ff151eb2",
+ "path" : ""
+ },
+ "resolved_revision" : "49620f12bce627dc2459a08f5ef18cd2ff151eb2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:17:59.000136549Z",
+ "end_time" : "2023-07-20T07:18:01.000234900Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 43,
+ "end_line" : 45
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 45,
+ "end_line" : 45
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "a30b86df0934329c66ff6a2be395db03d65478b8",
+ "path" : ""
+ },
+ "resolved_revision" : "a30b86df0934329c66ff6a2be395db03d65478b8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:18:39.000762040Z",
+ "end_time" : "2023-07-18T07:18:42.000029687Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 97,
+ "end_line" : 99
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 99,
+ "end_line" : 99
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "630c0bbd609055c1895089c715649e21000a1ab7",
+ "path" : ""
+ },
+ "resolved_revision" : "630c0bbd609055c1895089c715649e21000a1ab7"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:34:24.000071841Z",
+ "end_time" : "2023-07-20T06:34:26.000236987Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 120,
+ "end_line" : 122
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 122,
+ "end_line" : 122
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/locate-path.git",
+ "revision" : "d6f19ffa31544161ee94118963deb3b683418151",
+ "path" : ""
+ },
+ "resolved_revision" : "d6f19ffa31544161ee94118963deb3b683418151"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:58:12.000694904Z",
+ "end_time" : "2023-07-20T07:58:15.000185094Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 97,
+ "end_line" : 99
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 99,
+ "end_line" : 99
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/log-symbols.git",
+ "revision" : "029dbb35f81c0e8471a4fa1fcf014af416d3230d",
+ "path" : ""
+ },
+ "resolved_revision" : "029dbb35f81c0e8471a4fa1fcf014af416d3230d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:23:34.000664296Z",
+ "end_time" : "2023-07-18T06:23:36.000672209Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 43,
+ "end_line" : 45
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 45,
+ "end_line" : 45
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/make-dir.git",
+ "revision" : "6d029fe1f75f1a02fcdd7a67f34eadf0941a424f",
+ "path" : ""
+ },
+ "resolved_revision" : "6d029fe1f75f1a02fcdd7a67f34eadf0941a424f"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:44:53.000837755Z",
+ "end_time" : "2023-07-19T12:44:56.000263348Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/mimic-fn.git",
+ "revision" : "d29f5387f4c19814a042d03a780ff4481ceac5a3",
+ "path" : ""
+ },
+ "resolved_revision" : "d29f5387f4c19814a042d03a780ff4481ceac5a3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:23:49.000910109Z",
+ "end_time" : "2023-07-18T06:23:52.000034786Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 67,
+ "end_line" : 69
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 69,
+ "end_line" : 69
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/onetime.git",
+ "revision" : "4fa3c9a40798476514fec36a1720dc85b897cc04",
+ "path" : ""
+ },
+ "resolved_revision" : "4fa3c9a40798476514fec36a1720dc85b897cc04"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:16:57.000661161Z",
+ "end_time" : "2023-07-20T07:17:00.000641475Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/os-tmpdir.git",
+ "revision" : "1abf9cf5611b4be7377060ea67054b45cbf6813c",
+ "path" : ""
+ },
+ "resolved_revision" : "1abf9cf5611b4be7377060ea67054b45cbf6813c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:08:56.000845287Z",
+ "end_time" : "2023-07-19T12:08:58.000919116Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 30,
+ "end_line" : 32
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 32,
+ "end_line" : 32
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-limit.git",
+ "revision" : "cf076d73844ebbfda8ae4e184fc436396998ecb2",
+ "path" : ""
+ },
+ "resolved_revision" : "cf076d73844ebbfda8ae4e184fc436396998ecb2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:19.000247155Z",
+ "end_time" : "2023-07-20T07:42:21.000761659Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 67,
+ "end_line" : 69
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 69,
+ "end_line" : 69
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-limit.git",
+ "revision" : "a11f02bc5c04490b7c3de2663d866c211fb915ea",
+ "path" : ""
+ },
+ "resolved_revision" : "a11f02bc5c04490b7c3de2663d866c211fb915ea"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:10:30.000554050Z",
+ "end_time" : "2023-07-19T13:10:32.000793173Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "a650b26e49713a8cca58f669a7f8aef9b655554c",
+ "path" : ""
+ },
+ "resolved_revision" : "a650b26e49713a8cca58f669a7f8aef9b655554c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:43:46.000672681Z",
+ "end_time" : "2023-07-18T07:43:49.000303174Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 88,
+ "end_line" : 90
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 90,
+ "end_line" : 90
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "6300abb6451f04bbaa760f42844ec1c501d79120",
+ "path" : ""
+ },
+ "resolved_revision" : "6300abb6451f04bbaa760f42844ec1c501d79120"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:41:45.000820912Z",
+ "end_time" : "2023-07-20T07:41:48.000102934Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 84,
+ "end_line" : 86
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 86,
+ "end_line" : 86
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-locate.git",
+ "revision" : "d37f108c0b04779e307b4e7203981caa367bac57",
+ "path" : ""
+ },
+ "resolved_revision" : "d37f108c0b04779e307b4e7203981caa367bac57"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:46:09.000711226Z",
+ "end_time" : "2023-07-19T12:46:11.000914482Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 86,
+ "end_line" : 88
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 88,
+ "end_line" : 88
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-map.git",
+ "revision" : "a8c06732e440214da89c410fa8d0cd74e110868e",
+ "path" : ""
+ },
+ "resolved_revision" : "a8c06732e440214da89c410fa8d0cd74e110868e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:18:05.000689931Z",
+ "end_time" : "2023-07-20T07:18:08.000606528Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-try.git",
+ "revision" : "e80e2e130b2d16807345be02aa03541e6e085952",
+ "path" : ""
+ },
+ "resolved_revision" : "e80e2e130b2d16807345be02aa03541e6e085952"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:36:06.000541942Z",
+ "end_time" : "2023-07-18T06:36:08.000988199Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 56,
+ "end_line" : 58
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 58,
+ "end_line" : 58
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/p-try.git",
+ "revision" : "8a6f2c232b80e12c138714e553fc8dd6313604c2",
+ "path" : ""
+ },
+ "resolved_revision" : "8a6f2c232b80e12c138714e553fc8dd6313604c2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:04:11.000346955Z",
+ "end_time" : "2023-07-19T13:04:13.000449426Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 36,
+ "end_line" : 38
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 38,
+ "end_line" : 38
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/parent-module.git",
+ "revision" : "48267d001c4d215ba21a701a6882dba30fb8d614",
+ "path" : ""
+ },
+ "resolved_revision" : "48267d001c4d215ba21a701a6882dba30fb8d614"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:43:16.000346423Z",
+ "end_time" : "2023-07-19T12:43:18.000558499Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 65,
+ "end_line" : 67
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 67,
+ "end_line" : 67
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/parse-json.git",
+ "revision" : "419b0cbb83e67af53f9fd3f7ff98605ea2020eb6",
+ "path" : ""
+ },
+ "resolved_revision" : "419b0cbb83e67af53f9fd3f7ff98605ea2020eb6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:59.000537381Z",
+ "end_time" : "2023-07-20T07:43:02.000570463Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 81,
+ "end_line" : 83
+ },
+ "score" : 100.0
+ }, {
+ "license" : "WTFPL",
+ "location" : {
+ "path" : "vendor/parse.js",
+ "start_line" : 4,
+ "end_line" : 4
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (http://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 83,
+ "end_line" : 83
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-exists.git",
+ "revision" : "26b1adf80aa6761a7db35927a20cf59e0fd1a00d",
+ "path" : ""
+ },
+ "resolved_revision" : "26b1adf80aa6761a7db35927a20cf59e0fd1a00d"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:23:56.000560767Z",
+ "end_time" : "2023-07-18T06:23:58.000625639Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 50,
+ "end_line" : 52
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 52,
+ "end_line" : 52
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-exists.git",
+ "revision" : "4696c60a8b2b9ac61902aa9eab7cb326ab6005c8",
+ "path" : ""
+ },
+ "resolved_revision" : "4696c60a8b2b9ac61902aa9eab7cb326ab6005c8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:42:47.000006967Z",
+ "end_time" : "2023-07-19T12:42:49.000124895Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 48,
+ "end_line" : 50
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 50,
+ "end_line" : 50
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-is-absolute.git",
+ "revision" : "edc91d348b21dac2ab65ea2fbec2868e2eff5eb6",
+ "path" : ""
+ },
+ "resolved_revision" : "edc91d348b21dac2ab65ea2fbec2868e2eff5eb6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:58:25.000174279Z",
+ "end_time" : "2023-07-20T07:58:27.000292548Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 57,
+ "end_line" : 59
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 59,
+ "end_line" : 59
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-key.git",
+ "revision" : "d60207f9ab9dc9e60d49c87faacf415a4946287c",
+ "path" : ""
+ },
+ "resolved_revision" : "d60207f9ab9dc9e60d49c87faacf415a4946287c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:24:04.000336715Z",
+ "end_time" : "2023-07-18T06:24:06.000290305Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 49,
+ "end_line" : 51
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 51,
+ "end_line" : 51
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-key.git",
+ "revision" : "caea269db3a5eb0c09c793f4be5435312971d2fa",
+ "path" : ""
+ },
+ "resolved_revision" : "caea269db3a5eb0c09c793f4be5435312971d2fa"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:45:48.000720040Z",
+ "end_time" : "2023-07-19T12:45:50.000917034Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/path-type.git",
+ "revision" : "ef08bdbd35fa01342ef6d80f2e8eb8b9c2cccc30",
+ "path" : ""
+ },
+ "resolved_revision" : "ef08bdbd35fa01342ef6d80f2e8eb8b9c2cccc30"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:42:58.000823739Z",
+ "end_time" : "2023-07-18T07:43:01.000078892Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 40,
+ "end_line" : 42
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 42,
+ "end_line" : 42
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/pify.git",
+ "revision" : "2dd0d8b880e4ebcc5cc33ae126b02647418e4440",
+ "path" : ""
+ },
+ "resolved_revision" : "2dd0d8b880e4ebcc5cc33ae126b02647418e4440"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:45:03.000051979Z",
+ "end_time" : "2023-07-19T12:45:05.000264271Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 117,
+ "end_line" : 119
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (http://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 119,
+ "end_line" : 119
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/pkg-dir.git",
+ "revision" : "e25e5342c5ec425bb4a2c93787a880c29cbf0a49",
+ "path" : ""
+ },
+ "resolved_revision" : "e25e5342c5ec425bb4a2c93787a880c29cbf0a49"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:25:16.000471537Z",
+ "end_time" : "2023-07-19T12:25:18.000653734Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 64,
+ "end_line" : 66
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 66,
+ "end_line" : 66
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/read-pkg-up.git",
+ "revision" : "3b8a594ab581f000f705e43e8abdb1a23e8822f2",
+ "path" : ""
+ },
+ "resolved_revision" : "3b8a594ab581f000f705e43e8abdb1a23e8822f2"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:44:09.000613834Z",
+ "end_time" : "2023-07-18T07:44:12.000001176Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 78,
+ "end_line" : 80
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 80,
+ "end_line" : 80
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/read-pkg.git",
+ "revision" : "c1664a2f42d1f1898b7648534576e6dcfa1f48c8",
+ "path" : ""
+ },
+ "resolved_revision" : "c1664a2f42d1f1898b7648534576e6dcfa1f48c8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:10:55.000847763Z",
+ "end_time" : "2023-07-19T13:10:57.000965233Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 77,
+ "end_line" : 79
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 79,
+ "end_line" : 79
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "53f4a1b40f972dbfc4dda9627d24068000eae897",
+ "path" : ""
+ },
+ "resolved_revision" : "53f4a1b40f972dbfc4dda9627d24068000eae897"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:41:01.000755483Z",
+ "end_time" : "2023-07-18T07:41:03.000960201Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 70,
+ "end_line" : 72
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 72,
+ "end_line" : 72
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/resolve-from.git",
+ "revision" : "60cd04e69135b96b98b848fff719b1276a5610c0",
+ "path" : ""
+ },
+ "resolved_revision" : "60cd04e69135b96b98b848fff719b1276a5610c0"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:28:12.000247056Z",
+ "end_time" : "2023-07-20T07:28:14.000358865Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 70,
+ "end_line" : 72
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 72,
+ "end_line" : 72
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/restore-cursor.git",
+ "revision" : "32accb3425dbcde0b303583b9137857451b67045",
+ "path" : ""
+ },
+ "resolved_revision" : "32accb3425dbcde0b303583b9137857451b67045"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:02:22.000496638Z",
+ "end_time" : "2023-07-19T13:02:24.000625337Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 24,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 26,
+ "end_line" : 26
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/shebang-regex.git",
+ "revision" : "cb774c70d5f569479ca997abf8ee7e558e617284",
+ "path" : ""
+ },
+ "resolved_revision" : "cb774c70d5f569479ca997abf8ee7e558e617284"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:08:15.000993230Z",
+ "end_time" : "2023-07-19T12:08:18.000109160Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 27,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (http://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 29,
+ "end_line" : 29
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/shebang-regex.git",
+ "revision" : "27a9a6f0f85c04b9c37a43cf7503fdb58f5ae8d6",
+ "path" : ""
+ },
+ "resolved_revision" : "27a9a6f0f85c04b9c37a43cf7503fdb58f5ae8d6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:58:34.000474066Z",
+ "end_time" : "2023-07-19T12:58:36.000621954Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 31,
+ "end_line" : 33
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 33,
+ "end_line" : 33
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "3b3da68dfea82e193f9d6deee77224cf8e5c3803",
+ "path" : ""
+ },
+ "resolved_revision" : "3b3da68dfea82e193f9d6deee77224cf8e5c3803"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:49:26.000224655Z",
+ "end_time" : "2023-07-18T06:49:28.000565684Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 43,
+ "end_line" : 45
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 45,
+ "end_line" : 45
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "74d8d552b465692790c41169b123409669d41079",
+ "path" : ""
+ },
+ "resolved_revision" : "74d8d552b465692790c41169b123409669d41079"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:42:37.000720329Z",
+ "end_time" : "2023-07-18T07:42:39.000898458Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 40,
+ "end_line" : 42
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 42,
+ "end_line" : 42
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/string-width.git",
+ "revision" : "e7a2755c834246c59a4cc5de9471bef2d531a6b1",
+ "path" : ""
+ },
+ "resolved_revision" : "e7a2755c834246c59a4cc5de9471bef2d531a6b1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:07:41.000785503Z",
+ "end_time" : "2023-07-19T13:07:43.000997409Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "9aef0f38ffefca91d3852c82cd6366e5d36d6dd1",
+ "path" : ""
+ },
+ "resolved_revision" : "9aef0f38ffefca91d3852c82cd6366e5d36d6dd1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:50:19.000417044Z",
+ "end_time" : "2023-07-18T06:50:21.000633328Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 52,
+ "end_line" : 54
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 54,
+ "end_line" : 54
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-bom.git",
+ "revision" : "8258d09a069a5d5eb3d787c1d5d29737df1c8bba",
+ "path" : ""
+ },
+ "resolved_revision" : "8258d09a069a5d5eb3d787c1d5d29737df1c8bba"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:04:25.000066749Z",
+ "end_time" : "2023-07-19T13:04:27.000182383Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 34,
+ "end_line" : 36
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 36,
+ "end_line" : 36
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "1aef99eaa70d07981156e8aaa722e750c3b4eaf9",
+ "path" : ""
+ },
+ "resolved_revision" : "1aef99eaa70d07981156e8aaa722e750c3b4eaf9"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:58:47.000553090Z",
+ "end_time" : "2023-07-19T12:58:49.000669195Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 62,
+ "end_line" : 64
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Sindre Sorhus (http://sindresorhus.com)",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 64,
+ "end_line" : 64
+ }
+ }, {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/strip-json-comments.git",
+ "revision" : "6355b5792682c7c7a2480e5cbe73fc7ad578e432",
+ "path" : ""
+ },
+ "resolved_revision" : "6355b5792682c7c7a2480e5cbe73fc7ad578e432"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:41:49.000282554Z",
+ "end_time" : "2023-07-20T06:42:19.000578225Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https://sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/to-fast-properties.git",
+ "revision" : "5b2ddf09843cacf5e9c2f9403155ef5a742edd83",
+ "path" : ""
+ },
+ "resolved_revision" : "5b2ddf09843cacf5e9c2f9403155ef5a742edd83"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T13:03:19.000426905Z",
+ "end_time" : "2023-07-19T13:03:21.000518571Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 6,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 35,
+ "end_line" : 37
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "(c) Petka Antonov, John-David Dalton, Sindre Sorhus",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 37,
+ "end_line" : 37
+ }
+ }, {
+ "statement" : "Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/type-fest.git",
+ "revision" : "b40cb9c8e6dbea84bc99ec9e37bdd636c5cc6565",
+ "path" : ""
+ },
+ "resolved_revision" : "b40cb9c8e6dbea84bc99ec9e37bdd636c5cc6565"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T07:26:19.000702794Z",
+ "end_time" : "2023-07-18T07:26:25.000723778Z",
+ "licenses" : [ {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "license-cc0",
+ "start_line" : 1,
+ "end_line" : 121
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 95.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 748,
+ "end_line" : 748
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 746,
+ "end_line" : 748
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (https:/sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/sindresorhus/type-fest.git",
+ "revision" : "92c02842eaa4f56b8dec183d10c85bcb0d447bd8",
+ "path" : ""
+ },
+ "resolved_revision" : "92c02842eaa4f56b8dec183d10c85bcb0d447bd8"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:42:35.000259029Z",
+ "end_time" : "2023-07-20T06:42:38.000772896Z",
+ "licenses" : [ {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "license-cc0",
+ "start_line" : 1,
+ "end_line" : 121
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 95.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 622,
+ "end_line" : 622
+ },
+ "score" : 95.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "license",
+ "start_line" : 5,
+ "end_line" : 9
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 5,
+ "end_line" : 5
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "readme.md",
+ "start_line" : 620,
+ "end_line" : 622
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Sindre Sorhus (sindresorhus.com)",
+ "location" : {
+ "path" : "license",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/standard/eslint-config-standard.git",
+ "revision" : "d1dacfc552850080e6b397a0237c6a9396b88aa1",
+ "path" : ""
+ },
+ "resolved_revision" : "d1dacfc552850080e6b397a0237c6a9396b88aa1"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:29:25.000234572Z",
+ "end_time" : "2023-07-20T07:29:27.000575813Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 89,
+ "end_line" : 91
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 48,
+ "end_line" : 48
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Feross Aboukhadijeh",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "Copyright (c) Feross Aboukhadijeh (http://feross.org)",
+ "location" : {
+ "path" : "README.md",
+ "start_line" : 91,
+ "end_line" : 91
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/standard/eslint-plugin-standard.git",
+ "revision" : "116eb98b8cd26a04edcfa758e9513a9422f35b5e",
+ "path" : ""
+ },
+ "resolved_revision" : "116eb98b8cd26a04edcfa758e9513a9422f35b5e"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:40:45.000885348Z",
+ "end_time" : "2023-07-19T12:40:48.000605943Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 21
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 20,
+ "end_line" : 20
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015 Jamund Ferguson",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ }, {
+ "statement" : "copyright 2014 Brandyn Bennett",
+ "location" : {
+ "path" : "rules/array-bracket-even-spacing.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "copyright 2014 Brandyn Bennett",
+ "location" : {
+ "path" : "rules/object-curly-even-spacing.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "copyright 2014 Michael Ficarra",
+ "location" : {
+ "path" : "rules/array-bracket-even-spacing.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "copyright 2014 Michael Ficarra",
+ "location" : {
+ "path" : "rules/object-curly-even-spacing.js",
+ "start_line" : 7,
+ "end_line" : 7
+ }
+ }, {
+ "statement" : "copyright 2014 Vignesh Anand",
+ "location" : {
+ "path" : "rules/array-bracket-even-spacing.js",
+ "start_line" : 9,
+ "end_line" : 9
+ }
+ }, {
+ "statement" : "copyright 2014 Vignesh Anand",
+ "location" : {
+ "path" : "rules/object-curly-even-spacing.js",
+ "start_line" : 8,
+ "end_line" : 8
+ }
+ }, {
+ "statement" : "copyright 2014 Vignesh Anand",
+ "location" : {
+ "path" : "tests/array-bracket-even-spacing.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "copyright 2014 Vignesh Anand",
+ "location" : {
+ "path" : "tests/object-curly-even-spacing.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "copyright 2015 Jamund Ferguson",
+ "location" : {
+ "path" : "rules/array-bracket-even-spacing.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "copyright 2015 Jamund Ferguson",
+ "location" : {
+ "path" : "rules/computed-property-even-spacing.js",
+ "start_line" : 6,
+ "end_line" : 6
+ }
+ }, {
+ "statement" : "copyright 2015 Jamund Ferguson",
+ "location" : {
+ "path" : "rules/object-curly-even-spacing.js",
+ "start_line" : 9,
+ "end_line" : 9
+ }
+ }, {
+ "statement" : "copyright 2015 Jamund Ferguson",
+ "location" : {
+ "path" : "tests/computed-property-even-spacing.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ }, {
+ "statement" : "copyright 2015 Jamund Ferguson",
+ "location" : {
+ "path" : "tests/object-curly-even-spacing.js",
+ "start_line" : 5,
+ "end_line" : 5
+ }
+ }, {
+ "statement" : "copyright 2016 Jamund Ferguson",
+ "location" : {
+ "path" : "tests/no-callback-literal.js",
+ "start_line" : 4,
+ "end_line" : 4
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/stefanpenner/get-caller-file.git",
+ "revision" : "2383bf9e98ed3c568ff69d7586cf59c0f1dcb9d3",
+ "path" : ""
+ },
+ "resolved_revision" : "2383bf9e98ed3c568ff69d7586cf59c0f1dcb9d3"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-18T06:00:22.000937471Z",
+ "end_time" : "2023-07-18T06:00:24.000998186Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 4,
+ "end_line" : 6
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 24,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2018 Stefan Penner",
+ "location" : {
+ "path" : "LICENSE.md",
+ "start_line" : 2,
+ "end_line" : 2
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/minimist.git",
+ "revision" : "3754568bfd43a841d2d72d7fb54598635aea8fa4",
+ "path" : ""
+ },
+ "resolved_revision" : "3754568bfd43a841d2d72d7fb54598635aea8fa4"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:15:49.000595732Z",
+ "end_time" : "2023-07-20T07:15:51.000786694Z"
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-commondir.git",
+ "revision" : "57797b60db24c60029f7593995241749b1704902",
+ "path" : ""
+ },
+ "resolved_revision" : "57797b60db24c60029f7593995241749b1704902"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:42:40.000804458Z",
+ "end_time" : "2023-07-20T07:42:42.000603791Z"
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-concat-map.git",
+ "revision" : "0be8682c13068fde1caf1d75c201069d91260bcd",
+ "path" : ""
+ },
+ "resolved_revision" : "0be8682c13068fde1caf1d75c201069d91260bcd"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:34:12.000067804Z",
+ "end_time" : "2023-07-20T06:34:13.000864523Z"
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/node-mkdirp.git",
+ "revision" : "d4eff0f06093aed4f387e88e9fc301cb76beedc7",
+ "path" : ""
+ },
+ "resolved_revision" : "d4eff0f06093aed4f387e88e9fc301cb76beedc7"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:26:03.000147681Z",
+ "end_time" : "2023-07-20T07:26:04.000966524Z"
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/substack/text-table.git",
+ "revision" : "2f7f2baf205b0caf5b30f9ab665fdce267197fbd",
+ "path" : ""
+ },
+ "resolved_revision" : "2f7f2baf205b0caf5b30f9ab665fdce267197fbd"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:25:55.000245179Z",
+ "end_time" : "2023-07-20T07:25:57.000047026Z"
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tapjs/foreground-child.git",
+ "revision" : "efba8bb6d7607b5c3b0d3e3897c73727577c8b45",
+ "path" : ""
+ },
+ "resolved_revision" : "efba8bb6d7607b5c3b0d3e3897c73727577c8b45"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:54:49.000550369Z",
+ "end_time" : "2023-07-20T07:54:52.000376017Z",
+ "licenses" : [ {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 5,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 29,
+ "end_line" : 29
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) Isaac Z. Schlueter and Contributors",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tapjs/signal-exit.git",
+ "revision" : "03dd77a96caa309c6a02c59274d58c812a2dce45",
+ "path" : ""
+ },
+ "resolved_revision" : "03dd77a96caa309c6a02c59274d58c812a2dce45"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T07:56:23.000893268Z",
+ "end_time" : "2023-07-20T07:56:31.000815633Z",
+ "licenses" : [ {
+ "license" : "BSD-2-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5080,
+ "end_line" : 5080
+ },
+ "score" : 100.0
+ }, {
+ "license" : "BSD-3-Clause",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5795,
+ "end_line" : 5795
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC-BY-4.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4887,
+ "end_line" : 4887
+ },
+ "score" : 100.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4755,
+ "end_line" : 4755
+ },
+ "score" : 95.0
+ }, {
+ "license" : "CC0-1.0",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5983,
+ "end_line" : 5983
+ },
+ "score" : 95.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 1,
+ "end_line" : 1
+ },
+ "score" : 99.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 5,
+ "end_line" : 16
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 10,
+ "end_line" : 10
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5050,
+ "end_line" : 5050
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5093,
+ "end_line" : 5093
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5129,
+ "end_line" : 5129
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5144,
+ "end_line" : 5144
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5211,
+ "end_line" : 5211
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5221,
+ "end_line" : 5221
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5448,
+ "end_line" : 5448
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5466,
+ "end_line" : 5466
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5511,
+ "end_line" : 5511
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5598,
+ "end_line" : 5598
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5696,
+ "end_line" : 5696
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5727,
+ "end_line" : 5727
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5742,
+ "end_line" : 5742
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5880,
+ "end_line" : 5880
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5898,
+ "end_line" : 5898
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6085,
+ "end_line" : 6085
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6112,
+ "end_line" : 6112
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6118,
+ "end_line" : 6118
+ },
+ "score" : 100.0
+ }, {
+ "license" : "ISC",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 26,
+ "end_line" : 26
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4275,
+ "end_line" : 4275
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4287,
+ "end_line" : 4287
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4296,
+ "end_line" : 4296
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4326,
+ "end_line" : 4326
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4340,
+ "end_line" : 4340
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4352,
+ "end_line" : 4352
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4370,
+ "end_line" : 4370
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4384,
+ "end_line" : 4384
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4396,
+ "end_line" : 4396
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4408,
+ "end_line" : 4408
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4420,
+ "end_line" : 4420
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4432,
+ "end_line" : 4432
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4451,
+ "end_line" : 4451
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4463,
+ "end_line" : 4463
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4472,
+ "end_line" : 4472
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4487,
+ "end_line" : 4487
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4499,
+ "end_line" : 4499
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4511,
+ "end_line" : 4511
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4520,
+ "end_line" : 4520
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4529,
+ "end_line" : 4529
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4543,
+ "end_line" : 4543
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4557,
+ "end_line" : 4557
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4569,
+ "end_line" : 4569
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4588,
+ "end_line" : 4588
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4603,
+ "end_line" : 4603
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4615,
+ "end_line" : 4615
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4630,
+ "end_line" : 4630
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4645,
+ "end_line" : 4645
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4664,
+ "end_line" : 4664
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4678,
+ "end_line" : 4678
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4698,
+ "end_line" : 4698
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4711,
+ "end_line" : 4711
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4717,
+ "end_line" : 4717
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4728,
+ "end_line" : 4728
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4734,
+ "end_line" : 4734
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4740,
+ "end_line" : 4740
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4755,
+ "end_line" : 4755
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4767,
+ "end_line" : 4767
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4776,
+ "end_line" : 4776
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4788,
+ "end_line" : 4788
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4794,
+ "end_line" : 4794
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4803,
+ "end_line" : 4803
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4815,
+ "end_line" : 4815
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4821,
+ "end_line" : 4821
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4831,
+ "end_line" : 4831
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4854,
+ "end_line" : 4854
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4866,
+ "end_line" : 4866
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4878,
+ "end_line" : 4878
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4897,
+ "end_line" : 4897
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4910,
+ "end_line" : 4910
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4924,
+ "end_line" : 4924
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4930,
+ "end_line" : 4930
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4942,
+ "end_line" : 4942
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4954,
+ "end_line" : 4954
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4970,
+ "end_line" : 4970
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4982,
+ "end_line" : 4982
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4991,
+ "end_line" : 4991
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 4997,
+ "end_line" : 4997
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5003,
+ "end_line" : 5003
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5009,
+ "end_line" : 5009
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5018,
+ "end_line" : 5018
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5027,
+ "end_line" : 5027
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5033,
+ "end_line" : 5033
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5056,
+ "end_line" : 5056
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5062,
+ "end_line" : 5062
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5071,
+ "end_line" : 5071
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5099,
+ "end_line" : 5099
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5116,
+ "end_line" : 5116
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5135,
+ "end_line" : 5135
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5164,
+ "end_line" : 5164
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5173,
+ "end_line" : 5173
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5182,
+ "end_line" : 5182
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5202,
+ "end_line" : 5202
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5227,
+ "end_line" : 5227
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5270,
+ "end_line" : 5270
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5285,
+ "end_line" : 5285
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5301,
+ "end_line" : 5301
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5313,
+ "end_line" : 5313
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5319,
+ "end_line" : 5319
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5328,
+ "end_line" : 5328
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5340,
+ "end_line" : 5340
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5352,
+ "end_line" : 5352
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5361,
+ "end_line" : 5361
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5367,
+ "end_line" : 5367
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5379,
+ "end_line" : 5379
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5394,
+ "end_line" : 5394
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5406,
+ "end_line" : 5406
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5412,
+ "end_line" : 5412
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5424,
+ "end_line" : 5424
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5439,
+ "end_line" : 5439
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5460,
+ "end_line" : 5460
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5490,
+ "end_line" : 5490
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5496,
+ "end_line" : 5496
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5502,
+ "end_line" : 5502
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5520,
+ "end_line" : 5520
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5535,
+ "end_line" : 5535
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5550,
+ "end_line" : 5550
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5562,
+ "end_line" : 5562
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5571,
+ "end_line" : 5571
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5580,
+ "end_line" : 5580
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5589,
+ "end_line" : 5589
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5604,
+ "end_line" : 5604
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5616,
+ "end_line" : 5616
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5625,
+ "end_line" : 5625
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5638,
+ "end_line" : 5638
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5648,
+ "end_line" : 5648
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5665,
+ "end_line" : 5665
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5674,
+ "end_line" : 5674
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5683,
+ "end_line" : 5683
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5711,
+ "end_line" : 5711
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5717,
+ "end_line" : 5717
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5736,
+ "end_line" : 5736
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5748,
+ "end_line" : 5748
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5762,
+ "end_line" : 5762
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5777,
+ "end_line" : 5777
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5789,
+ "end_line" : 5789
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5804,
+ "end_line" : 5804
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5816,
+ "end_line" : 5816
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5825,
+ "end_line" : 5825
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5839,
+ "end_line" : 5839
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5851,
+ "end_line" : 5851
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5863,
+ "end_line" : 5863
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5889,
+ "end_line" : 5889
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5916,
+ "end_line" : 5916
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5931,
+ "end_line" : 5931
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5944,
+ "end_line" : 5944
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5956,
+ "end_line" : 5956
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5962,
+ "end_line" : 5962
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5971,
+ "end_line" : 5971
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5983,
+ "end_line" : 5983
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 5995,
+ "end_line" : 5995
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6005,
+ "end_line" : 6005
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6014,
+ "end_line" : 6014
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6026,
+ "end_line" : 6026
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6038,
+ "end_line" : 6038
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6052,
+ "end_line" : 6052
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6067,
+ "end_line" : 6067
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6079,
+ "end_line" : 6079
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6091,
+ "end_line" : 6091
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package-lock.json",
+ "start_line" : 6127,
+ "end_line" : 6127
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2015, Contributors",
+ "location" : {
+ "path" : "LICENSE.txt",
+ "start_line" : 3,
+ "end_line" : 3
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tarruda/has.git",
+ "revision" : "4edf96f2dec87ad6b6e68482e8f6d7c8eb7e07e6",
+ "path" : ""
+ },
+ "resolved_revision" : "4edf96f2dec87ad6b6e68482e8f6d7c8eb7e07e6"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:24:35.000757543Z",
+ "end_time" : "2023-07-19T12:24:38.000441177Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE-MIT",
+ "start_line" : 3,
+ "end_line" : 22
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 24,
+ "end_line" : 24
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 25,
+ "end_line" : 27
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 28,
+ "end_line" : 28
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2013 Thiago de Arruda",
+ "location" : {
+ "path" : "LICENSE-MIT",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/thlorenz/convert-source-map.git",
+ "revision" : "46c2b78aa56d25a77d3ea237051aeb5d9e7f750c",
+ "path" : ""
+ },
+ "resolved_revision" : "46c2b78aa56d25a77d3ea237051aeb5d9e7f750c"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-19T12:04:28.000919869Z",
+ "end_time" : "2023-07-19T12:04:31.000554840Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 4,
+ "end_line" : 23
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 31,
+ "end_line" : 31
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright 2013 Thorsten Lorenz",
+ "location" : {
+ "path" : "LICENSE",
+ "start_line" : 1,
+ "end_line" : 1
+ }
+ } ]
+ }
+ }, {
+ "provenance" : {
+ "vcs_info" : {
+ "type" : "Git",
+ "url" : "https://github.com/tj/node-growl.git",
+ "revision" : "95393c8da0d8bab06522a5eb36658a639c24a621",
+ "path" : ""
+ },
+ "resolved_revision" : "95393c8da0d8bab06522a5eb36658a639c24a621"
+ },
+ "scanner" : {
+ "name" : "ScanCode",
+ "version" : "31.2.4",
+ "configuration" : "--copyright --license --info --strip-root --timeout 300 --json-pp"
+ },
+ "summary" : {
+ "start_time" : "2023-07-20T06:39:44.000919354Z",
+ "end_time" : "2023-07-20T06:39:48.000991685Z",
+ "licenses" : [ {
+ "license" : "MIT",
+ "location" : {
+ "path" : "Readme.md",
+ "start_line" : 85,
+ "end_line" : 87
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "Readme.md",
+ "start_line" : 92,
+ "end_line" : 109
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "lib/growl.js",
+ "start_line" : 3,
+ "end_line" : 3
+ },
+ "score" : 100.0
+ }, {
+ "license" : "MIT",
+ "location" : {
+ "path" : "package.json",
+ "start_line" : 15,
+ "end_line" : 15
+ },
+ "score" : 100.0
+ } ],
+ "copyrights" : [ {
+ "statement" : "Copyright (c) 2009 TJ Holowaychuk