From 890df38efa8bbb28ab3e99e1eb19c86eaecfa8bc Mon Sep 17 00:00:00 2001 From: lukasz Date: Thu, 26 Dec 2024 13:45:52 +0100 Subject: [PATCH] refactor: changed jest snapshots to custom json files, removed deprecated referenceNumber field from licenses --- .gitignore | 3 +- .../core/src/check-license-status.test.ts | 2 - .../core/src/map-licenses-to-statuses.test.ts | 2 - .../core/src/resolve-license-status.test.ts | 2 - test/test/__snapshots__/snapshot.test.ts.snap | 28048 ---------------- test/test/snapshot.test.ts | 9 +- test/utils/matchSnapshotRecursive.test.ts | 285 + test/utils/matchSnapshotRecursive.ts | 62 + test/utils/path-serializer.ts | 12 +- .../data/src/license-audit-result/types.ts | 2 +- tooling/data/src/licenses/licenses.ts | 678 - tooling/data/src/licenses/schemas.ts | 2 +- 12 files changed, 363 insertions(+), 28744 deletions(-) delete mode 100644 test/test/__snapshots__/snapshot.test.ts.snap create mode 100644 test/utils/matchSnapshotRecursive.test.ts create mode 100644 test/utils/matchSnapshotRecursive.ts diff --git a/.gitignore b/.gitignore index 44a18fe1..17e5a3a8 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,5 @@ yarn-error.log* # Misc .DS_Store -*.pem \ No newline at end of file +*.pem +.aider* diff --git a/packages/core/src/check-license-status.test.ts b/packages/core/src/check-license-status.test.ts index f472da74..370ac5d3 100644 --- a/packages/core/src/check-license-status.test.ts +++ b/packages/core/src/check-license-status.test.ts @@ -13,14 +13,12 @@ describe("checkLicenseStatus", () => { | "isDeprecatedLicenseId" | "detailsUrl" | "reference" - | "referenceNumber" | "seeAlso" > = { isOsiApproved: false, isDeprecatedLicenseId: false, detailsUrl: "", reference: "", - referenceNumber: 0, seeAlso: [], }; diff --git a/packages/core/src/map-licenses-to-statuses.test.ts b/packages/core/src/map-licenses-to-statuses.test.ts index 242ee0da..44b57590 100644 --- a/packages/core/src/map-licenses-to-statuses.test.ts +++ b/packages/core/src/map-licenses-to-statuses.test.ts @@ -20,7 +20,6 @@ const baseLicense: Pick< | "isDeprecatedLicenseId" | "isOsiApproved" | "seeAlso" - | "referenceNumber" | "detailsUrl" | "reference" | "name" @@ -28,7 +27,6 @@ const baseLicense: Pick< isDeprecatedLicenseId: false, isOsiApproved: true, seeAlso: [], - referenceNumber: 0, detailsUrl: "", reference: "", name: "", diff --git a/packages/core/src/resolve-license-status.test.ts b/packages/core/src/resolve-license-status.test.ts index 45f005d4..110ebba6 100644 --- a/packages/core/src/resolve-license-status.test.ts +++ b/packages/core/src/resolve-license-status.test.ts @@ -9,7 +9,6 @@ describe("resolveLicenseStatus", () => { | "isDeprecatedLicenseId" | "isOsiApproved" | "seeAlso" - | "referenceNumber" | "detailsUrl" | "reference" | "source" @@ -18,7 +17,6 @@ describe("resolveLicenseStatus", () => { isDeprecatedLicenseId: false, isOsiApproved: true, seeAlso: [], - referenceNumber: 0, detailsUrl: "", reference: "", name: "", diff --git a/test/test/__snapshots__/snapshot.test.ts.snap b/test/test/__snapshots__/snapshot.test.ts.snap deleted file mode 100644 index fb5ea841..00000000 --- a/test/test/__snapshots__/snapshot.test.ts.snap +++ /dev/null @@ -1,28048 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`snapshot testing > monorepo project 1`] = ` -{ - "whitelist": [ - { - "packageName": "express@4.21.1", - "packagePath": "/node_modules/express", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/express/package.json", - "/node_modules/express/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "react@18.3.1", - "packagePath": "/node_modules/react", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/react/package.json", - "/node_modules/react/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "accepts@1.3.8", - "packagePath": "/node_modules/accepts", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/accepts/package.json", - "/node_modules/accepts/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-flatten@1.1.1", - "packagePath": "/node_modules/array-flatten", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array-flatten/package.json", - "/node_modules/array-flatten/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "body-parser@1.20.3", - "packagePath": "/node_modules/body-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/body-parser/package.json", - "/node_modules/body-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-disposition@0.5.4", - "packagePath": "/node_modules/content-disposition", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/content-disposition/package.json", - "/node_modules/content-disposition/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-type@1.0.5", - "packagePath": "/node_modules/content-type", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/content-type/package.json", - "/node_modules/content-type/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cookie-signature@1.0.6", - "packagePath": "/node_modules/cookie-signature", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/cookie-signature/package.json", - "/node_modules/cookie-signature" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "cookie@0.7.1", - "packagePath": "/node_modules/cookie", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/cookie/package.json", - "/node_modules/cookie/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@2.6.9", - "packagePath": "/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/debug/package.json", - "/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "depd@2.0.0", - "packagePath": "/node_modules/depd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/depd/package.json", - "/node_modules/depd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "encodeurl@2.0.0", - "packagePath": "/node_modules/encodeurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/encodeurl/package.json", - "/node_modules/encodeurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "escape-html@1.0.3", - "packagePath": "/node_modules/escape-html", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/escape-html/package.json", - "/node_modules/escape-html/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "etag@1.8.1", - "packagePath": "/node_modules/etag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/etag/package.json", - "/node_modules/etag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "finalhandler@1.3.1", - "packagePath": "/node_modules/finalhandler", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/finalhandler/package.json", - "/node_modules/finalhandler/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fresh@0.5.2", - "packagePath": "/node_modules/fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/fresh/package.json", - "/node_modules/fresh/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "http-errors@2.0.0", - "packagePath": "/node_modules/http-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/http-errors/package.json", - "/node_modules/http-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "merge-descriptors@1.0.3", - "packagePath": "/node_modules/merge-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/merge-descriptors/package.json", - "/node_modules/merge-descriptors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "methods@1.1.2", - "packagePath": "/node_modules/methods", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/methods/package.json", - "/node_modules/methods/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "on-finished@2.4.1", - "packagePath": "/node_modules/on-finished", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/on-finished/package.json", - "/node_modules/on-finished/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "parseurl@1.3.3", - "packagePath": "/node_modules/parseurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/parseurl/package.json", - "/node_modules/parseurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-to-regexp@0.1.10", - "packagePath": "/node_modules/path-to-regexp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/path-to-regexp/package.json", - "/node_modules/path-to-regexp/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "proxy-addr@2.0.7", - "packagePath": "/node_modules/proxy-addr", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/proxy-addr/package.json", - "/node_modules/proxy-addr/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "qs@6.13.0", - "packagePath": "/node_modules/qs", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/qs/package.json", - "/node_modules/qs/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "range-parser@1.2.1", - "packagePath": "/node_modules/range-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/range-parser/package.json", - "/node_modules/range-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-buffer@5.2.1", - "packagePath": "/node_modules/safe-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safe-buffer/package.json", - "/node_modules/safe-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "send@0.19.0", - "packagePath": "/node_modules/send", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/package.json", - "/node_modules/send/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "serve-static@1.16.2", - "packagePath": "/node_modules/serve-static", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/serve-static/package.json", - "/node_modules/serve-static/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "setprototypeof@1.2.0", - "packagePath": "/node_modules/setprototypeof", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/setprototypeof/package.json", - "/node_modules/setprototypeof/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "statuses@2.0.1", - "packagePath": "/node_modules/statuses", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/statuses/package.json", - "/node_modules/statuses/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-is@1.6.18", - "packagePath": "/node_modules/type-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/type-is/package.json", - "/node_modules/type-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "utils-merge@1.0.1", - "packagePath": "/node_modules/utils-merge", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/utils-merge/package.json", - "/node_modules/utils-merge/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "vary@1.1.2", - "packagePath": "/node_modules/vary", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/vary/package.json", - "/node_modules/vary/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "loose-envify@1.4.0", - "packagePath": "/node_modules/loose-envify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/loose-envify/package.json", - "/node_modules/loose-envify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-types@2.1.35", - "packagePath": "/node_modules/mime-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/mime-types/package.json", - "/node_modules/mime-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "negotiator@0.6.3", - "packagePath": "/node_modules/negotiator", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/negotiator/package.json", - "/node_modules/negotiator/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "bytes@3.1.2", - "packagePath": "/node_modules/bytes", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/bytes/package.json", - "/node_modules/bytes/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "destroy@1.2.0", - "packagePath": "/node_modules/destroy", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/destroy/package.json", - "/node_modules/destroy/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iconv-lite@0.4.24", - "packagePath": "/node_modules/iconv-lite", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/iconv-lite/package.json", - "/node_modules/iconv-lite/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "raw-body@2.5.2", - "packagePath": "/node_modules/raw-body", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/raw-body/package.json", - "/node_modules/raw-body/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "unpipe@1.0.0", - "packagePath": "/node_modules/unpipe", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/unpipe/package.json", - "/node_modules/unpipe/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.0.0", - "packagePath": "/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ms/package.json", - "/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "inherits@2.0.4", - "packagePath": "/node_modules/inherits", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/inherits/package.json", - "/node_modules/inherits/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "toidentifier@1.0.1", - "packagePath": "/node_modules/toidentifier", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/toidentifier/package.json", - "/node_modules/toidentifier/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ee-first@1.1.1", - "packagePath": "/node_modules/ee-first", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ee-first/package.json", - "/node_modules/ee-first/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "forwarded@0.2.0", - "packagePath": "/node_modules/forwarded", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/forwarded/package.json", - "/node_modules/forwarded/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ipaddr.js@1.9.1", - "packagePath": "/node_modules/ipaddr.js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ipaddr.js/package.json", - "/node_modules/ipaddr.js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "side-channel@1.0.6", - "packagePath": "/node_modules/side-channel", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/side-channel/package.json", - "/node_modules/side-channel/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "encodeurl@1.0.2", - "packagePath": "/node_modules/send/node_modules/encodeurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/node_modules/encodeurl/package.json", - "/node_modules/send/node_modules/encodeurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime@1.6.0", - "packagePath": "/node_modules/mime", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/mime/package.json", - "/node_modules/mime/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.1.3", - "packagePath": "/node_modules/send/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/node_modules/ms/package.json", - "/node_modules/send/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "media-typer@0.3.0", - "packagePath": "/node_modules/media-typer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/media-typer/package.json", - "/node_modules/media-typer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "js-tokens@4.0.0", - "packagePath": "/node_modules/js-tokens", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/js-tokens/package.json", - "/node_modules/js-tokens/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-db@1.52.0", - "packagePath": "/node_modules/mime-db", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/mime-db/package.json", - "/node_modules/mime-db/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safer-buffer@2.1.2", - "packagePath": "/node_modules/safer-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safer-buffer/package.json", - "/node_modules/safer-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "call-bind@1.0.7", - "packagePath": "/node_modules/call-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/call-bind/package.json", - "/node_modules/call-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-errors@1.3.0", - "packagePath": "/node_modules/es-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-errors/package.json", - "/node_modules/es-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "get-intrinsic@1.2.4", - "packagePath": "/node_modules/get-intrinsic", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/get-intrinsic/package.json", - "/node_modules/get-intrinsic/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-inspect@1.13.3", - "packagePath": "/node_modules/object-inspect", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object-inspect/package.json", - "/node_modules/object-inspect/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-define-property@1.0.0", - "packagePath": "/node_modules/es-define-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-define-property/package.json", - "/node_modules/es-define-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "function-bind@1.1.2", - "packagePath": "/node_modules/function-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/function-bind/package.json", - "/node_modules/function-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "set-function-length@1.2.2", - "packagePath": "/node_modules/set-function-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/set-function-length/package.json", - "/node_modules/set-function-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-proto@1.1.0", - "packagePath": "/node_modules/has-proto", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-proto/package.json", - "/node_modules/has-proto/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-symbols@1.1.0", - "packagePath": "/node_modules/has-symbols", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-symbols/package.json", - "/node_modules/has-symbols/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "hasown@2.0.2", - "packagePath": "/node_modules/hasown", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/hasown/package.json", - "/node_modules/hasown/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "define-data-property@1.1.4", - "packagePath": "/node_modules/define-data-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/define-data-property/package.json", - "/node_modules/define-data-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "gopd@1.2.0", - "packagePath": "/node_modules/gopd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/gopd/package.json", - "/node_modules/gopd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-property-descriptors@1.0.2", - "packagePath": "/node_modules/has-property-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-property-descriptors/package.json", - "/node_modules/has-property-descriptors/LICENSE" - ], - "verificationStatus": "ok" - } - ], - "blacklist": [], - "unknown": [], - "notFound": [], - "needsUserVerification": [] -} -`; - -exports[`snapshot testing > npm project 1`] = ` -{ - "whitelist": [ - { - "packageName": "eslint-plugin-react@7.37.2", - "packagePath": "/node_modules/eslint-plugin-react", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/eslint-plugin-react/package.json", - "/node_modules/eslint-plugin-react/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "express@5.0.1", - "packagePath": "/node_modules/express", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/express/package.json", - "/node_modules/express/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-includes@3.1.8", - "packagePath": "/node_modules/array-includes", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array-includes/package.json", - "/node_modules/array-includes/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.findlast@1.2.5", - "packagePath": "/node_modules/array.prototype.findlast", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.findlast/package.json", - "/node_modules/array.prototype.findlast/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.flatmap@1.3.2", - "packagePath": "/node_modules/array.prototype.flatmap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.flatmap/package.json", - "/node_modules/array.prototype.flatmap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.tosorted@1.1.4", - "packagePath": "/node_modules/array.prototype.tosorted", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.tosorted/package.json", - "/node_modules/array.prototype.tosorted/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "doctrine@2.1.0", - "packagePath": "/node_modules/doctrine", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/doctrine/package.json", - "/node_modules/doctrine/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-iterator-helpers@1.2.0", - "packagePath": "/node_modules/es-iterator-helpers", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-iterator-helpers/package.json", - "/node_modules/es-iterator-helpers/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint@9.15.0", - "packagePath": "/node_modules/eslint", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/eslint/package.json", - "/node_modules/eslint/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "estraverse@5.3.0", - "packagePath": "/node_modules/estraverse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/estraverse/package.json", - "/node_modules/estraverse" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "hasown@2.0.2", - "packagePath": "/node_modules/hasown", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/hasown/package.json", - "/node_modules/hasown/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "jsx-ast-utils@3.3.5", - "packagePath": "/node_modules/jsx-ast-utils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/jsx-ast-utils/package.json", - "/node_modules/jsx-ast-utils/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "minimatch@3.1.2", - "packagePath": "/node_modules/minimatch", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/minimatch/package.json", - "/node_modules/minimatch/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.entries@1.1.8", - "packagePath": "/node_modules/object.entries", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.entries/package.json", - "/node_modules/object.entries/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.fromentries@2.0.8", - "packagePath": "/node_modules/object.fromentries", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.fromentries/package.json", - "/node_modules/object.fromentries/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.values@1.2.0", - "packagePath": "/node_modules/object.values", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.values/package.json", - "/node_modules/object.values/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "prop-types@15.8.1", - "packagePath": "/node_modules/prop-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/prop-types/package.json", - "/node_modules/prop-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "resolve@2.0.0-next.5", - "packagePath": "/node_modules/resolve", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/resolve/package.json", - "/node_modules/resolve/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "semver@6.3.1", - "packagePath": "/node_modules/semver", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/semver/package.json", - "/node_modules/semver/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.matchall@4.0.11", - "packagePath": "/node_modules/string.prototype.matchall", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.matchall/package.json", - "/node_modules/string.prototype.matchall/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.repeat@1.0.0", - "packagePath": "/node_modules/string.prototype.repeat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.repeat/package.json", - "/node_modules/string.prototype.repeat/LICENSE-MIT.txt" - ], - "verificationStatus": "ok" - }, - { - "packageName": "accepts@2.0.0", - "packagePath": "/node_modules/accepts", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/accepts/package.json", - "/node_modules/accepts/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "body-parser@2.0.2", - "packagePath": "/node_modules/body-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/body-parser/package.json", - "/node_modules/body-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-disposition@1.0.0", - "packagePath": "/node_modules/content-disposition", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/content-disposition/package.json", - "/node_modules/content-disposition/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-type@1.0.5", - "packagePath": "/node_modules/content-type", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/content-type/package.json", - "/node_modules/content-type/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cookie-signature@1.2.2", - "packagePath": "/node_modules/cookie-signature", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/cookie-signature/package.json", - "/node_modules/cookie-signature/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cookie@0.7.1", - "packagePath": "/node_modules/cookie", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/cookie/package.json", - "/node_modules/cookie/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@4.3.6", - "packagePath": "/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/debug/package.json", - "/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "depd@2.0.0", - "packagePath": "/node_modules/depd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/depd/package.json", - "/node_modules/depd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "encodeurl@2.0.0", - "packagePath": "/node_modules/encodeurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/encodeurl/package.json", - "/node_modules/encodeurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "escape-html@1.0.3", - "packagePath": "/node_modules/escape-html", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/escape-html/package.json", - "/node_modules/escape-html/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "etag@1.8.1", - "packagePath": "/node_modules/etag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/etag/package.json", - "/node_modules/etag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "finalhandler@2.0.0", - "packagePath": "/node_modules/finalhandler", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/finalhandler/package.json", - "/node_modules/finalhandler/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fresh@2.0.0", - "packagePath": "/node_modules/fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/fresh/package.json", - "/node_modules/fresh/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "http-errors@2.0.0", - "packagePath": "/node_modules/http-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/http-errors/package.json", - "/node_modules/http-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "merge-descriptors@2.0.0", - "packagePath": "/node_modules/merge-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/merge-descriptors/package.json", - "/node_modules/merge-descriptors/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "methods@1.1.2", - "packagePath": "/node_modules/methods", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/methods/package.json", - "/node_modules/methods/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-types@3.0.0", - "packagePath": "/node_modules/mime-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/mime-types/package.json", - "/node_modules/mime-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "on-finished@2.4.1", - "packagePath": "/node_modules/on-finished", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/on-finished/package.json", - "/node_modules/on-finished/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "once@1.4.0", - "packagePath": "/node_modules/once", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/once/package.json", - "/node_modules/once/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "parseurl@1.3.3", - "packagePath": "/node_modules/parseurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/parseurl/package.json", - "/node_modules/parseurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "proxy-addr@2.0.7", - "packagePath": "/node_modules/proxy-addr", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/proxy-addr/package.json", - "/node_modules/proxy-addr/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "qs@6.13.0", - "packagePath": "/node_modules/qs", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/qs/package.json", - "/node_modules/qs/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "range-parser@1.2.1", - "packagePath": "/node_modules/range-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/range-parser/package.json", - "/node_modules/range-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "router@2.0.0", - "packagePath": "/node_modules/router", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/router/package.json", - "/node_modules/router/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-buffer@5.2.1", - "packagePath": "/node_modules/safe-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safe-buffer/package.json", - "/node_modules/safe-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "send@1.1.0", - "packagePath": "/node_modules/send", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/package.json", - "/node_modules/send/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "serve-static@2.1.0", - "packagePath": "/node_modules/serve-static", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/serve-static/package.json", - "/node_modules/serve-static/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "setprototypeof@1.2.0", - "packagePath": "/node_modules/setprototypeof", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/setprototypeof/package.json", - "/node_modules/setprototypeof/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "statuses@2.0.1", - "packagePath": "/node_modules/statuses", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/statuses/package.json", - "/node_modules/statuses/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-is@2.0.0", - "packagePath": "/node_modules/type-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/type-is/package.json", - "/node_modules/type-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "utils-merge@1.0.1", - "packagePath": "/node_modules/utils-merge", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/utils-merge/package.json", - "/node_modules/utils-merge/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "vary@1.1.2", - "packagePath": "/node_modules/vary", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/vary/package.json", - "/node_modules/vary/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "call-bind@1.0.7", - "packagePath": "/node_modules/call-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/call-bind/package.json", - "/node_modules/call-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "define-properties@1.2.1", - "packagePath": "/node_modules/define-properties", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/define-properties/package.json", - "/node_modules/define-properties/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-abstract@1.23.5", - "packagePath": "/node_modules/es-abstract", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-abstract/package.json", - "/node_modules/es-abstract/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-object-atoms@1.0.0", - "packagePath": "/node_modules/es-object-atoms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-object-atoms/package.json", - "/node_modules/es-object-atoms/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "get-intrinsic@1.2.4", - "packagePath": "/node_modules/get-intrinsic", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/get-intrinsic/package.json", - "/node_modules/get-intrinsic/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-string@1.0.7", - "packagePath": "/node_modules/is-string", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-string/package.json", - "/node_modules/is-string/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-errors@1.3.0", - "packagePath": "/node_modules/es-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-errors/package.json", - "/node_modules/es-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-shim-unscopables@1.0.2", - "packagePath": "/node_modules/es-shim-unscopables", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-shim-unscopables/package.json", - "/node_modules/es-shim-unscopables/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "esutils@2.0.3", - "packagePath": "/node_modules/esutils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/esutils/package.json", - "/node_modules/esutils" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "es-set-tostringtag@2.0.3", - "packagePath": "/node_modules/es-set-tostringtag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-set-tostringtag/package.json", - "/node_modules/es-set-tostringtag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "function-bind@1.1.2", - "packagePath": "/node_modules/function-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/function-bind/package.json", - "/node_modules/function-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "globalthis@1.0.4", - "packagePath": "/node_modules/globalthis", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/globalthis/package.json", - "/node_modules/globalthis/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "gopd@1.0.1", - "packagePath": "/node_modules/gopd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/gopd/package.json", - "/node_modules/gopd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-property-descriptors@1.0.2", - "packagePath": "/node_modules/has-property-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-property-descriptors/package.json", - "/node_modules/has-property-descriptors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-proto@1.0.3", - "packagePath": "/node_modules/has-proto", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-proto/package.json", - "/node_modules/has-proto/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-symbols@1.0.3", - "packagePath": "/node_modules/has-symbols", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-symbols/package.json", - "/node_modules/has-symbols/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "internal-slot@1.0.7", - "packagePath": "/node_modules/internal-slot", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/internal-slot/package.json", - "/node_modules/internal-slot/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iterator.prototype@1.1.3", - "packagePath": "/node_modules/iterator.prototype", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/iterator.prototype/package.json", - "/node_modules/iterator.prototype/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-array-concat@1.1.2", - "packagePath": "/node_modules/safe-array-concat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safe-array-concat/package.json", - "/node_modules/safe-array-concat/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint-community/eslint-utils@4.4.1", - "packagePath": "/node_modules/@eslint-community/eslint-utils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint-community/eslint-utils/package.json", - "/node_modules/@eslint-community/eslint-utils/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint-community/regexpp@4.12.1", - "packagePath": "/node_modules/@eslint-community/regexpp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint-community/regexpp/package.json", - "/node_modules/@eslint-community/regexpp/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/config-array@0.19.0", - "packagePath": "/node_modules/@eslint/config-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint/config-array/package.json", - "/node_modules/@eslint/config-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/core@0.9.0", - "packagePath": "/node_modules/@eslint/core", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint/core/package.json", - "/node_modules/@eslint/core/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/eslintrc@3.2.0", - "packagePath": "/node_modules/@eslint/eslintrc", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint/eslintrc/package.json", - "/node_modules/@eslint/eslintrc/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/js@9.15.0", - "packagePath": "/node_modules/@eslint/js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint/js/package.json", - "/node_modules/@eslint/js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/plugin-kit@0.2.3", - "packagePath": "/node_modules/@eslint/plugin-kit", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint/plugin-kit/package.json", - "/node_modules/@eslint/plugin-kit/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanfs/node@0.16.6", - "packagePath": "/node_modules/@humanfs/node", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@humanfs/node/package.json", - "/node_modules/@humanfs/node/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanwhocodes/module-importer@1.0.1", - "packagePath": "/node_modules/@humanwhocodes/module-importer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@humanwhocodes/module-importer/package.json", - "/node_modules/@humanwhocodes/module-importer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanwhocodes/retry@0.4.1", - "packagePath": "/node_modules/@humanwhocodes/retry", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@humanwhocodes/retry/package.json", - "/node_modules/@humanwhocodes/retry/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@types/estree@1.0.6", - "packagePath": "/node_modules/@types/estree", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@types/estree/package.json", - "/node_modules/@types/estree/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@types/json-schema@7.0.15", - "packagePath": "/node_modules/@types/json-schema", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@types/json-schema/package.json", - "/node_modules/@types/json-schema/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ajv@6.12.6", - "packagePath": "/node_modules/ajv", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ajv/package.json", - "/node_modules/ajv/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "chalk@4.1.2", - "packagePath": "/node_modules/chalk", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/chalk/package.json", - "/node_modules/chalk/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cross-spawn@7.0.6", - "packagePath": "/node_modules/cross-spawn", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/cross-spawn/package.json", - "/node_modules/cross-spawn/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "escape-string-regexp@4.0.0", - "packagePath": "/node_modules/escape-string-regexp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/escape-string-regexp/package.json", - "/node_modules/escape-string-regexp/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-scope@8.2.0", - "packagePath": "/node_modules/eslint-scope", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/eslint-scope/package.json", - "/node_modules/eslint-scope/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-visitor-keys@4.2.0", - "packagePath": "/node_modules/eslint-visitor-keys", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/eslint-visitor-keys/package.json", - "/node_modules/eslint-visitor-keys/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "espree@10.3.0", - "packagePath": "/node_modules/espree", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/espree/package.json", - "/node_modules/espree/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "esquery@1.6.0", - "packagePath": "/node_modules/esquery", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/esquery/package.json", - "/node_modules/esquery/license.txt" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fast-deep-equal@3.1.3", - "packagePath": "/node_modules/fast-deep-equal", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/fast-deep-equal/package.json", - "/node_modules/fast-deep-equal/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "file-entry-cache@8.0.0", - "packagePath": "/node_modules/file-entry-cache", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/file-entry-cache/package.json", - "/node_modules/file-entry-cache/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "find-up@5.0.0", - "packagePath": "/node_modules/find-up", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/find-up/package.json", - "/node_modules/find-up/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "glob-parent@6.0.2", - "packagePath": "/node_modules/glob-parent", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content-keywords" - } - ], - "licensePath": [ - "/node_modules/glob-parent/package.json", - "/node_modules/glob-parent/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ignore@5.3.2", - "packagePath": "/node_modules/ignore", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ignore/package.json", - "/node_modules/ignore/LICENSE-MIT" - ], - "verificationStatus": "ok" - }, - { - "packageName": "imurmurhash@0.1.4", - "packagePath": "/node_modules/imurmurhash", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/imurmurhash/package.json", - "/node_modules/imurmurhash" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "is-glob@4.0.3", - "packagePath": "/node_modules/is-glob", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-glob/package.json", - "/node_modules/is-glob/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "json-stable-stringify-without-jsonify@1.0.1", - "packagePath": "/node_modules/json-stable-stringify-without-jsonify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/json-stable-stringify-without-jsonify/package.json", - "/node_modules/json-stable-stringify-without-jsonify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "natural-compare@1.4.0", - "packagePath": "/node_modules/natural-compare", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/natural-compare/package.json", - "/node_modules/natural-compare" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "optionator@0.9.4", - "packagePath": "/node_modules/optionator", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/optionator/package.json", - "/node_modules/optionator/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.flat@1.3.2", - "packagePath": "/node_modules/array.prototype.flat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.flat/package.json", - "/node_modules/array.prototype.flat/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.assign@4.1.5", - "packagePath": "/node_modules/object.assign", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.assign/package.json", - "/node_modules/object.assign/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "brace-expansion@1.1.11", - "packagePath": "/node_modules/brace-expansion", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/brace-expansion/package.json", - "/node_modules/brace-expansion/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "loose-envify@1.4.0", - "packagePath": "/node_modules/loose-envify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/loose-envify/package.json", - "/node_modules/loose-envify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-assign@4.1.1", - "packagePath": "/node_modules/object-assign", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object-assign/package.json", - "/node_modules/object-assign/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "react-is@16.13.1", - "packagePath": "/node_modules/react-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/react-is/package.json", - "/node_modules/react-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-core-module@2.15.1", - "packagePath": "/node_modules/is-core-module", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-core-module/package.json", - "/node_modules/is-core-module/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-parse@1.0.7", - "packagePath": "/node_modules/path-parse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/path-parse/package.json", - "/node_modules/path-parse/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "supports-preserve-symlinks-flag@1.0.0", - "packagePath": "/node_modules/supports-preserve-symlinks-flag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/supports-preserve-symlinks-flag/package.json", - "/node_modules/supports-preserve-symlinks-flag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "regexp.prototype.flags@1.5.3", - "packagePath": "/node_modules/regexp.prototype.flags", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/regexp.prototype.flags/package.json", - "/node_modules/regexp.prototype.flags/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "set-function-name@2.0.2", - "packagePath": "/node_modules/set-function-name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/set-function-name/package.json", - "/node_modules/set-function-name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "side-channel@1.0.6", - "packagePath": "/node_modules/side-channel", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/side-channel/package.json", - "/node_modules/side-channel/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "negotiator@1.0.0", - "packagePath": "/node_modules/negotiator", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/negotiator/package.json", - "/node_modules/negotiator/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "bytes@3.1.2", - "packagePath": "/node_modules/bytes", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/bytes/package.json", - "/node_modules/bytes/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@3.1.0", - "packagePath": "/node_modules/body-parser/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/body-parser/node_modules/debug/package.json", - "/node_modules/body-parser/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "destroy@1.2.0", - "packagePath": "/node_modules/destroy", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/destroy/package.json", - "/node_modules/destroy/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iconv-lite@0.5.2", - "packagePath": "/node_modules/iconv-lite", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/iconv-lite/package.json", - "/node_modules/iconv-lite/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "raw-body@3.0.0", - "packagePath": "/node_modules/raw-body", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/raw-body/package.json", - "/node_modules/raw-body/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-is@1.6.18", - "packagePath": "/node_modules/body-parser/node_modules/type-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/body-parser/node_modules/type-is/package.json", - "/node_modules/body-parser/node_modules/type-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.1.2", - "packagePath": "/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ms/package.json", - "/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@2.6.9", - "packagePath": "/node_modules/finalhandler/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/finalhandler/node_modules/debug/package.json", - "/node_modules/finalhandler/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "encodeurl@1.0.2", - "packagePath": "/node_modules/finalhandler/node_modules/encodeurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/finalhandler/node_modules/encodeurl/package.json", - "/node_modules/finalhandler/node_modules/encodeurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "unpipe@1.0.0", - "packagePath": "/node_modules/unpipe", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/unpipe/package.json", - "/node_modules/unpipe/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "inherits@2.0.4", - "packagePath": "/node_modules/inherits", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/inherits/package.json", - "/node_modules/inherits/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "toidentifier@1.0.1", - "packagePath": "/node_modules/toidentifier", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/toidentifier/package.json", - "/node_modules/toidentifier/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-db@1.53.0", - "packagePath": "/node_modules/mime-db", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/mime-db/package.json", - "/node_modules/mime-db/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ee-first@1.1.1", - "packagePath": "/node_modules/ee-first", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ee-first/package.json", - "/node_modules/ee-first/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "wrappy@1.0.2", - "packagePath": "/node_modules/wrappy", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/wrappy/package.json", - "/node_modules/wrappy/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "forwarded@0.2.0", - "packagePath": "/node_modules/forwarded", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/forwarded/package.json", - "/node_modules/forwarded/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ipaddr.js@1.9.1", - "packagePath": "/node_modules/ipaddr.js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ipaddr.js/package.json", - "/node_modules/ipaddr.js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-flatten@3.0.0", - "packagePath": "/node_modules/array-flatten", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array-flatten/package.json", - "/node_modules/array-flatten/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-promise@4.0.0", - "packagePath": "/node_modules/is-promise", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-promise/package.json", - "/node_modules/is-promise/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-to-regexp@8.2.0", - "packagePath": "/node_modules/path-to-regexp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/path-to-regexp/package.json", - "/node_modules/path-to-regexp/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fresh@0.5.2", - "packagePath": "/node_modules/send/node_modules/fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/node_modules/fresh/package.json", - "/node_modules/send/node_modules/fresh/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-types@2.1.35", - "packagePath": "/node_modules/send/node_modules/mime-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/node_modules/mime-types/package.json", - "/node_modules/send/node_modules/mime-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.1.3", - "packagePath": "/node_modules/send/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/node_modules/ms/package.json", - "/node_modules/send/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "media-typer@1.1.0", - "packagePath": "/node_modules/media-typer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/media-typer/package.json", - "/node_modules/media-typer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-define-property@1.0.0", - "packagePath": "/node_modules/es-define-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-define-property/package.json", - "/node_modules/es-define-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "set-function-length@1.2.2", - "packagePath": "/node_modules/set-function-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/set-function-length/package.json", - "/node_modules/set-function-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "define-data-property@1.1.4", - "packagePath": "/node_modules/define-data-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/define-data-property/package.json", - "/node_modules/define-data-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-keys@1.1.1", - "packagePath": "/node_modules/object-keys", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object-keys/package.json", - "/node_modules/object-keys/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-buffer-byte-length@1.0.1", - "packagePath": "/node_modules/array-buffer-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array-buffer-byte-length/package.json", - "/node_modules/array-buffer-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "arraybuffer.prototype.slice@1.0.3", - "packagePath": "/node_modules/arraybuffer.prototype.slice", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/arraybuffer.prototype.slice/package.json", - "/node_modules/arraybuffer.prototype.slice/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "available-typed-arrays@1.0.7", - "packagePath": "/node_modules/available-typed-arrays", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/available-typed-arrays/package.json", - "/node_modules/available-typed-arrays/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-buffer@1.0.1", - "packagePath": "/node_modules/data-view-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/data-view-buffer/package.json", - "/node_modules/data-view-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-byte-length@1.0.1", - "packagePath": "/node_modules/data-view-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/data-view-byte-length/package.json", - "/node_modules/data-view-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-byte-offset@1.0.0", - "packagePath": "/node_modules/data-view-byte-offset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/data-view-byte-offset/package.json", - "/node_modules/data-view-byte-offset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-to-primitive@1.2.1", - "packagePath": "/node_modules/es-to-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-to-primitive/package.json", - "/node_modules/es-to-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "function.prototype.name@1.1.6", - "packagePath": "/node_modules/function.prototype.name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/function.prototype.name/package.json", - "/node_modules/function.prototype.name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "get-symbol-description@1.0.2", - "packagePath": "/node_modules/get-symbol-description", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/get-symbol-description/package.json", - "/node_modules/get-symbol-description/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-array-buffer@3.0.4", - "packagePath": "/node_modules/is-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-array-buffer/package.json", - "/node_modules/is-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-callable@1.2.7", - "packagePath": "/node_modules/is-callable", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-callable/package.json", - "/node_modules/is-callable/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-data-view@1.0.1", - "packagePath": "/node_modules/is-data-view", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-data-view/package.json", - "/node_modules/is-data-view/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-negative-zero@2.0.3", - "packagePath": "/node_modules/is-negative-zero", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-negative-zero/package.json", - "/node_modules/is-negative-zero/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-regex@1.1.4", - "packagePath": "/node_modules/is-regex", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-regex/package.json", - "/node_modules/is-regex/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-shared-array-buffer@1.0.3", - "packagePath": "/node_modules/is-shared-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-shared-array-buffer/package.json", - "/node_modules/is-shared-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-typed-array@1.1.13", - "packagePath": "/node_modules/is-typed-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-typed-array/package.json", - "/node_modules/is-typed-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakref@1.0.2", - "packagePath": "/node_modules/is-weakref", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-weakref/package.json", - "/node_modules/is-weakref/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-inspect@1.13.3", - "packagePath": "/node_modules/object-inspect", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object-inspect/package.json", - "/node_modules/object-inspect/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-regex-test@1.0.3", - "packagePath": "/node_modules/safe-regex-test", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safe-regex-test/package.json", - "/node_modules/safe-regex-test/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trim@1.2.9", - "packagePath": "/node_modules/string.prototype.trim", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.trim/package.json", - "/node_modules/string.prototype.trim/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trimend@1.0.8", - "packagePath": "/node_modules/string.prototype.trimend", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.trimend/package.json", - "/node_modules/string.prototype.trimend/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trimstart@1.0.8", - "packagePath": "/node_modules/string.prototype.trimstart", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.trimstart/package.json", - "/node_modules/string.prototype.trimstart/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-buffer@1.0.2", - "packagePath": "/node_modules/typed-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-buffer/package.json", - "/node_modules/typed-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-byte-length@1.0.1", - "packagePath": "/node_modules/typed-array-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-byte-length/package.json", - "/node_modules/typed-array-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-byte-offset@1.0.3", - "packagePath": "/node_modules/typed-array-byte-offset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-byte-offset/package.json", - "/node_modules/typed-array-byte-offset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-length@1.0.6", - "packagePath": "/node_modules/typed-array-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-length/package.json", - "/node_modules/typed-array-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "unbox-primitive@1.0.2", - "packagePath": "/node_modules/unbox-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/unbox-primitive/package.json", - "/node_modules/unbox-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-typed-array@1.1.15", - "packagePath": "/node_modules/which-typed-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-typed-array/package.json", - "/node_modules/which-typed-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-tostringtag@1.0.2", - "packagePath": "/node_modules/has-tostringtag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-tostringtag/package.json", - "/node_modules/has-tostringtag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "reflect.getprototypeof@1.0.6", - "packagePath": "/node_modules/reflect.getprototypeof", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/reflect.getprototypeof/package.json", - "/node_modules/reflect.getprototypeof/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "isarray@2.0.5", - "packagePath": "/node_modules/isarray", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/isarray/package.json", - "/node_modules/isarray/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-visitor-keys@3.4.3", - "packagePath": "/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json", - "/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/object-schema@2.1.4", - "packagePath": "/node_modules/@eslint/object-schema", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@eslint/object-schema/package.json", - "/node_modules/@eslint/object-schema/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "globals@14.0.0", - "packagePath": "/node_modules/globals", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/globals/package.json", - "/node_modules/globals/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "import-fresh@3.3.0", - "packagePath": "/node_modules/import-fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/import-fresh/package.json", - "/node_modules/import-fresh/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "js-yaml@4.1.0", - "packagePath": "/node_modules/js-yaml", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/js-yaml/package.json", - "/node_modules/js-yaml/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "strip-json-comments@3.1.1", - "packagePath": "/node_modules/strip-json-comments", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/strip-json-comments/package.json", - "/node_modules/strip-json-comments/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "levn@0.4.1", - "packagePath": "/node_modules/levn", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/levn/package.json", - "/node_modules/levn/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanfs/core@0.19.1", - "packagePath": "/node_modules/@humanfs/core", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@humanfs/core/package.json", - "/node_modules/@humanfs/core/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanwhocodes/retry@0.3.1", - "packagePath": "/node_modules/@humanfs/node/node_modules/@humanwhocodes/retry", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/@humanfs/node/node_modules/@humanwhocodes/retry/package.json", - "/node_modules/@humanfs/node/node_modules/@humanwhocodes/retry/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fast-json-stable-stringify@2.1.0", - "packagePath": "/node_modules/fast-json-stable-stringify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/fast-json-stable-stringify/package.json", - "/node_modules/fast-json-stable-stringify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "json-schema-traverse@0.4.1", - "packagePath": "/node_modules/json-schema-traverse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/json-schema-traverse/package.json", - "/node_modules/json-schema-traverse/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "uri-js@4.4.1", - "packagePath": "/node_modules/uri-js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/uri-js/package.json", - "/node_modules/uri-js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ansi-styles@4.3.0", - "packagePath": "/node_modules/ansi-styles", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ansi-styles/package.json", - "/node_modules/ansi-styles/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "supports-color@7.2.0", - "packagePath": "/node_modules/supports-color", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/supports-color/package.json", - "/node_modules/supports-color/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-key@3.1.1", - "packagePath": "/node_modules/path-key", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/path-key/package.json", - "/node_modules/path-key/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "shebang-command@2.0.0", - "packagePath": "/node_modules/shebang-command", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/shebang-command/package.json", - "/node_modules/shebang-command/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which@2.0.2", - "packagePath": "/node_modules/which", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which/package.json", - "/node_modules/which/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "esrecurse@4.3.0", - "packagePath": "/node_modules/esrecurse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/esrecurse/package.json", - "/node_modules/esrecurse" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "acorn-jsx@5.3.2", - "packagePath": "/node_modules/acorn-jsx", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/acorn-jsx/package.json", - "/node_modules/acorn-jsx/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "acorn@8.14.0", - "packagePath": "/node_modules/acorn", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/acorn/package.json", - "/node_modules/acorn/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "flat-cache@4.0.1", - "packagePath": "/node_modules/flat-cache", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/flat-cache/package.json", - "/node_modules/flat-cache/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "locate-path@6.0.0", - "packagePath": "/node_modules/locate-path", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/locate-path/package.json", - "/node_modules/locate-path/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-exists@4.0.0", - "packagePath": "/node_modules/path-exists", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/path-exists/package.json", - "/node_modules/path-exists/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-extglob@2.1.1", - "packagePath": "/node_modules/is-extglob", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-extglob/package.json", - "/node_modules/is-extglob/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "deep-is@0.1.4", - "packagePath": "/node_modules/deep-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/deep-is/package.json", - "/node_modules/deep-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fast-levenshtein@2.0.6", - "packagePath": "/node_modules/fast-levenshtein", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/fast-levenshtein/package.json", - "/node_modules/fast-levenshtein/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "prelude-ls@1.2.1", - "packagePath": "/node_modules/prelude-ls", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/prelude-ls/package.json", - "/node_modules/prelude-ls/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-check@0.4.0", - "packagePath": "/node_modules/type-check", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/type-check/package.json", - "/node_modules/type-check/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "word-wrap@1.2.5", - "packagePath": "/node_modules/word-wrap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/word-wrap/package.json", - "/node_modules/word-wrap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "balanced-match@1.0.2", - "packagePath": "/node_modules/balanced-match", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/balanced-match/package.json", - "/node_modules/balanced-match/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "concat-map@0.0.1", - "packagePath": "/node_modules/concat-map", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/concat-map/package.json", - "/node_modules/concat-map/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "js-tokens@4.0.0", - "packagePath": "/node_modules/js-tokens", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/js-tokens/package.json", - "/node_modules/js-tokens/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "functions-have-names@1.2.3", - "packagePath": "/node_modules/functions-have-names", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/functions-have-names/package.json", - "/node_modules/functions-have-names/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.0.0", - "packagePath": "/node_modules/body-parser/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/body-parser/node_modules/ms/package.json", - "/node_modules/body-parser/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safer-buffer@2.1.2", - "packagePath": "/node_modules/safer-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safer-buffer/package.json", - "/node_modules/safer-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iconv-lite@0.6.3", - "packagePath": "/node_modules/raw-body/node_modules/iconv-lite", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/raw-body/node_modules/iconv-lite/package.json", - "/node_modules/raw-body/node_modules/iconv-lite/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "media-typer@0.3.0", - "packagePath": "/node_modules/body-parser/node_modules/media-typer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/body-parser/node_modules/media-typer/package.json", - "/node_modules/body-parser/node_modules/media-typer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-db@1.52.0", - "packagePath": "/node_modules/send/node_modules/mime-db", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/node_modules/mime-db/package.json", - "/node_modules/send/node_modules/mime-db/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "possible-typed-array-names@1.0.0", - "packagePath": "/node_modules/possible-typed-array-names", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/possible-typed-array-names/package.json", - "/node_modules/possible-typed-array-names/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-date-object@1.0.5", - "packagePath": "/node_modules/is-date-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-date-object/package.json", - "/node_modules/is-date-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-symbol@1.0.4", - "packagePath": "/node_modules/is-symbol", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-symbol/package.json", - "/node_modules/is-symbol/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "for-each@0.3.3", - "packagePath": "/node_modules/for-each", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/for-each/package.json", - "/node_modules/for-each/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-bigints@1.0.2", - "packagePath": "/node_modules/has-bigints", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-bigints/package.json", - "/node_modules/has-bigints/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-boxed-primitive@1.0.2", - "packagePath": "/node_modules/which-boxed-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-boxed-primitive/package.json", - "/node_modules/which-boxed-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-builtin-type@1.1.4", - "packagePath": "/node_modules/which-builtin-type", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-builtin-type/package.json", - "/node_modules/which-builtin-type/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "parent-module@1.0.1", - "packagePath": "/node_modules/parent-module", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/parent-module/package.json", - "/node_modules/parent-module/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "resolve-from@4.0.0", - "packagePath": "/node_modules/resolve-from", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/resolve-from/package.json", - "/node_modules/resolve-from/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "punycode@2.3.1", - "packagePath": "/node_modules/punycode", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/punycode/package.json", - "/node_modules/punycode/LICENSE-MIT.txt" - ], - "verificationStatus": "ok" - }, - { - "packageName": "color-convert@2.0.1", - "packagePath": "/node_modules/color-convert", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/color-convert/package.json", - "/node_modules/color-convert/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-flag@4.0.0", - "packagePath": "/node_modules/has-flag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-flag/package.json", - "/node_modules/has-flag/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "shebang-regex@3.0.0", - "packagePath": "/node_modules/shebang-regex", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/shebang-regex/package.json", - "/node_modules/shebang-regex/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "isexe@2.0.0", - "packagePath": "/node_modules/isexe", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/isexe/package.json", - "/node_modules/isexe/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "flatted@3.3.2", - "packagePath": "/node_modules/flatted", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/flatted/package.json", - "/node_modules/flatted/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "keyv@4.5.4", - "packagePath": "/node_modules/keyv", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/keyv/package.json", - "/node_modules/keyv" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "p-locate@5.0.0", - "packagePath": "/node_modules/p-locate", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/p-locate/package.json", - "/node_modules/p-locate/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-bigint@1.0.4", - "packagePath": "/node_modules/is-bigint", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-bigint/package.json", - "/node_modules/is-bigint/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-boolean-object@1.1.2", - "packagePath": "/node_modules/is-boolean-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-boolean-object/package.json", - "/node_modules/is-boolean-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-number-object@1.0.7", - "packagePath": "/node_modules/is-number-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-number-object/package.json", - "/node_modules/is-number-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-async-function@2.0.0", - "packagePath": "/node_modules/is-async-function", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-async-function/package.json", - "/node_modules/is-async-function/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-finalizationregistry@1.0.2", - "packagePath": "/node_modules/is-finalizationregistry", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-finalizationregistry/package.json", - "/node_modules/is-finalizationregistry/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-generator-function@1.0.10", - "packagePath": "/node_modules/is-generator-function", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-generator-function/package.json", - "/node_modules/is-generator-function/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-collection@1.0.2", - "packagePath": "/node_modules/which-collection", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-collection/package.json", - "/node_modules/which-collection/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "callsites@3.1.0", - "packagePath": "/node_modules/callsites", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/callsites/package.json", - "/node_modules/callsites/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "color-name@1.1.4", - "packagePath": "/node_modules/color-name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/color-name/package.json", - "/node_modules/color-name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "json-buffer@3.0.1", - "packagePath": "/node_modules/json-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/json-buffer/package.json", - "/node_modules/json-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "p-limit@3.1.0", - "packagePath": "/node_modules/p-limit", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/p-limit/package.json", - "/node_modules/p-limit/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-map@2.0.3", - "packagePath": "/node_modules/is-map", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-map/package.json", - "/node_modules/is-map/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-set@2.0.3", - "packagePath": "/node_modules/is-set", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-set/package.json", - "/node_modules/is-set/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakmap@2.0.2", - "packagePath": "/node_modules/is-weakmap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-weakmap/package.json", - "/node_modules/is-weakmap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakset@2.0.3", - "packagePath": "/node_modules/is-weakset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-weakset/package.json", - "/node_modules/is-weakset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "yocto-queue@0.1.0", - "packagePath": "/node_modules/yocto-queue", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/yocto-queue/package.json", - "/node_modules/yocto-queue/license" - ], - "verificationStatus": "ok" - } - ], - "blacklist": [], - "unknown": [], - "notFound": [], - "needsUserVerification": [ - { - "packageName": "lodash.merge@4.6.2", - "packagePath": "/node_modules/lodash.merge", - "verificationMessage": "We’ve found a license file, but no matching licenses in it in path lodash.merge@4.6.2. Please review package /node_modules/lodash.merge and assign a matching license or skip the check by listing it in the overrides field of the config file." - }, - { - "packageName": "argparse@2.0.1", - "packagePath": "/node_modules/argparse", - "verificationMessage": "We’ve found a license file, but no matching licenses in it in path argparse@2.0.1. Please review package /node_modules/argparse and assign a matching license or skip the check by listing it in the overrides field of the config file." - } - ] -} -`; - -exports[`snapshot testing > pnpm project 1`] = ` -{ - "whitelist": [ - { - "packageName": "@eslint-community/eslint-utils@4.4.1", - "packagePath": "/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.1_eslint@9.16.0/node_modules/@eslint-community/eslint-utils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.1_eslint@9.16.0/node_modules/@eslint-community/eslint-utils/package.json", - "/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.1_eslint@9.16.0/node_modules/@eslint-community/eslint-utils/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint-community/regexpp@4.12.1", - "packagePath": "/node_modules/.pnpm/@eslint-community+regexpp@4.12.1/node_modules/@eslint-community/regexpp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint-community+regexpp@4.12.1/node_modules/@eslint-community/regexpp/package.json", - "/node_modules/.pnpm/@eslint-community+regexpp@4.12.1/node_modules/@eslint-community/regexpp/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/config-array@0.19.0", - "packagePath": "/node_modules/.pnpm/@eslint+config-array@0.19.0/node_modules/@eslint/config-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint+config-array@0.19.0/node_modules/@eslint/config-array/package.json", - "/node_modules/.pnpm/@eslint+config-array@0.19.0/node_modules/@eslint/config-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/core@0.9.0", - "packagePath": "/node_modules/.pnpm/@eslint+core@0.9.0/node_modules/@eslint/core", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint+core@0.9.0/node_modules/@eslint/core/package.json", - "/node_modules/.pnpm/@eslint+core@0.9.0/node_modules/@eslint/core/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/eslintrc@3.2.0", - "packagePath": "/node_modules/.pnpm/@eslint+eslintrc@3.2.0/node_modules/@eslint/eslintrc", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint+eslintrc@3.2.0/node_modules/@eslint/eslintrc/package.json", - "/node_modules/.pnpm/@eslint+eslintrc@3.2.0/node_modules/@eslint/eslintrc/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/js@9.16.0", - "packagePath": "/node_modules/.pnpm/@eslint+js@9.16.0/node_modules/@eslint/js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint+js@9.16.0/node_modules/@eslint/js/package.json", - "/node_modules/.pnpm/@eslint+js@9.16.0/node_modules/@eslint/js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/object-schema@2.1.4", - "packagePath": "/node_modules/.pnpm/@eslint+object-schema@2.1.4/node_modules/@eslint/object-schema", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint+object-schema@2.1.4/node_modules/@eslint/object-schema/package.json", - "/node_modules/.pnpm/@eslint+object-schema@2.1.4/node_modules/@eslint/object-schema/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@eslint/plugin-kit@0.2.3", - "packagePath": "/node_modules/.pnpm/@eslint+plugin-kit@0.2.3/node_modules/@eslint/plugin-kit", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@eslint+plugin-kit@0.2.3/node_modules/@eslint/plugin-kit/package.json", - "/node_modules/.pnpm/@eslint+plugin-kit@0.2.3/node_modules/@eslint/plugin-kit/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanfs/core@0.19.1", - "packagePath": "/node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/package.json", - "/node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanfs/node@0.16.6", - "packagePath": "/node_modules/.pnpm/@humanfs+node@0.16.6/node_modules/@humanfs/node", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@humanfs+node@0.16.6/node_modules/@humanfs/node/package.json", - "/node_modules/.pnpm/@humanfs+node@0.16.6/node_modules/@humanfs/node/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanwhocodes/module-importer@1.0.1", - "packagePath": "/node_modules/.pnpm/@humanwhocodes+module-importer@1.0.1/node_modules/@humanwhocodes/module-importer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@humanwhocodes+module-importer@1.0.1/node_modules/@humanwhocodes/module-importer/package.json", - "/node_modules/.pnpm/@humanwhocodes+module-importer@1.0.1/node_modules/@humanwhocodes/module-importer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanwhocodes/retry@0.3.1", - "packagePath": "/node_modules/.pnpm/@humanwhocodes+retry@0.3.1/node_modules/@humanwhocodes/retry", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@humanwhocodes+retry@0.3.1/node_modules/@humanwhocodes/retry/package.json", - "/node_modules/.pnpm/@humanwhocodes+retry@0.3.1/node_modules/@humanwhocodes/retry/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@humanwhocodes/retry@0.4.1", - "packagePath": "/node_modules/.pnpm/@humanwhocodes+retry@0.4.1/node_modules/@humanwhocodes/retry", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@humanwhocodes+retry@0.4.1/node_modules/@humanwhocodes/retry/package.json", - "/node_modules/.pnpm/@humanwhocodes+retry@0.4.1/node_modules/@humanwhocodes/retry/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@types/estree@1.0.6", - "packagePath": "/node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/package.json", - "/node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "@types/json-schema@7.0.15", - "packagePath": "/node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/package.json", - "/node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "accepts@2.0.0", - "packagePath": "/node_modules/.pnpm/accepts@2.0.0/node_modules/accepts", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/package.json", - "/node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "acorn@8.14.0", - "packagePath": "/node_modules/.pnpm/acorn@8.14.0/node_modules/acorn", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/package.json", - "/node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "acorn-jsx@5.3.2", - "packagePath": "/node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.14.0/node_modules/acorn-jsx", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.14.0/node_modules/acorn-jsx/package.json", - "/node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.14.0/node_modules/acorn-jsx/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ajv@6.12.6", - "packagePath": "/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/package.json", - "/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ansi-styles@4.3.0", - "packagePath": "/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/package.json", - "/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-buffer-byte-length@1.0.1", - "packagePath": "/node_modules/.pnpm/array-buffer-byte-length@1.0.1/node_modules/array-buffer-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/array-buffer-byte-length@1.0.1/node_modules/array-buffer-byte-length/package.json", - "/node_modules/.pnpm/array-buffer-byte-length@1.0.1/node_modules/array-buffer-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-flatten@3.0.0", - "packagePath": "/node_modules/.pnpm/array-flatten@3.0.0/node_modules/array-flatten", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/array-flatten@3.0.0/node_modules/array-flatten/package.json", - "/node_modules/.pnpm/array-flatten@3.0.0/node_modules/array-flatten/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-includes@3.1.8", - "packagePath": "/node_modules/.pnpm/array-includes@3.1.8/node_modules/array-includes", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/array-includes@3.1.8/node_modules/array-includes/package.json", - "/node_modules/.pnpm/array-includes@3.1.8/node_modules/array-includes/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.findlast@1.2.5", - "packagePath": "/node_modules/.pnpm/array.prototype.findlast@1.2.5/node_modules/array.prototype.findlast", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/array.prototype.findlast@1.2.5/node_modules/array.prototype.findlast/package.json", - "/node_modules/.pnpm/array.prototype.findlast@1.2.5/node_modules/array.prototype.findlast/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.flat@1.3.2", - "packagePath": "/node_modules/.pnpm/array.prototype.flat@1.3.2/node_modules/array.prototype.flat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/array.prototype.flat@1.3.2/node_modules/array.prototype.flat/package.json", - "/node_modules/.pnpm/array.prototype.flat@1.3.2/node_modules/array.prototype.flat/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.flatmap@1.3.2", - "packagePath": "/node_modules/.pnpm/array.prototype.flatmap@1.3.2/node_modules/array.prototype.flatmap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/array.prototype.flatmap@1.3.2/node_modules/array.prototype.flatmap/package.json", - "/node_modules/.pnpm/array.prototype.flatmap@1.3.2/node_modules/array.prototype.flatmap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.tosorted@1.1.4", - "packagePath": "/node_modules/.pnpm/array.prototype.tosorted@1.1.4/node_modules/array.prototype.tosorted", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/array.prototype.tosorted@1.1.4/node_modules/array.prototype.tosorted/package.json", - "/node_modules/.pnpm/array.prototype.tosorted@1.1.4/node_modules/array.prototype.tosorted/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "arraybuffer.prototype.slice@1.0.3", - "packagePath": "/node_modules/.pnpm/arraybuffer.prototype.slice@1.0.3/node_modules/arraybuffer.prototype.slice", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/arraybuffer.prototype.slice@1.0.3/node_modules/arraybuffer.prototype.slice/package.json", - "/node_modules/.pnpm/arraybuffer.prototype.slice@1.0.3/node_modules/arraybuffer.prototype.slice/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "available-typed-arrays@1.0.7", - "packagePath": "/node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays/package.json", - "/node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "balanced-match@1.0.2", - "packagePath": "/node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/package.json", - "/node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "body-parser@2.0.2", - "packagePath": "/node_modules/.pnpm/body-parser@2.0.2/node_modules/body-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/body-parser@2.0.2/node_modules/body-parser/package.json", - "/node_modules/.pnpm/body-parser@2.0.2/node_modules/body-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "brace-expansion@1.1.11", - "packagePath": "/node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/package.json", - "/node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "bytes@3.1.2", - "packagePath": "/node_modules/.pnpm/bytes@3.1.2/node_modules/bytes", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/bytes@3.1.2/node_modules/bytes/package.json", - "/node_modules/.pnpm/bytes@3.1.2/node_modules/bytes/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "call-bind@1.0.7", - "packagePath": "/node_modules/.pnpm/call-bind@1.0.7/node_modules/call-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/call-bind@1.0.7/node_modules/call-bind/package.json", - "/node_modules/.pnpm/call-bind@1.0.7/node_modules/call-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "callsites@3.1.0", - "packagePath": "/node_modules/.pnpm/callsites@3.1.0/node_modules/callsites", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/callsites@3.1.0/node_modules/callsites/package.json", - "/node_modules/.pnpm/callsites@3.1.0/node_modules/callsites/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "chalk@4.1.2", - "packagePath": "/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/package.json", - "/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "color-convert@2.0.1", - "packagePath": "/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/package.json", - "/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "color-name@1.1.4", - "packagePath": "/node_modules/.pnpm/color-name@1.1.4/node_modules/color-name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/package.json", - "/node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "concat-map@0.0.1", - "packagePath": "/node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/package.json", - "/node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-disposition@1.0.0", - "packagePath": "/node_modules/.pnpm/content-disposition@1.0.0/node_modules/content-disposition", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/content-disposition@1.0.0/node_modules/content-disposition/package.json", - "/node_modules/.pnpm/content-disposition@1.0.0/node_modules/content-disposition/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-type@1.0.5", - "packagePath": "/node_modules/.pnpm/content-type@1.0.5/node_modules/content-type", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/content-type@1.0.5/node_modules/content-type/package.json", - "/node_modules/.pnpm/content-type@1.0.5/node_modules/content-type/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cookie@0.7.1", - "packagePath": "/node_modules/.pnpm/cookie@0.7.1/node_modules/cookie", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/cookie@0.7.1/node_modules/cookie/package.json", - "/node_modules/.pnpm/cookie@0.7.1/node_modules/cookie/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cookie-signature@1.2.2", - "packagePath": "/node_modules/.pnpm/cookie-signature@1.2.2/node_modules/cookie-signature", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/cookie-signature@1.2.2/node_modules/cookie-signature/package.json", - "/node_modules/.pnpm/cookie-signature@1.2.2/node_modules/cookie-signature/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cross-spawn@7.0.6", - "packagePath": "/node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/package.json", - "/node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-buffer@1.0.1", - "packagePath": "/node_modules/.pnpm/data-view-buffer@1.0.1/node_modules/data-view-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/data-view-buffer@1.0.1/node_modules/data-view-buffer/package.json", - "/node_modules/.pnpm/data-view-buffer@1.0.1/node_modules/data-view-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-byte-length@1.0.1", - "packagePath": "/node_modules/.pnpm/data-view-byte-length@1.0.1/node_modules/data-view-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/data-view-byte-length@1.0.1/node_modules/data-view-byte-length/package.json", - "/node_modules/.pnpm/data-view-byte-length@1.0.1/node_modules/data-view-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-byte-offset@1.0.0", - "packagePath": "/node_modules/.pnpm/data-view-byte-offset@1.0.0/node_modules/data-view-byte-offset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/data-view-byte-offset@1.0.0/node_modules/data-view-byte-offset/package.json", - "/node_modules/.pnpm/data-view-byte-offset@1.0.0/node_modules/data-view-byte-offset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@3.1.0", - "packagePath": "/node_modules/.pnpm/debug@3.1.0/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/debug@3.1.0/node_modules/debug/package.json", - "/node_modules/.pnpm/debug@3.1.0/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@4.3.6", - "packagePath": "/node_modules/.pnpm/debug@4.3.6/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/debug@4.3.6/node_modules/debug/package.json", - "/node_modules/.pnpm/debug@4.3.6/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@2.6.9", - "packagePath": "/node_modules/.pnpm/debug@2.6.9/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/debug@2.6.9/node_modules/debug/package.json", - "/node_modules/.pnpm/debug@2.6.9/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@4.3.7", - "packagePath": "/node_modules/.pnpm/debug@4.3.7/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/debug@4.3.7/node_modules/debug/package.json", - "/node_modules/.pnpm/debug@4.3.7/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "deep-is@0.1.4", - "packagePath": "/node_modules/.pnpm/deep-is@0.1.4/node_modules/deep-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/deep-is@0.1.4/node_modules/deep-is/package.json", - "/node_modules/.pnpm/deep-is@0.1.4/node_modules/deep-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "define-data-property@1.1.4", - "packagePath": "/node_modules/.pnpm/define-data-property@1.1.4/node_modules/define-data-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/define-data-property@1.1.4/node_modules/define-data-property/package.json", - "/node_modules/.pnpm/define-data-property@1.1.4/node_modules/define-data-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "define-properties@1.2.1", - "packagePath": "/node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/package.json", - "/node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "depd@2.0.0", - "packagePath": "/node_modules/.pnpm/depd@2.0.0/node_modules/depd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/depd@2.0.0/node_modules/depd/package.json", - "/node_modules/.pnpm/depd@2.0.0/node_modules/depd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "destroy@1.2.0", - "packagePath": "/node_modules/.pnpm/destroy@1.2.0/node_modules/destroy", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/destroy@1.2.0/node_modules/destroy/package.json", - "/node_modules/.pnpm/destroy@1.2.0/node_modules/destroy/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "doctrine@2.1.0", - "packagePath": "/node_modules/.pnpm/doctrine@2.1.0/node_modules/doctrine", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/doctrine@2.1.0/node_modules/doctrine/package.json", - "/node_modules/.pnpm/doctrine@2.1.0/node_modules/doctrine/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ee-first@1.1.1", - "packagePath": "/node_modules/.pnpm/ee-first@1.1.1/node_modules/ee-first", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ee-first@1.1.1/node_modules/ee-first/package.json", - "/node_modules/.pnpm/ee-first@1.1.1/node_modules/ee-first/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "encodeurl@2.0.0", - "packagePath": "/node_modules/.pnpm/encodeurl@2.0.0/node_modules/encodeurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/encodeurl@2.0.0/node_modules/encodeurl/package.json", - "/node_modules/.pnpm/encodeurl@2.0.0/node_modules/encodeurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "encodeurl@1.0.2", - "packagePath": "/node_modules/.pnpm/encodeurl@1.0.2/node_modules/encodeurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/encodeurl@1.0.2/node_modules/encodeurl/package.json", - "/node_modules/.pnpm/encodeurl@1.0.2/node_modules/encodeurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-abstract@1.23.5", - "packagePath": "/node_modules/.pnpm/es-abstract@1.23.5/node_modules/es-abstract", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-abstract@1.23.5/node_modules/es-abstract/package.json", - "/node_modules/.pnpm/es-abstract@1.23.5/node_modules/es-abstract/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-define-property@1.0.0", - "packagePath": "/node_modules/.pnpm/es-define-property@1.0.0/node_modules/es-define-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-define-property@1.0.0/node_modules/es-define-property/package.json", - "/node_modules/.pnpm/es-define-property@1.0.0/node_modules/es-define-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-errors@1.3.0", - "packagePath": "/node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/package.json", - "/node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-iterator-helpers@1.2.0", - "packagePath": "/node_modules/.pnpm/es-iterator-helpers@1.2.0/node_modules/es-iterator-helpers", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-iterator-helpers@1.2.0/node_modules/es-iterator-helpers/package.json", - "/node_modules/.pnpm/es-iterator-helpers@1.2.0/node_modules/es-iterator-helpers/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-object-atoms@1.0.0", - "packagePath": "/node_modules/.pnpm/es-object-atoms@1.0.0/node_modules/es-object-atoms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-object-atoms@1.0.0/node_modules/es-object-atoms/package.json", - "/node_modules/.pnpm/es-object-atoms@1.0.0/node_modules/es-object-atoms/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-set-tostringtag@2.0.3", - "packagePath": "/node_modules/.pnpm/es-set-tostringtag@2.0.3/node_modules/es-set-tostringtag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-set-tostringtag@2.0.3/node_modules/es-set-tostringtag/package.json", - "/node_modules/.pnpm/es-set-tostringtag@2.0.3/node_modules/es-set-tostringtag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-shim-unscopables@1.0.2", - "packagePath": "/node_modules/.pnpm/es-shim-unscopables@1.0.2/node_modules/es-shim-unscopables", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-shim-unscopables@1.0.2/node_modules/es-shim-unscopables/package.json", - "/node_modules/.pnpm/es-shim-unscopables@1.0.2/node_modules/es-shim-unscopables/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-to-primitive@1.3.0", - "packagePath": "/node_modules/.pnpm/es-to-primitive@1.3.0/node_modules/es-to-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/es-to-primitive@1.3.0/node_modules/es-to-primitive/package.json", - "/node_modules/.pnpm/es-to-primitive@1.3.0/node_modules/es-to-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "escape-html@1.0.3", - "packagePath": "/node_modules/.pnpm/escape-html@1.0.3/node_modules/escape-html", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/escape-html@1.0.3/node_modules/escape-html/package.json", - "/node_modules/.pnpm/escape-html@1.0.3/node_modules/escape-html/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "escape-string-regexp@4.0.0", - "packagePath": "/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/package.json", - "/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint@9.16.0", - "packagePath": "/node_modules/.pnpm/eslint@9.16.0/node_modules/eslint", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/eslint@9.16.0/node_modules/eslint/package.json", - "/node_modules/.pnpm/eslint@9.16.0/node_modules/eslint/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-plugin-react@7.37.2", - "packagePath": "/node_modules/.pnpm/eslint-plugin-react@7.37.2_eslint@9.16.0/node_modules/eslint-plugin-react", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/eslint-plugin-react@7.37.2_eslint@9.16.0/node_modules/eslint-plugin-react/package.json", - "/node_modules/.pnpm/eslint-plugin-react@7.37.2_eslint@9.16.0/node_modules/eslint-plugin-react/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-scope@8.2.0", - "packagePath": "/node_modules/.pnpm/eslint-scope@8.2.0/node_modules/eslint-scope", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/eslint-scope@8.2.0/node_modules/eslint-scope/package.json", - "/node_modules/.pnpm/eslint-scope@8.2.0/node_modules/eslint-scope/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-visitor-keys@3.4.3", - "packagePath": "/node_modules/.pnpm/eslint-visitor-keys@3.4.3/node_modules/eslint-visitor-keys", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/eslint-visitor-keys@3.4.3/node_modules/eslint-visitor-keys/package.json", - "/node_modules/.pnpm/eslint-visitor-keys@3.4.3/node_modules/eslint-visitor-keys/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-visitor-keys@4.2.0", - "packagePath": "/node_modules/.pnpm/eslint-visitor-keys@4.2.0/node_modules/eslint-visitor-keys", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/eslint-visitor-keys@4.2.0/node_modules/eslint-visitor-keys/package.json", - "/node_modules/.pnpm/eslint-visitor-keys@4.2.0/node_modules/eslint-visitor-keys/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "espree@10.3.0", - "packagePath": "/node_modules/.pnpm/espree@10.3.0/node_modules/espree", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/espree@10.3.0/node_modules/espree/package.json", - "/node_modules/.pnpm/espree@10.3.0/node_modules/espree/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "esquery@1.6.0", - "packagePath": "/node_modules/.pnpm/esquery@1.6.0/node_modules/esquery", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/esquery@1.6.0/node_modules/esquery/package.json", - "/node_modules/.pnpm/esquery@1.6.0/node_modules/esquery/license.txt" - ], - "verificationStatus": "ok" - }, - { - "packageName": "esrecurse@4.3.0", - "packagePath": "/node_modules/.pnpm/esrecurse@4.3.0/node_modules/esrecurse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/.pnpm/esrecurse@4.3.0/node_modules/esrecurse/package.json", - "/node_modules/.pnpm/esrecurse@4.3.0/node_modules/esrecurse" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "estraverse@5.3.0", - "packagePath": "/node_modules/.pnpm/estraverse@5.3.0/node_modules/estraverse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/.pnpm/estraverse@5.3.0/node_modules/estraverse/package.json", - "/node_modules/.pnpm/estraverse@5.3.0/node_modules/estraverse" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "esutils@2.0.3", - "packagePath": "/node_modules/.pnpm/esutils@2.0.3/node_modules/esutils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/.pnpm/esutils@2.0.3/node_modules/esutils/package.json", - "/node_modules/.pnpm/esutils@2.0.3/node_modules/esutils" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "etag@1.8.1", - "packagePath": "/node_modules/.pnpm/etag@1.8.1/node_modules/etag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/etag@1.8.1/node_modules/etag/package.json", - "/node_modules/.pnpm/etag@1.8.1/node_modules/etag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "express@5.0.1", - "packagePath": "/node_modules/.pnpm/express@5.0.1/node_modules/express", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/express@5.0.1/node_modules/express/package.json", - "/node_modules/.pnpm/express@5.0.1/node_modules/express/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fast-deep-equal@3.1.3", - "packagePath": "/node_modules/.pnpm/fast-deep-equal@3.1.3/node_modules/fast-deep-equal", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/package.json", - "/node_modules/.pnpm/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fast-json-stable-stringify@2.1.0", - "packagePath": "/node_modules/.pnpm/fast-json-stable-stringify@2.1.0/node_modules/fast-json-stable-stringify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/fast-json-stable-stringify@2.1.0/node_modules/fast-json-stable-stringify/package.json", - "/node_modules/.pnpm/fast-json-stable-stringify@2.1.0/node_modules/fast-json-stable-stringify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fast-levenshtein@2.0.6", - "packagePath": "/node_modules/.pnpm/fast-levenshtein@2.0.6/node_modules/fast-levenshtein", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/fast-levenshtein@2.0.6/node_modules/fast-levenshtein/package.json", - "/node_modules/.pnpm/fast-levenshtein@2.0.6/node_modules/fast-levenshtein/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "file-entry-cache@8.0.0", - "packagePath": "/node_modules/.pnpm/file-entry-cache@8.0.0/node_modules/file-entry-cache", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/file-entry-cache@8.0.0/node_modules/file-entry-cache/package.json", - "/node_modules/.pnpm/file-entry-cache@8.0.0/node_modules/file-entry-cache/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "finalhandler@2.0.0", - "packagePath": "/node_modules/.pnpm/finalhandler@2.0.0/node_modules/finalhandler", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/finalhandler@2.0.0/node_modules/finalhandler/package.json", - "/node_modules/.pnpm/finalhandler@2.0.0/node_modules/finalhandler/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "find-up@5.0.0", - "packagePath": "/node_modules/.pnpm/find-up@5.0.0/node_modules/find-up", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/find-up@5.0.0/node_modules/find-up/package.json", - "/node_modules/.pnpm/find-up@5.0.0/node_modules/find-up/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "flat-cache@4.0.1", - "packagePath": "/node_modules/.pnpm/flat-cache@4.0.1/node_modules/flat-cache", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/flat-cache@4.0.1/node_modules/flat-cache/package.json", - "/node_modules/.pnpm/flat-cache@4.0.1/node_modules/flat-cache/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "flatted@3.3.2", - "packagePath": "/node_modules/.pnpm/flatted@3.3.2/node_modules/flatted", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/flatted@3.3.2/node_modules/flatted/package.json", - "/node_modules/.pnpm/flatted@3.3.2/node_modules/flatted/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "for-each@0.3.3", - "packagePath": "/node_modules/.pnpm/for-each@0.3.3/node_modules/for-each", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/package.json", - "/node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "forwarded@0.2.0", - "packagePath": "/node_modules/.pnpm/forwarded@0.2.0/node_modules/forwarded", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/forwarded@0.2.0/node_modules/forwarded/package.json", - "/node_modules/.pnpm/forwarded@0.2.0/node_modules/forwarded/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fresh@2.0.0", - "packagePath": "/node_modules/.pnpm/fresh@2.0.0/node_modules/fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/fresh@2.0.0/node_modules/fresh/package.json", - "/node_modules/.pnpm/fresh@2.0.0/node_modules/fresh/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fresh@0.5.2", - "packagePath": "/node_modules/.pnpm/fresh@0.5.2/node_modules/fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/fresh@0.5.2/node_modules/fresh/package.json", - "/node_modules/.pnpm/fresh@0.5.2/node_modules/fresh/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "function-bind@1.1.2", - "packagePath": "/node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/package.json", - "/node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "function.prototype.name@1.1.6", - "packagePath": "/node_modules/.pnpm/function.prototype.name@1.1.6/node_modules/function.prototype.name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/function.prototype.name@1.1.6/node_modules/function.prototype.name/package.json", - "/node_modules/.pnpm/function.prototype.name@1.1.6/node_modules/function.prototype.name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "functions-have-names@1.2.3", - "packagePath": "/node_modules/.pnpm/functions-have-names@1.2.3/node_modules/functions-have-names", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/functions-have-names@1.2.3/node_modules/functions-have-names/package.json", - "/node_modules/.pnpm/functions-have-names@1.2.3/node_modules/functions-have-names/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "get-intrinsic@1.2.4", - "packagePath": "/node_modules/.pnpm/get-intrinsic@1.2.4/node_modules/get-intrinsic", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/get-intrinsic@1.2.4/node_modules/get-intrinsic/package.json", - "/node_modules/.pnpm/get-intrinsic@1.2.4/node_modules/get-intrinsic/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "get-symbol-description@1.0.2", - "packagePath": "/node_modules/.pnpm/get-symbol-description@1.0.2/node_modules/get-symbol-description", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/get-symbol-description@1.0.2/node_modules/get-symbol-description/package.json", - "/node_modules/.pnpm/get-symbol-description@1.0.2/node_modules/get-symbol-description/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "glob-parent@6.0.2", - "packagePath": "/node_modules/.pnpm/glob-parent@6.0.2/node_modules/glob-parent", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content-keywords" - } - ], - "licensePath": [ - "/node_modules/.pnpm/glob-parent@6.0.2/node_modules/glob-parent/package.json", - "/node_modules/.pnpm/glob-parent@6.0.2/node_modules/glob-parent/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "globals@14.0.0", - "packagePath": "/node_modules/.pnpm/globals@14.0.0/node_modules/globals", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/globals@14.0.0/node_modules/globals/package.json", - "/node_modules/.pnpm/globals@14.0.0/node_modules/globals/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "globalthis@1.0.4", - "packagePath": "/node_modules/.pnpm/globalthis@1.0.4/node_modules/globalthis", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/globalthis@1.0.4/node_modules/globalthis/package.json", - "/node_modules/.pnpm/globalthis@1.0.4/node_modules/globalthis/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "gopd@1.1.0", - "packagePath": "/node_modules/.pnpm/gopd@1.1.0/node_modules/gopd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/gopd@1.1.0/node_modules/gopd/package.json", - "/node_modules/.pnpm/gopd@1.1.0/node_modules/gopd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-bigints@1.0.2", - "packagePath": "/node_modules/.pnpm/has-bigints@1.0.2/node_modules/has-bigints", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/has-bigints@1.0.2/node_modules/has-bigints/package.json", - "/node_modules/.pnpm/has-bigints@1.0.2/node_modules/has-bigints/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-flag@4.0.0", - "packagePath": "/node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/package.json", - "/node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-property-descriptors@1.0.2", - "packagePath": "/node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors/package.json", - "/node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-proto@1.1.0", - "packagePath": "/node_modules/.pnpm/has-proto@1.1.0/node_modules/has-proto", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/has-proto@1.1.0/node_modules/has-proto/package.json", - "/node_modules/.pnpm/has-proto@1.1.0/node_modules/has-proto/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-symbols@1.1.0", - "packagePath": "/node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/package.json", - "/node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-tostringtag@1.0.2", - "packagePath": "/node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/package.json", - "/node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "hasown@2.0.2", - "packagePath": "/node_modules/.pnpm/hasown@2.0.2/node_modules/hasown", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/package.json", - "/node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "http-errors@2.0.0", - "packagePath": "/node_modules/.pnpm/http-errors@2.0.0/node_modules/http-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/http-errors@2.0.0/node_modules/http-errors/package.json", - "/node_modules/.pnpm/http-errors@2.0.0/node_modules/http-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iconv-lite@0.5.2", - "packagePath": "/node_modules/.pnpm/iconv-lite@0.5.2/node_modules/iconv-lite", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/iconv-lite@0.5.2/node_modules/iconv-lite/package.json", - "/node_modules/.pnpm/iconv-lite@0.5.2/node_modules/iconv-lite/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iconv-lite@0.6.3", - "packagePath": "/node_modules/.pnpm/iconv-lite@0.6.3/node_modules/iconv-lite", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/iconv-lite@0.6.3/node_modules/iconv-lite/package.json", - "/node_modules/.pnpm/iconv-lite@0.6.3/node_modules/iconv-lite/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ignore@5.3.2", - "packagePath": "/node_modules/.pnpm/ignore@5.3.2/node_modules/ignore", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ignore@5.3.2/node_modules/ignore/package.json", - "/node_modules/.pnpm/ignore@5.3.2/node_modules/ignore/LICENSE-MIT" - ], - "verificationStatus": "ok" - }, - { - "packageName": "import-fresh@3.3.0", - "packagePath": "/node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh/package.json", - "/node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "imurmurhash@0.1.4", - "packagePath": "/node_modules/.pnpm/imurmurhash@0.1.4/node_modules/imurmurhash", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/.pnpm/imurmurhash@0.1.4/node_modules/imurmurhash/package.json", - "/node_modules/.pnpm/imurmurhash@0.1.4/node_modules/imurmurhash" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "inherits@2.0.4", - "packagePath": "/node_modules/.pnpm/inherits@2.0.4/node_modules/inherits", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/package.json", - "/node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "internal-slot@1.0.7", - "packagePath": "/node_modules/.pnpm/internal-slot@1.0.7/node_modules/internal-slot", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/internal-slot@1.0.7/node_modules/internal-slot/package.json", - "/node_modules/.pnpm/internal-slot@1.0.7/node_modules/internal-slot/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ipaddr.js@1.9.1", - "packagePath": "/node_modules/.pnpm/ipaddr.js@1.9.1/node_modules/ipaddr.js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ipaddr.js@1.9.1/node_modules/ipaddr.js/package.json", - "/node_modules/.pnpm/ipaddr.js@1.9.1/node_modules/ipaddr.js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-array-buffer@3.0.4", - "packagePath": "/node_modules/.pnpm/is-array-buffer@3.0.4/node_modules/is-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-array-buffer@3.0.4/node_modules/is-array-buffer/package.json", - "/node_modules/.pnpm/is-array-buffer@3.0.4/node_modules/is-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-async-function@2.0.0", - "packagePath": "/node_modules/.pnpm/is-async-function@2.0.0/node_modules/is-async-function", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-async-function@2.0.0/node_modules/is-async-function/package.json", - "/node_modules/.pnpm/is-async-function@2.0.0/node_modules/is-async-function/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-bigint@1.1.0", - "packagePath": "/node_modules/.pnpm/is-bigint@1.1.0/node_modules/is-bigint", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-bigint@1.1.0/node_modules/is-bigint/package.json", - "/node_modules/.pnpm/is-bigint@1.1.0/node_modules/is-bigint/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-boolean-object@1.2.0", - "packagePath": "/node_modules/.pnpm/is-boolean-object@1.2.0/node_modules/is-boolean-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-boolean-object@1.2.0/node_modules/is-boolean-object/package.json", - "/node_modules/.pnpm/is-boolean-object@1.2.0/node_modules/is-boolean-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-callable@1.2.7", - "packagePath": "/node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/package.json", - "/node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-core-module@2.15.1", - "packagePath": "/node_modules/.pnpm/is-core-module@2.15.1/node_modules/is-core-module", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-core-module@2.15.1/node_modules/is-core-module/package.json", - "/node_modules/.pnpm/is-core-module@2.15.1/node_modules/is-core-module/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-data-view@1.0.1", - "packagePath": "/node_modules/.pnpm/is-data-view@1.0.1/node_modules/is-data-view", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-data-view@1.0.1/node_modules/is-data-view/package.json", - "/node_modules/.pnpm/is-data-view@1.0.1/node_modules/is-data-view/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-date-object@1.0.5", - "packagePath": "/node_modules/.pnpm/is-date-object@1.0.5/node_modules/is-date-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-date-object@1.0.5/node_modules/is-date-object/package.json", - "/node_modules/.pnpm/is-date-object@1.0.5/node_modules/is-date-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-extglob@2.1.1", - "packagePath": "/node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/package.json", - "/node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-finalizationregistry@1.1.0", - "packagePath": "/node_modules/.pnpm/is-finalizationregistry@1.1.0/node_modules/is-finalizationregistry", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-finalizationregistry@1.1.0/node_modules/is-finalizationregistry/package.json", - "/node_modules/.pnpm/is-finalizationregistry@1.1.0/node_modules/is-finalizationregistry/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-generator-function@1.0.10", - "packagePath": "/node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/package.json", - "/node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-glob@4.0.3", - "packagePath": "/node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/package.json", - "/node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-map@2.0.3", - "packagePath": "/node_modules/.pnpm/is-map@2.0.3/node_modules/is-map", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-map@2.0.3/node_modules/is-map/package.json", - "/node_modules/.pnpm/is-map@2.0.3/node_modules/is-map/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-negative-zero@2.0.3", - "packagePath": "/node_modules/.pnpm/is-negative-zero@2.0.3/node_modules/is-negative-zero", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-negative-zero@2.0.3/node_modules/is-negative-zero/package.json", - "/node_modules/.pnpm/is-negative-zero@2.0.3/node_modules/is-negative-zero/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-number-object@1.1.0", - "packagePath": "/node_modules/.pnpm/is-number-object@1.1.0/node_modules/is-number-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-number-object@1.1.0/node_modules/is-number-object/package.json", - "/node_modules/.pnpm/is-number-object@1.1.0/node_modules/is-number-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-promise@4.0.0", - "packagePath": "/node_modules/.pnpm/is-promise@4.0.0/node_modules/is-promise", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-promise@4.0.0/node_modules/is-promise/package.json", - "/node_modules/.pnpm/is-promise@4.0.0/node_modules/is-promise/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-regex@1.2.0", - "packagePath": "/node_modules/.pnpm/is-regex@1.2.0/node_modules/is-regex", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-regex@1.2.0/node_modules/is-regex/package.json", - "/node_modules/.pnpm/is-regex@1.2.0/node_modules/is-regex/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-set@2.0.3", - "packagePath": "/node_modules/.pnpm/is-set@2.0.3/node_modules/is-set", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-set@2.0.3/node_modules/is-set/package.json", - "/node_modules/.pnpm/is-set@2.0.3/node_modules/is-set/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-shared-array-buffer@1.0.3", - "packagePath": "/node_modules/.pnpm/is-shared-array-buffer@1.0.3/node_modules/is-shared-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-shared-array-buffer@1.0.3/node_modules/is-shared-array-buffer/package.json", - "/node_modules/.pnpm/is-shared-array-buffer@1.0.3/node_modules/is-shared-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-string@1.1.0", - "packagePath": "/node_modules/.pnpm/is-string@1.1.0/node_modules/is-string", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-string@1.1.0/node_modules/is-string/package.json", - "/node_modules/.pnpm/is-string@1.1.0/node_modules/is-string/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-symbol@1.1.0", - "packagePath": "/node_modules/.pnpm/is-symbol@1.1.0/node_modules/is-symbol", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-symbol@1.1.0/node_modules/is-symbol/package.json", - "/node_modules/.pnpm/is-symbol@1.1.0/node_modules/is-symbol/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-typed-array@1.1.13", - "packagePath": "/node_modules/.pnpm/is-typed-array@1.1.13/node_modules/is-typed-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-typed-array@1.1.13/node_modules/is-typed-array/package.json", - "/node_modules/.pnpm/is-typed-array@1.1.13/node_modules/is-typed-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakmap@2.0.2", - "packagePath": "/node_modules/.pnpm/is-weakmap@2.0.2/node_modules/is-weakmap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-weakmap@2.0.2/node_modules/is-weakmap/package.json", - "/node_modules/.pnpm/is-weakmap@2.0.2/node_modules/is-weakmap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakref@1.0.2", - "packagePath": "/node_modules/.pnpm/is-weakref@1.0.2/node_modules/is-weakref", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-weakref@1.0.2/node_modules/is-weakref/package.json", - "/node_modules/.pnpm/is-weakref@1.0.2/node_modules/is-weakref/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakset@2.0.3", - "packagePath": "/node_modules/.pnpm/is-weakset@2.0.3/node_modules/is-weakset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/is-weakset@2.0.3/node_modules/is-weakset/package.json", - "/node_modules/.pnpm/is-weakset@2.0.3/node_modules/is-weakset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "isarray@2.0.5", - "packagePath": "/node_modules/.pnpm/isarray@2.0.5/node_modules/isarray", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/isarray@2.0.5/node_modules/isarray/package.json", - "/node_modules/.pnpm/isarray@2.0.5/node_modules/isarray/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "isexe@2.0.0", - "packagePath": "/node_modules/.pnpm/isexe@2.0.0/node_modules/isexe", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/package.json", - "/node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iterator.prototype@1.1.3", - "packagePath": "/node_modules/.pnpm/iterator.prototype@1.1.3/node_modules/iterator.prototype", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/iterator.prototype@1.1.3/node_modules/iterator.prototype/package.json", - "/node_modules/.pnpm/iterator.prototype@1.1.3/node_modules/iterator.prototype/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "js-tokens@4.0.0", - "packagePath": "/node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens/package.json", - "/node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "js-yaml@4.1.0", - "packagePath": "/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/package.json", - "/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "json-buffer@3.0.1", - "packagePath": "/node_modules/.pnpm/json-buffer@3.0.1/node_modules/json-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/json-buffer@3.0.1/node_modules/json-buffer/package.json", - "/node_modules/.pnpm/json-buffer@3.0.1/node_modules/json-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "json-schema-traverse@0.4.1", - "packagePath": "/node_modules/.pnpm/json-schema-traverse@0.4.1/node_modules/json-schema-traverse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/json-schema-traverse@0.4.1/node_modules/json-schema-traverse/package.json", - "/node_modules/.pnpm/json-schema-traverse@0.4.1/node_modules/json-schema-traverse/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "json-stable-stringify-without-jsonify@1.0.1", - "packagePath": "/node_modules/.pnpm/json-stable-stringify-without-jsonify@1.0.1/node_modules/json-stable-stringify-without-jsonify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/json-stable-stringify-without-jsonify@1.0.1/node_modules/json-stable-stringify-without-jsonify/package.json", - "/node_modules/.pnpm/json-stable-stringify-without-jsonify@1.0.1/node_modules/json-stable-stringify-without-jsonify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "jsx-ast-utils@3.3.5", - "packagePath": "/node_modules/.pnpm/jsx-ast-utils@3.3.5/node_modules/jsx-ast-utils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/jsx-ast-utils@3.3.5/node_modules/jsx-ast-utils/package.json", - "/node_modules/.pnpm/jsx-ast-utils@3.3.5/node_modules/jsx-ast-utils/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "keyv@4.5.4", - "packagePath": "/node_modules/.pnpm/keyv@4.5.4/node_modules/keyv", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/.pnpm/keyv@4.5.4/node_modules/keyv/package.json", - "/node_modules/.pnpm/keyv@4.5.4/node_modules/keyv" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "levn@0.4.1", - "packagePath": "/node_modules/.pnpm/levn@0.4.1/node_modules/levn", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/levn@0.4.1/node_modules/levn/package.json", - "/node_modules/.pnpm/levn@0.4.1/node_modules/levn/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "locate-path@6.0.0", - "packagePath": "/node_modules/.pnpm/locate-path@6.0.0/node_modules/locate-path", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/locate-path@6.0.0/node_modules/locate-path/package.json", - "/node_modules/.pnpm/locate-path@6.0.0/node_modules/locate-path/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "loose-envify@1.4.0", - "packagePath": "/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify/package.json", - "/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "media-typer@0.3.0", - "packagePath": "/node_modules/.pnpm/media-typer@0.3.0/node_modules/media-typer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/media-typer@0.3.0/node_modules/media-typer/package.json", - "/node_modules/.pnpm/media-typer@0.3.0/node_modules/media-typer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "media-typer@1.1.0", - "packagePath": "/node_modules/.pnpm/media-typer@1.1.0/node_modules/media-typer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/media-typer@1.1.0/node_modules/media-typer/package.json", - "/node_modules/.pnpm/media-typer@1.1.0/node_modules/media-typer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "merge-descriptors@2.0.0", - "packagePath": "/node_modules/.pnpm/merge-descriptors@2.0.0/node_modules/merge-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/merge-descriptors@2.0.0/node_modules/merge-descriptors/package.json", - "/node_modules/.pnpm/merge-descriptors@2.0.0/node_modules/merge-descriptors/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "methods@1.1.2", - "packagePath": "/node_modules/.pnpm/methods@1.1.2/node_modules/methods", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/methods@1.1.2/node_modules/methods/package.json", - "/node_modules/.pnpm/methods@1.1.2/node_modules/methods/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-db@1.53.0", - "packagePath": "/node_modules/.pnpm/mime-db@1.53.0/node_modules/mime-db", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/mime-db@1.53.0/node_modules/mime-db/package.json", - "/node_modules/.pnpm/mime-db@1.53.0/node_modules/mime-db/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-db@1.52.0", - "packagePath": "/node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db/package.json", - "/node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-types@3.0.0", - "packagePath": "/node_modules/.pnpm/mime-types@3.0.0/node_modules/mime-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/mime-types@3.0.0/node_modules/mime-types/package.json", - "/node_modules/.pnpm/mime-types@3.0.0/node_modules/mime-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-types@2.1.35", - "packagePath": "/node_modules/.pnpm/mime-types@2.1.35/node_modules/mime-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/mime-types@2.1.35/node_modules/mime-types/package.json", - "/node_modules/.pnpm/mime-types@2.1.35/node_modules/mime-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "minimatch@3.1.2", - "packagePath": "/node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/package.json", - "/node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.0.0", - "packagePath": "/node_modules/.pnpm/ms@2.0.0/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ms@2.0.0/node_modules/ms/package.json", - "/node_modules/.pnpm/ms@2.0.0/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.1.2", - "packagePath": "/node_modules/.pnpm/ms@2.1.2/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ms@2.1.2/node_modules/ms/package.json", - "/node_modules/.pnpm/ms@2.1.2/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.1.3", - "packagePath": "/node_modules/.pnpm/ms@2.1.3/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/ms@2.1.3/node_modules/ms/package.json", - "/node_modules/.pnpm/ms@2.1.3/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "natural-compare@1.4.0", - "packagePath": "/node_modules/.pnpm/natural-compare@1.4.0/node_modules/natural-compare", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/.pnpm/natural-compare@1.4.0/node_modules/natural-compare/package.json", - "/node_modules/.pnpm/natural-compare@1.4.0/node_modules/natural-compare" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "negotiator@1.0.0", - "packagePath": "/node_modules/.pnpm/negotiator@1.0.0/node_modules/negotiator", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/negotiator@1.0.0/node_modules/negotiator/package.json", - "/node_modules/.pnpm/negotiator@1.0.0/node_modules/negotiator/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-assign@4.1.1", - "packagePath": "/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/package.json", - "/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-inspect@1.13.3", - "packagePath": "/node_modules/.pnpm/object-inspect@1.13.3/node_modules/object-inspect", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/object-inspect@1.13.3/node_modules/object-inspect/package.json", - "/node_modules/.pnpm/object-inspect@1.13.3/node_modules/object-inspect/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-keys@1.1.1", - "packagePath": "/node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/package.json", - "/node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.assign@4.1.5", - "packagePath": "/node_modules/.pnpm/object.assign@4.1.5/node_modules/object.assign", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/object.assign@4.1.5/node_modules/object.assign/package.json", - "/node_modules/.pnpm/object.assign@4.1.5/node_modules/object.assign/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.entries@1.1.8", - "packagePath": "/node_modules/.pnpm/object.entries@1.1.8/node_modules/object.entries", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/object.entries@1.1.8/node_modules/object.entries/package.json", - "/node_modules/.pnpm/object.entries@1.1.8/node_modules/object.entries/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.fromentries@2.0.8", - "packagePath": "/node_modules/.pnpm/object.fromentries@2.0.8/node_modules/object.fromentries", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/object.fromentries@2.0.8/node_modules/object.fromentries/package.json", - "/node_modules/.pnpm/object.fromentries@2.0.8/node_modules/object.fromentries/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.values@1.2.0", - "packagePath": "/node_modules/.pnpm/object.values@1.2.0/node_modules/object.values", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/object.values@1.2.0/node_modules/object.values/package.json", - "/node_modules/.pnpm/object.values@1.2.0/node_modules/object.values/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "on-finished@2.4.1", - "packagePath": "/node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished/package.json", - "/node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "once@1.4.0", - "packagePath": "/node_modules/.pnpm/once@1.4.0/node_modules/once", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/once@1.4.0/node_modules/once/package.json", - "/node_modules/.pnpm/once@1.4.0/node_modules/once/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "optionator@0.9.4", - "packagePath": "/node_modules/.pnpm/optionator@0.9.4/node_modules/optionator", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/optionator@0.9.4/node_modules/optionator/package.json", - "/node_modules/.pnpm/optionator@0.9.4/node_modules/optionator/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "p-limit@3.1.0", - "packagePath": "/node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/package.json", - "/node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "p-locate@5.0.0", - "packagePath": "/node_modules/.pnpm/p-locate@5.0.0/node_modules/p-locate", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/p-locate@5.0.0/node_modules/p-locate/package.json", - "/node_modules/.pnpm/p-locate@5.0.0/node_modules/p-locate/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "parent-module@1.0.1", - "packagePath": "/node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module/package.json", - "/node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "parseurl@1.3.3", - "packagePath": "/node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl/package.json", - "/node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-exists@4.0.0", - "packagePath": "/node_modules/.pnpm/path-exists@4.0.0/node_modules/path-exists", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/path-exists@4.0.0/node_modules/path-exists/package.json", - "/node_modules/.pnpm/path-exists@4.0.0/node_modules/path-exists/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-key@3.1.1", - "packagePath": "/node_modules/.pnpm/path-key@3.1.1/node_modules/path-key", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/path-key@3.1.1/node_modules/path-key/package.json", - "/node_modules/.pnpm/path-key@3.1.1/node_modules/path-key/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-parse@1.0.7", - "packagePath": "/node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/package.json", - "/node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-to-regexp@8.2.0", - "packagePath": "/node_modules/.pnpm/path-to-regexp@8.2.0/node_modules/path-to-regexp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/path-to-regexp@8.2.0/node_modules/path-to-regexp/package.json", - "/node_modules/.pnpm/path-to-regexp@8.2.0/node_modules/path-to-regexp/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "possible-typed-array-names@1.0.0", - "packagePath": "/node_modules/.pnpm/possible-typed-array-names@1.0.0/node_modules/possible-typed-array-names", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/possible-typed-array-names@1.0.0/node_modules/possible-typed-array-names/package.json", - "/node_modules/.pnpm/possible-typed-array-names@1.0.0/node_modules/possible-typed-array-names/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "prelude-ls@1.2.1", - "packagePath": "/node_modules/.pnpm/prelude-ls@1.2.1/node_modules/prelude-ls", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/prelude-ls@1.2.1/node_modules/prelude-ls/package.json", - "/node_modules/.pnpm/prelude-ls@1.2.1/node_modules/prelude-ls/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "prop-types@15.8.1", - "packagePath": "/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/package.json", - "/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "proxy-addr@2.0.7", - "packagePath": "/node_modules/.pnpm/proxy-addr@2.0.7/node_modules/proxy-addr", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/proxy-addr@2.0.7/node_modules/proxy-addr/package.json", - "/node_modules/.pnpm/proxy-addr@2.0.7/node_modules/proxy-addr/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "punycode@2.3.1", - "packagePath": "/node_modules/.pnpm/punycode@2.3.1/node_modules/punycode", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/punycode@2.3.1/node_modules/punycode/package.json", - "/node_modules/.pnpm/punycode@2.3.1/node_modules/punycode/LICENSE-MIT.txt" - ], - "verificationStatus": "ok" - }, - { - "packageName": "qs@6.13.0", - "packagePath": "/node_modules/.pnpm/qs@6.13.0/node_modules/qs", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/qs@6.13.0/node_modules/qs/package.json", - "/node_modules/.pnpm/qs@6.13.0/node_modules/qs/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "range-parser@1.2.1", - "packagePath": "/node_modules/.pnpm/range-parser@1.2.1/node_modules/range-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/range-parser@1.2.1/node_modules/range-parser/package.json", - "/node_modules/.pnpm/range-parser@1.2.1/node_modules/range-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "raw-body@3.0.0", - "packagePath": "/node_modules/.pnpm/raw-body@3.0.0/node_modules/raw-body", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/raw-body@3.0.0/node_modules/raw-body/package.json", - "/node_modules/.pnpm/raw-body@3.0.0/node_modules/raw-body/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "react-is@16.13.1", - "packagePath": "/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/package.json", - "/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "reflect.getprototypeof@1.0.7", - "packagePath": "/node_modules/.pnpm/reflect.getprototypeof@1.0.7/node_modules/reflect.getprototypeof", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/reflect.getprototypeof@1.0.7/node_modules/reflect.getprototypeof/package.json", - "/node_modules/.pnpm/reflect.getprototypeof@1.0.7/node_modules/reflect.getprototypeof/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "regexp.prototype.flags@1.5.3", - "packagePath": "/node_modules/.pnpm/regexp.prototype.flags@1.5.3/node_modules/regexp.prototype.flags", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/regexp.prototype.flags@1.5.3/node_modules/regexp.prototype.flags/package.json", - "/node_modules/.pnpm/regexp.prototype.flags@1.5.3/node_modules/regexp.prototype.flags/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "resolve@2.0.0-next.5", - "packagePath": "/node_modules/.pnpm/resolve@2.0.0-next.5/node_modules/resolve", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/resolve@2.0.0-next.5/node_modules/resolve/package.json", - "/node_modules/.pnpm/resolve@2.0.0-next.5/node_modules/resolve/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "resolve-from@4.0.0", - "packagePath": "/node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from/package.json", - "/node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "router@2.0.0", - "packagePath": "/node_modules/.pnpm/router@2.0.0/node_modules/router", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/router@2.0.0/node_modules/router/package.json", - "/node_modules/.pnpm/router@2.0.0/node_modules/router/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-array-concat@1.1.2", - "packagePath": "/node_modules/.pnpm/safe-array-concat@1.1.2/node_modules/safe-array-concat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/safe-array-concat@1.1.2/node_modules/safe-array-concat/package.json", - "/node_modules/.pnpm/safe-array-concat@1.1.2/node_modules/safe-array-concat/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-buffer@5.2.1", - "packagePath": "/node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/package.json", - "/node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-regex-test@1.0.3", - "packagePath": "/node_modules/.pnpm/safe-regex-test@1.0.3/node_modules/safe-regex-test", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/safe-regex-test@1.0.3/node_modules/safe-regex-test/package.json", - "/node_modules/.pnpm/safe-regex-test@1.0.3/node_modules/safe-regex-test/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safer-buffer@2.1.2", - "packagePath": "/node_modules/.pnpm/safer-buffer@2.1.2/node_modules/safer-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/safer-buffer@2.1.2/node_modules/safer-buffer/package.json", - "/node_modules/.pnpm/safer-buffer@2.1.2/node_modules/safer-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "semver@6.3.1", - "packagePath": "/node_modules/.pnpm/semver@6.3.1/node_modules/semver", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/semver@6.3.1/node_modules/semver/package.json", - "/node_modules/.pnpm/semver@6.3.1/node_modules/semver/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "send@1.1.0", - "packagePath": "/node_modules/.pnpm/send@1.1.0/node_modules/send", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/send@1.1.0/node_modules/send/package.json", - "/node_modules/.pnpm/send@1.1.0/node_modules/send/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "serve-static@2.1.0", - "packagePath": "/node_modules/.pnpm/serve-static@2.1.0/node_modules/serve-static", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/serve-static@2.1.0/node_modules/serve-static/package.json", - "/node_modules/.pnpm/serve-static@2.1.0/node_modules/serve-static/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "set-function-length@1.2.2", - "packagePath": "/node_modules/.pnpm/set-function-length@1.2.2/node_modules/set-function-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/set-function-length@1.2.2/node_modules/set-function-length/package.json", - "/node_modules/.pnpm/set-function-length@1.2.2/node_modules/set-function-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "set-function-name@2.0.2", - "packagePath": "/node_modules/.pnpm/set-function-name@2.0.2/node_modules/set-function-name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/set-function-name@2.0.2/node_modules/set-function-name/package.json", - "/node_modules/.pnpm/set-function-name@2.0.2/node_modules/set-function-name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "setprototypeof@1.2.0", - "packagePath": "/node_modules/.pnpm/setprototypeof@1.2.0/node_modules/setprototypeof", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/setprototypeof@1.2.0/node_modules/setprototypeof/package.json", - "/node_modules/.pnpm/setprototypeof@1.2.0/node_modules/setprototypeof/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "shebang-command@2.0.0", - "packagePath": "/node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command/package.json", - "/node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "shebang-regex@3.0.0", - "packagePath": "/node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex/package.json", - "/node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "side-channel@1.0.6", - "packagePath": "/node_modules/.pnpm/side-channel@1.0.6/node_modules/side-channel", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/side-channel@1.0.6/node_modules/side-channel/package.json", - "/node_modules/.pnpm/side-channel@1.0.6/node_modules/side-channel/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "statuses@2.0.1", - "packagePath": "/node_modules/.pnpm/statuses@2.0.1/node_modules/statuses", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/statuses@2.0.1/node_modules/statuses/package.json", - "/node_modules/.pnpm/statuses@2.0.1/node_modules/statuses/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.matchall@4.0.11", - "packagePath": "/node_modules/.pnpm/string.prototype.matchall@4.0.11/node_modules/string.prototype.matchall", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/string.prototype.matchall@4.0.11/node_modules/string.prototype.matchall/package.json", - "/node_modules/.pnpm/string.prototype.matchall@4.0.11/node_modules/string.prototype.matchall/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.repeat@1.0.0", - "packagePath": "/node_modules/.pnpm/string.prototype.repeat@1.0.0/node_modules/string.prototype.repeat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/string.prototype.repeat@1.0.0/node_modules/string.prototype.repeat/package.json", - "/node_modules/.pnpm/string.prototype.repeat@1.0.0/node_modules/string.prototype.repeat/LICENSE-MIT.txt" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trim@1.2.9", - "packagePath": "/node_modules/.pnpm/string.prototype.trim@1.2.9/node_modules/string.prototype.trim", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/string.prototype.trim@1.2.9/node_modules/string.prototype.trim/package.json", - "/node_modules/.pnpm/string.prototype.trim@1.2.9/node_modules/string.prototype.trim/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trimend@1.0.8", - "packagePath": "/node_modules/.pnpm/string.prototype.trimend@1.0.8/node_modules/string.prototype.trimend", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/string.prototype.trimend@1.0.8/node_modules/string.prototype.trimend/package.json", - "/node_modules/.pnpm/string.prototype.trimend@1.0.8/node_modules/string.prototype.trimend/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trimstart@1.0.8", - "packagePath": "/node_modules/.pnpm/string.prototype.trimstart@1.0.8/node_modules/string.prototype.trimstart", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/string.prototype.trimstart@1.0.8/node_modules/string.prototype.trimstart/package.json", - "/node_modules/.pnpm/string.prototype.trimstart@1.0.8/node_modules/string.prototype.trimstart/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "strip-json-comments@3.1.1", - "packagePath": "/node_modules/.pnpm/strip-json-comments@3.1.1/node_modules/strip-json-comments", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/strip-json-comments@3.1.1/node_modules/strip-json-comments/package.json", - "/node_modules/.pnpm/strip-json-comments@3.1.1/node_modules/strip-json-comments/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "supports-color@7.2.0", - "packagePath": "/node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/package.json", - "/node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "supports-preserve-symlinks-flag@1.0.0", - "packagePath": "/node_modules/.pnpm/supports-preserve-symlinks-flag@1.0.0/node_modules/supports-preserve-symlinks-flag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/supports-preserve-symlinks-flag@1.0.0/node_modules/supports-preserve-symlinks-flag/package.json", - "/node_modules/.pnpm/supports-preserve-symlinks-flag@1.0.0/node_modules/supports-preserve-symlinks-flag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "toidentifier@1.0.1", - "packagePath": "/node_modules/.pnpm/toidentifier@1.0.1/node_modules/toidentifier", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/toidentifier@1.0.1/node_modules/toidentifier/package.json", - "/node_modules/.pnpm/toidentifier@1.0.1/node_modules/toidentifier/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-check@0.4.0", - "packagePath": "/node_modules/.pnpm/type-check@0.4.0/node_modules/type-check", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/type-check@0.4.0/node_modules/type-check/package.json", - "/node_modules/.pnpm/type-check@0.4.0/node_modules/type-check/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-is@1.6.18", - "packagePath": "/node_modules/.pnpm/type-is@1.6.18/node_modules/type-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/type-is@1.6.18/node_modules/type-is/package.json", - "/node_modules/.pnpm/type-is@1.6.18/node_modules/type-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-is@2.0.0", - "packagePath": "/node_modules/.pnpm/type-is@2.0.0/node_modules/type-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/type-is@2.0.0/node_modules/type-is/package.json", - "/node_modules/.pnpm/type-is@2.0.0/node_modules/type-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-buffer@1.0.2", - "packagePath": "/node_modules/.pnpm/typed-array-buffer@1.0.2/node_modules/typed-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/typed-array-buffer@1.0.2/node_modules/typed-array-buffer/package.json", - "/node_modules/.pnpm/typed-array-buffer@1.0.2/node_modules/typed-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-byte-length@1.0.1", - "packagePath": "/node_modules/.pnpm/typed-array-byte-length@1.0.1/node_modules/typed-array-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/typed-array-byte-length@1.0.1/node_modules/typed-array-byte-length/package.json", - "/node_modules/.pnpm/typed-array-byte-length@1.0.1/node_modules/typed-array-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-byte-offset@1.0.3", - "packagePath": "/node_modules/.pnpm/typed-array-byte-offset@1.0.3/node_modules/typed-array-byte-offset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/typed-array-byte-offset@1.0.3/node_modules/typed-array-byte-offset/package.json", - "/node_modules/.pnpm/typed-array-byte-offset@1.0.3/node_modules/typed-array-byte-offset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-length@1.0.7", - "packagePath": "/node_modules/.pnpm/typed-array-length@1.0.7/node_modules/typed-array-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/typed-array-length@1.0.7/node_modules/typed-array-length/package.json", - "/node_modules/.pnpm/typed-array-length@1.0.7/node_modules/typed-array-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "unbox-primitive@1.0.2", - "packagePath": "/node_modules/.pnpm/unbox-primitive@1.0.2/node_modules/unbox-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/unbox-primitive@1.0.2/node_modules/unbox-primitive/package.json", - "/node_modules/.pnpm/unbox-primitive@1.0.2/node_modules/unbox-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "unpipe@1.0.0", - "packagePath": "/node_modules/.pnpm/unpipe@1.0.0/node_modules/unpipe", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/unpipe@1.0.0/node_modules/unpipe/package.json", - "/node_modules/.pnpm/unpipe@1.0.0/node_modules/unpipe/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "uri-js@4.4.1", - "packagePath": "/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/package.json", - "/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "utils-merge@1.0.1", - "packagePath": "/node_modules/.pnpm/utils-merge@1.0.1/node_modules/utils-merge", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/utils-merge@1.0.1/node_modules/utils-merge/package.json", - "/node_modules/.pnpm/utils-merge@1.0.1/node_modules/utils-merge/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "vary@1.1.2", - "packagePath": "/node_modules/.pnpm/vary@1.1.2/node_modules/vary", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/vary@1.1.2/node_modules/vary/package.json", - "/node_modules/.pnpm/vary@1.1.2/node_modules/vary/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which@2.0.2", - "packagePath": "/node_modules/.pnpm/which@2.0.2/node_modules/which", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/which@2.0.2/node_modules/which/package.json", - "/node_modules/.pnpm/which@2.0.2/node_modules/which/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-boxed-primitive@1.1.0", - "packagePath": "/node_modules/.pnpm/which-boxed-primitive@1.1.0/node_modules/which-boxed-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/which-boxed-primitive@1.1.0/node_modules/which-boxed-primitive/package.json", - "/node_modules/.pnpm/which-boxed-primitive@1.1.0/node_modules/which-boxed-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-builtin-type@1.2.0", - "packagePath": "/node_modules/.pnpm/which-builtin-type@1.2.0/node_modules/which-builtin-type", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/which-builtin-type@1.2.0/node_modules/which-builtin-type/package.json", - "/node_modules/.pnpm/which-builtin-type@1.2.0/node_modules/which-builtin-type/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-collection@1.0.2", - "packagePath": "/node_modules/.pnpm/which-collection@1.0.2/node_modules/which-collection", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/which-collection@1.0.2/node_modules/which-collection/package.json", - "/node_modules/.pnpm/which-collection@1.0.2/node_modules/which-collection/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-typed-array@1.1.16", - "packagePath": "/node_modules/.pnpm/which-typed-array@1.1.16/node_modules/which-typed-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/which-typed-array@1.1.16/node_modules/which-typed-array/package.json", - "/node_modules/.pnpm/which-typed-array@1.1.16/node_modules/which-typed-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "word-wrap@1.2.5", - "packagePath": "/node_modules/.pnpm/word-wrap@1.2.5/node_modules/word-wrap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/word-wrap@1.2.5/node_modules/word-wrap/package.json", - "/node_modules/.pnpm/word-wrap@1.2.5/node_modules/word-wrap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "wrappy@1.0.2", - "packagePath": "/node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/package.json", - "/node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "yocto-queue@0.1.0", - "packagePath": "/node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/package.json", - "/node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/license" - ], - "verificationStatus": "ok" - } - ], - "blacklist": [], - "unknown": [], - "notFound": [], - "needsUserVerification": [ - { - "packageName": "argparse@2.0.1", - "packagePath": "/node_modules/.pnpm/argparse@2.0.1/node_modules/argparse", - "verificationMessage": "We’ve found a license file, but no matching licenses in it in path argparse@2.0.1. Please review package /node_modules/.pnpm/argparse@2.0.1/node_modules/argparse and assign a matching license or skip the check by listing it in the overrides field of the config file." - }, - { - "packageName": "lodash.merge@4.6.2", - "packagePath": "/node_modules/.pnpm/lodash.merge@4.6.2/node_modules/lodash.merge", - "verificationMessage": "We’ve found a license file, but no matching licenses in it in path lodash.merge@4.6.2. Please review package /node_modules/.pnpm/lodash.merge@4.6.2/node_modules/lodash.merge and assign a matching license or skip the check by listing it in the overrides field of the config file." - } - ] -} -`; - -exports[`snapshot testing > yarn project 1`] = ` -{ - "whitelist": [ - { - "packageName": "encodeurl@2.0.0", - "packagePath": "/node_modules/encodeurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/encodeurl/package.json", - "/node_modules/encodeurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-types@3.0.0", - "packagePath": "/node_modules/mime-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/mime-types/package.json", - "/node_modules/mime-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ms@2.0.0", - "packagePath": "/node_modules/ms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ms/package.json", - "/node_modules/ms/license.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "express@5.0.1", - "packagePath": "/node_modules/express", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/express/package.json", - "/node_modules/express/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "eslint-plugin-react@7.37.2", - "packagePath": "/node_modules/eslint-plugin-react", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/eslint-plugin-react/package.json", - "/node_modules/eslint-plugin-react/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "accepts@2.0.0", - "packagePath": "/node_modules/accepts", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/accepts/package.json", - "/node_modules/accepts/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-includes@3.1.8", - "packagePath": "/node_modules/array-includes", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array-includes/package.json", - "/node_modules/array-includes/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.findlast@1.2.5", - "packagePath": "/node_modules/array.prototype.findlast", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.findlast/package.json", - "/node_modules/array.prototype.findlast/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.flatmap@1.3.2", - "packagePath": "/node_modules/array.prototype.flatmap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.flatmap/package.json", - "/node_modules/array.prototype.flatmap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.tosorted@1.1.4", - "packagePath": "/node_modules/array.prototype.tosorted", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.tosorted/package.json", - "/node_modules/array.prototype.tosorted/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "body-parser@2.0.2", - "packagePath": "/node_modules/body-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/body-parser/package.json", - "/node_modules/body-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-disposition@1.0.0", - "packagePath": "/node_modules/content-disposition", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/content-disposition/package.json", - "/node_modules/content-disposition/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "content-type@1.0.5", - "packagePath": "/node_modules/content-type", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/content-type/package.json", - "/node_modules/content-type/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cookie-signature@1.2.2", - "packagePath": "/node_modules/cookie-signature", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/cookie-signature/package.json", - "/node_modules/cookie-signature/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "cookie@0.7.1", - "packagePath": "/node_modules/cookie", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/cookie/package.json", - "/node_modules/cookie/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "debug@4.3.6", - "packagePath": "/node_modules/debug", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/debug/package.json", - "/node_modules/debug/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "depd@2.0.0", - "packagePath": "/node_modules/depd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/depd/package.json", - "/node_modules/depd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "doctrine@2.1.0", - "packagePath": "/node_modules/doctrine", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/Apache-2.0.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", - "referenceNumber": 27, - "name": "Apache License 2.0", - "licenseId": "Apache-2.0", - "seeAlso": [ - "https://www.apache.org/licenses/LICENSE-2.0", - "https://opensource.org/licenses/Apache-2.0" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/doctrine/package.json", - "/node_modules/doctrine/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-iterator-helpers@1.2.0", - "packagePath": "/node_modules/es-iterator-helpers", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-iterator-helpers/package.json", - "/node_modules/es-iterator-helpers/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "escape-html@1.0.3", - "packagePath": "/node_modules/escape-html", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/escape-html/package.json", - "/node_modules/escape-html/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "estraverse@5.3.0", - "packagePath": "/node_modules/estraverse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/estraverse/package.json", - "/node_modules/estraverse" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "etag@1.8.1", - "packagePath": "/node_modules/etag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/etag/package.json", - "/node_modules/etag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "finalhandler@2.0.0", - "packagePath": "/node_modules/finalhandler", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/finalhandler/package.json", - "/node_modules/finalhandler/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "fresh@2.0.0", - "packagePath": "/node_modules/fresh", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/fresh/package.json", - "/node_modules/fresh/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "hasown@2.0.2", - "packagePath": "/node_modules/hasown", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/hasown/package.json", - "/node_modules/hasown/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "http-errors@2.0.0", - "packagePath": "/node_modules/http-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/http-errors/package.json", - "/node_modules/http-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "jsx-ast-utils@3.3.5", - "packagePath": "/node_modules/jsx-ast-utils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/jsx-ast-utils/package.json", - "/node_modules/jsx-ast-utils/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "merge-descriptors@2.0.0", - "packagePath": "/node_modules/merge-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/merge-descriptors/package.json", - "/node_modules/merge-descriptors/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "methods@1.1.2", - "packagePath": "/node_modules/methods", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/methods/package.json", - "/node_modules/methods/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "mime-db@1.53.0", - "packagePath": "/node_modules/mime-db", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/mime-db/package.json", - "/node_modules/mime-db/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "minimatch@3.1.2", - "packagePath": "/node_modules/minimatch", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/minimatch/package.json", - "/node_modules/minimatch/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.entries@1.1.8", - "packagePath": "/node_modules/object.entries", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.entries/package.json", - "/node_modules/object.entries/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.fromentries@2.0.8", - "packagePath": "/node_modules/object.fromentries", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.fromentries/package.json", - "/node_modules/object.fromentries/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.values@1.2.0", - "packagePath": "/node_modules/object.values", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.values/package.json", - "/node_modules/object.values/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "on-finished@2.4.1", - "packagePath": "/node_modules/on-finished", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/on-finished/package.json", - "/node_modules/on-finished/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "once@1.4.0", - "packagePath": "/node_modules/once", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/once/package.json", - "/node_modules/once/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "parseurl@1.3.3", - "packagePath": "/node_modules/parseurl", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/parseurl/package.json", - "/node_modules/parseurl/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "prop-types@15.8.1", - "packagePath": "/node_modules/prop-types", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/prop-types/package.json", - "/node_modules/prop-types/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "proxy-addr@2.0.7", - "packagePath": "/node_modules/proxy-addr", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/proxy-addr/package.json", - "/node_modules/proxy-addr/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "qs@6.13.0", - "packagePath": "/node_modules/qs", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/BSD-3-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", - "referenceNumber": 558, - "name": "BSD 3-Clause \\"New\\" or \\"Revised\\" License", - "licenseId": "BSD-3-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-3-Clause", - "https://www.eclipse.org/org/documents/edl-v10.php" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/qs/package.json", - "/node_modules/qs/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "range-parser@1.2.1", - "packagePath": "/node_modules/range-parser", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/range-parser/package.json", - "/node_modules/range-parser/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "resolve@2.0.0-next.5", - "packagePath": "/node_modules/resolve", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/resolve/package.json", - "/node_modules/resolve/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "router@2.0.0", - "packagePath": "/node_modules/router", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/router/package.json", - "/node_modules/router/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-buffer@5.2.1", - "packagePath": "/node_modules/safe-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safe-buffer/package.json", - "/node_modules/safe-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "semver@6.3.1", - "packagePath": "/node_modules/semver", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/semver/package.json", - "/node_modules/semver/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "send@1.1.0", - "packagePath": "/node_modules/send", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/send/package.json", - "/node_modules/send/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "serve-static@2.1.0", - "packagePath": "/node_modules/serve-static", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/serve-static/package.json", - "/node_modules/serve-static/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "setprototypeof@1.2.0", - "packagePath": "/node_modules/setprototypeof", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/setprototypeof/package.json", - "/node_modules/setprototypeof/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "statuses@2.0.1", - "packagePath": "/node_modules/statuses", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/statuses/package.json", - "/node_modules/statuses/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.matchall@4.0.11", - "packagePath": "/node_modules/string.prototype.matchall", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.matchall/package.json", - "/node_modules/string.prototype.matchall/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.repeat@1.0.0", - "packagePath": "/node_modules/string.prototype.repeat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.repeat/package.json", - "/node_modules/string.prototype.repeat/LICENSE-MIT.txt" - ], - "verificationStatus": "ok" - }, - { - "packageName": "type-is@2.0.0", - "packagePath": "/node_modules/type-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/type-is/package.json", - "/node_modules/type-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "utils-merge@1.0.1", - "packagePath": "/node_modules/utils-merge", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/utils-merge/package.json", - "/node_modules/utils-merge/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "vary@1.1.2", - "packagePath": "/node_modules/vary", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/vary/package.json", - "/node_modules/vary/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-flatten@3.0.0", - "packagePath": "/node_modules/array-flatten", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array-flatten/package.json", - "/node_modules/array-flatten/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array.prototype.flat@1.3.2", - "packagePath": "/node_modules/array.prototype.flat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array.prototype.flat/package.json", - "/node_modules/array.prototype.flat/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "brace-expansion@1.1.11", - "packagePath": "/node_modules/brace-expansion", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/brace-expansion/package.json", - "/node_modules/brace-expansion/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "bytes@3.1.2", - "packagePath": "/node_modules/bytes", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/bytes/package.json", - "/node_modules/bytes/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "call-bind@1.0.7", - "packagePath": "/node_modules/call-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/call-bind/package.json", - "/node_modules/call-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "define-properties@1.2.1", - "packagePath": "/node_modules/define-properties", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/define-properties/package.json", - "/node_modules/define-properties/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "destroy@1.2.0", - "packagePath": "/node_modules/destroy", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/destroy/package.json", - "/node_modules/destroy/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ee-first@1.1.1", - "packagePath": "/node_modules/ee-first", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ee-first/package.json", - "/node_modules/ee-first/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-abstract@1.23.5", - "packagePath": "/node_modules/es-abstract", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-abstract/package.json", - "/node_modules/es-abstract/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-errors@1.3.0", - "packagePath": "/node_modules/es-errors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-errors/package.json", - "/node_modules/es-errors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-object-atoms@1.0.0", - "packagePath": "/node_modules/es-object-atoms", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-object-atoms/package.json", - "/node_modules/es-object-atoms/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-set-tostringtag@2.0.3", - "packagePath": "/node_modules/es-set-tostringtag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-set-tostringtag/package.json", - "/node_modules/es-set-tostringtag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-shim-unscopables@1.0.2", - "packagePath": "/node_modules/es-shim-unscopables", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-shim-unscopables/package.json", - "/node_modules/es-shim-unscopables/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "esutils@2.0.3", - "packagePath": "/node_modules/esutils", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/BSD-2-Clause.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", - "referenceNumber": 228, - "name": "BSD 2-Clause \\"Simplified\\" License", - "licenseId": "BSD-2-Clause", - "seeAlso": [ - "https://opensource.org/licenses/BSD-2-Clause" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - } - ], - "licensePath": [ - "/node_modules/esutils/package.json", - "/node_modules/esutils" - ], - "verificationStatus": "licenseFileNotFound" - }, - { - "packageName": "forwarded@0.2.0", - "packagePath": "/node_modules/forwarded", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/forwarded/package.json", - "/node_modules/forwarded/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "function-bind@1.1.2", - "packagePath": "/node_modules/function-bind", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/function-bind/package.json", - "/node_modules/function-bind/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "get-intrinsic@1.2.4", - "packagePath": "/node_modules/get-intrinsic", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/get-intrinsic/package.json", - "/node_modules/get-intrinsic/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "globalthis@1.0.4", - "packagePath": "/node_modules/globalthis", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/globalthis/package.json", - "/node_modules/globalthis/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "gopd@1.2.0", - "packagePath": "/node_modules/gopd", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/gopd/package.json", - "/node_modules/gopd/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-property-descriptors@1.0.2", - "packagePath": "/node_modules/has-property-descriptors", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-property-descriptors/package.json", - "/node_modules/has-property-descriptors/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-proto@1.1.0", - "packagePath": "/node_modules/has-proto", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-proto/package.json", - "/node_modules/has-proto/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-symbols@1.1.0", - "packagePath": "/node_modules/has-symbols", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-symbols/package.json", - "/node_modules/has-symbols/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iconv-lite@0.5.2", - "packagePath": "/node_modules/iconv-lite", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/iconv-lite/package.json", - "/node_modules/iconv-lite/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "inherits@2.0.4", - "packagePath": "/node_modules/inherits", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/inherits/package.json", - "/node_modules/inherits/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "internal-slot@1.0.7", - "packagePath": "/node_modules/internal-slot", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/internal-slot/package.json", - "/node_modules/internal-slot/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "ipaddr.js@1.9.1", - "packagePath": "/node_modules/ipaddr.js", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/ipaddr.js/package.json", - "/node_modules/ipaddr.js/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-core-module@2.15.1", - "packagePath": "/node_modules/is-core-module", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-core-module/package.json", - "/node_modules/is-core-module/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-promise@4.0.0", - "packagePath": "/node_modules/is-promise", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-promise/package.json", - "/node_modules/is-promise/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-string@1.1.0", - "packagePath": "/node_modules/is-string", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-string/package.json", - "/node_modules/is-string/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "iterator.prototype@1.1.3", - "packagePath": "/node_modules/iterator.prototype", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/iterator.prototype/package.json", - "/node_modules/iterator.prototype/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "loose-envify@1.4.0", - "packagePath": "/node_modules/loose-envify", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/loose-envify/package.json", - "/node_modules/loose-envify/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "media-typer@1.1.0", - "packagePath": "/node_modules/media-typer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/media-typer/package.json", - "/node_modules/media-typer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "negotiator@1.0.0", - "packagePath": "/node_modules/negotiator", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/negotiator/package.json", - "/node_modules/negotiator/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-assign@4.1.1", - "packagePath": "/node_modules/object-assign", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object-assign/package.json", - "/node_modules/object-assign/license" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object.assign@4.1.5", - "packagePath": "/node_modules/object.assign", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object.assign/package.json", - "/node_modules/object.assign/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-parse@1.0.7", - "packagePath": "/node_modules/path-parse", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/path-parse/package.json", - "/node_modules/path-parse/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "path-to-regexp@8.2.0", - "packagePath": "/node_modules/path-to-regexp", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/path-to-regexp/package.json", - "/node_modules/path-to-regexp/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "raw-body@3.0.0", - "packagePath": "/node_modules/raw-body", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/raw-body/package.json", - "/node_modules/raw-body/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "react-is@16.13.1", - "packagePath": "/node_modules/react-is", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/react-is/package.json", - "/node_modules/react-is/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "regexp.prototype.flags@1.5.3", - "packagePath": "/node_modules/regexp.prototype.flags", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/regexp.prototype.flags/package.json", - "/node_modules/regexp.prototype.flags/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-array-concat@1.1.2", - "packagePath": "/node_modules/safe-array-concat", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safe-array-concat/package.json", - "/node_modules/safe-array-concat/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "set-function-name@2.0.2", - "packagePath": "/node_modules/set-function-name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/set-function-name/package.json", - "/node_modules/set-function-name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "side-channel@1.0.6", - "packagePath": "/node_modules/side-channel", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/side-channel/package.json", - "/node_modules/side-channel/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "supports-preserve-symlinks-flag@1.0.0", - "packagePath": "/node_modules/supports-preserve-symlinks-flag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/supports-preserve-symlinks-flag/package.json", - "/node_modules/supports-preserve-symlinks-flag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "toidentifier@1.0.1", - "packagePath": "/node_modules/toidentifier", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/toidentifier/package.json", - "/node_modules/toidentifier/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "unpipe@1.0.0", - "packagePath": "/node_modules/unpipe", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/unpipe/package.json", - "/node_modules/unpipe/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "wrappy@1.0.2", - "packagePath": "/node_modules/wrappy", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/ISC.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/ISC.json", - "referenceNumber": 507, - "name": "ISC License", - "licenseId": "ISC", - "seeAlso": [ - "https://www.isc.org/licenses/", - "https://www.isc.org/downloads/software-support-policy/isc-license/", - "https://opensource.org/licenses/ISC" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/wrappy/package.json", - "/node_modules/wrappy/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "array-buffer-byte-length@1.0.1", - "packagePath": "/node_modules/array-buffer-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/array-buffer-byte-length/package.json", - "/node_modules/array-buffer-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "arraybuffer.prototype.slice@1.0.3", - "packagePath": "/node_modules/arraybuffer.prototype.slice", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/arraybuffer.prototype.slice/package.json", - "/node_modules/arraybuffer.prototype.slice/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "available-typed-arrays@1.0.7", - "packagePath": "/node_modules/available-typed-arrays", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/available-typed-arrays/package.json", - "/node_modules/available-typed-arrays/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "balanced-match@1.0.2", - "packagePath": "/node_modules/balanced-match", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/balanced-match/package.json", - "/node_modules/balanced-match/LICENSE.md" - ], - "verificationStatus": "ok" - }, - { - "packageName": "concat-map@0.0.1", - "packagePath": "/node_modules/concat-map", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/concat-map/package.json", - "/node_modules/concat-map/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-buffer@1.0.1", - "packagePath": "/node_modules/data-view-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/data-view-buffer/package.json", - "/node_modules/data-view-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-byte-length@1.0.1", - "packagePath": "/node_modules/data-view-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/data-view-byte-length/package.json", - "/node_modules/data-view-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "data-view-byte-offset@1.0.0", - "packagePath": "/node_modules/data-view-byte-offset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/data-view-byte-offset/package.json", - "/node_modules/data-view-byte-offset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "define-data-property@1.1.4", - "packagePath": "/node_modules/define-data-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/define-data-property/package.json", - "/node_modules/define-data-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-define-property@1.0.0", - "packagePath": "/node_modules/es-define-property", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-define-property/package.json", - "/node_modules/es-define-property/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "es-to-primitive@1.3.0", - "packagePath": "/node_modules/es-to-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/es-to-primitive/package.json", - "/node_modules/es-to-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "function.prototype.name@1.1.6", - "packagePath": "/node_modules/function.prototype.name", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/function.prototype.name/package.json", - "/node_modules/function.prototype.name/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "functions-have-names@1.2.3", - "packagePath": "/node_modules/functions-have-names", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/functions-have-names/package.json", - "/node_modules/functions-have-names/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "get-symbol-description@1.0.2", - "packagePath": "/node_modules/get-symbol-description", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/get-symbol-description/package.json", - "/node_modules/get-symbol-description/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-tostringtag@1.0.2", - "packagePath": "/node_modules/has-tostringtag", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-tostringtag/package.json", - "/node_modules/has-tostringtag/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-array-buffer@3.0.4", - "packagePath": "/node_modules/is-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-array-buffer/package.json", - "/node_modules/is-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-callable@1.2.7", - "packagePath": "/node_modules/is-callable", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-callable/package.json", - "/node_modules/is-callable/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-data-view@1.0.1", - "packagePath": "/node_modules/is-data-view", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-data-view/package.json", - "/node_modules/is-data-view/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-negative-zero@2.0.3", - "packagePath": "/node_modules/is-negative-zero", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-negative-zero/package.json", - "/node_modules/is-negative-zero/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-regex@1.2.0", - "packagePath": "/node_modules/is-regex", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-regex/package.json", - "/node_modules/is-regex/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-shared-array-buffer@1.0.3", - "packagePath": "/node_modules/is-shared-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-shared-array-buffer/package.json", - "/node_modules/is-shared-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-typed-array@1.1.13", - "packagePath": "/node_modules/is-typed-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-typed-array/package.json", - "/node_modules/is-typed-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakref@1.0.2", - "packagePath": "/node_modules/is-weakref", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-weakref/package.json", - "/node_modules/is-weakref/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "isarray@2.0.5", - "packagePath": "/node_modules/isarray", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/isarray/package.json", - "/node_modules/isarray/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "js-tokens@4.0.0", - "packagePath": "/node_modules/js-tokens", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/js-tokens/package.json", - "/node_modules/js-tokens/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-inspect@1.13.3", - "packagePath": "/node_modules/object-inspect", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object-inspect/package.json", - "/node_modules/object-inspect/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "object-keys@1.1.1", - "packagePath": "/node_modules/object-keys", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/object-keys/package.json", - "/node_modules/object-keys/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "reflect.getprototypeof@1.0.7", - "packagePath": "/node_modules/reflect.getprototypeof", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/reflect.getprototypeof/package.json", - "/node_modules/reflect.getprototypeof/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safe-regex-test@1.0.3", - "packagePath": "/node_modules/safe-regex-test", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safe-regex-test/package.json", - "/node_modules/safe-regex-test/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "safer-buffer@2.1.2", - "packagePath": "/node_modules/safer-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/safer-buffer/package.json", - "/node_modules/safer-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "set-function-length@1.2.2", - "packagePath": "/node_modules/set-function-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/set-function-length/package.json", - "/node_modules/set-function-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trim@1.2.9", - "packagePath": "/node_modules/string.prototype.trim", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.trim/package.json", - "/node_modules/string.prototype.trim/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trimend@1.0.8", - "packagePath": "/node_modules/string.prototype.trimend", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.trimend/package.json", - "/node_modules/string.prototype.trimend/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "string.prototype.trimstart@1.0.8", - "packagePath": "/node_modules/string.prototype.trimstart", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/string.prototype.trimstart/package.json", - "/node_modules/string.prototype.trimstart/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-buffer@1.0.2", - "packagePath": "/node_modules/typed-array-buffer", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-buffer/package.json", - "/node_modules/typed-array-buffer/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-byte-length@1.0.1", - "packagePath": "/node_modules/typed-array-byte-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-byte-length/package.json", - "/node_modules/typed-array-byte-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-byte-offset@1.0.3", - "packagePath": "/node_modules/typed-array-byte-offset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-byte-offset/package.json", - "/node_modules/typed-array-byte-offset/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "typed-array-length@1.0.7", - "packagePath": "/node_modules/typed-array-length", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/typed-array-length/package.json", - "/node_modules/typed-array-length/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "unbox-primitive@1.0.2", - "packagePath": "/node_modules/unbox-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/unbox-primitive/package.json", - "/node_modules/unbox-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-typed-array@1.1.16", - "packagePath": "/node_modules/which-typed-array", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-typed-array/package.json", - "/node_modules/which-typed-array/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "for-each@0.3.3", - "packagePath": "/node_modules/for-each", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/for-each/package.json", - "/node_modules/for-each/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "has-bigints@1.0.2", - "packagePath": "/node_modules/has-bigints", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/has-bigints/package.json", - "/node_modules/has-bigints/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-date-object@1.0.5", - "packagePath": "/node_modules/is-date-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-date-object/package.json", - "/node_modules/is-date-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-symbol@1.1.0", - "packagePath": "/node_modules/is-symbol", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-symbol/package.json", - "/node_modules/is-symbol/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "possible-typed-array-names@1.0.0", - "packagePath": "/node_modules/possible-typed-array-names", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/possible-typed-array-names/package.json", - "/node_modules/possible-typed-array-names/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-boxed-primitive@1.1.0", - "packagePath": "/node_modules/which-boxed-primitive", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-boxed-primitive/package.json", - "/node_modules/which-boxed-primitive/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-builtin-type@1.2.0", - "packagePath": "/node_modules/which-builtin-type", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-builtin-type/package.json", - "/node_modules/which-builtin-type/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-async-function@2.0.0", - "packagePath": "/node_modules/is-async-function", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-async-function/package.json", - "/node_modules/is-async-function/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-bigint@1.1.0", - "packagePath": "/node_modules/is-bigint", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-bigint/package.json", - "/node_modules/is-bigint/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-boolean-object@1.2.0", - "packagePath": "/node_modules/is-boolean-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-boolean-object/package.json", - "/node_modules/is-boolean-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-finalizationregistry@1.1.0", - "packagePath": "/node_modules/is-finalizationregistry", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-finalizationregistry/package.json", - "/node_modules/is-finalizationregistry/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-generator-function@1.0.10", - "packagePath": "/node_modules/is-generator-function", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-generator-function/package.json", - "/node_modules/is-generator-function/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-number-object@1.1.0", - "packagePath": "/node_modules/is-number-object", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-number-object/package.json", - "/node_modules/is-number-object/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "which-collection@1.0.2", - "packagePath": "/node_modules/which-collection", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/which-collection/package.json", - "/node_modules/which-collection/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-map@2.0.3", - "packagePath": "/node_modules/is-map", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-map/package.json", - "/node_modules/is-map/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-set@2.0.3", - "packagePath": "/node_modules/is-set", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-set/package.json", - "/node_modules/is-set/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakmap@2.0.2", - "packagePath": "/node_modules/is-weakmap", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-weakmap/package.json", - "/node_modules/is-weakmap/LICENSE" - ], - "verificationStatus": "ok" - }, - { - "packageName": "is-weakset@2.0.3", - "packagePath": "/node_modules/is-weakset", - "status": "whitelist", - "licenses": [ - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "isFsfLibre": true, - "source": "package.json-license" - }, - { - "reference": "https://spdx.org/licenses/MIT.html", - "isDeprecatedLicenseId": false, - "detailsUrl": "https://spdx.org/licenses/MIT.json", - "referenceNumber": 78, - "name": "MIT License", - "licenseId": "MIT", - "seeAlso": [ - "https://opensource.org/license/mit/" - ], - "isOsiApproved": true, - "source": "license-file-content" - } - ], - "licensePath": [ - "/node_modules/is-weakset/package.json", - "/node_modules/is-weakset/LICENSE" - ], - "verificationStatus": "ok" - } - ], - "blacklist": [], - "unknown": [], - "notFound": [], - "needsUserVerification": [] -} -`; diff --git a/test/test/snapshot.test.ts b/test/test/snapshot.test.ts index 6e05c27d..1e56f695 100644 --- a/test/test/snapshot.test.ts +++ b/test/test/snapshot.test.ts @@ -10,6 +10,7 @@ import { getCliPath } from "../utils/get-cli-path"; import { readJsonFile } from "../utils/read-json-file"; import { runCliCommand } from "../utils/run-cli-command"; import "../utils/path-serializer"; +import { matchSnapshotRecursive } from '../utils/matchSnapshotRecursive'; describe("snapshot testing", () => { monorepoFixture("monorepo project", async ({ testDirectory, expect }) => { @@ -24,7 +25,7 @@ describe("snapshot testing", () => { const jsonOutput = await readJsonFile( path.join(testDirectory, "license-auditor.results.json"), ); - expect(jsonOutput).toMatchSnapshot(); + matchSnapshotRecursive('./__snapshots__/monorepo.json', jsonOutput, false); }); pnpmFixture("pnpm project", async ({ testDirectory, expect }) => { @@ -39,7 +40,7 @@ describe("snapshot testing", () => { const jsonOutput = await readJsonFile( path.join(testDirectory, "license-auditor.results.json"), ); - expect(jsonOutput).toMatchSnapshot(); + matchSnapshotRecursive('./__snapshots__/pnpm.json', jsonOutput, false); }); defaultTest("npm project", async ({ testDirectory, expect }) => { @@ -54,7 +55,7 @@ describe("snapshot testing", () => { const jsonOutput = await readJsonFile( path.join(testDirectory, "license-auditor.results.json"), ); - expect(jsonOutput).toMatchSnapshot(); + matchSnapshotRecursive('./__snapshots__/npm.json', jsonOutput, false); }); yarnFixture("yarn project", async ({ testDirectory, expect }) => { @@ -69,6 +70,6 @@ describe("snapshot testing", () => { const jsonOutput = await readJsonFile( path.join(testDirectory, "license-auditor.results.json"), ); - expect(jsonOutput).toMatchSnapshot(); + matchSnapshotRecursive('./__snapshots__/yarn.json', jsonOutput, false); }); }); diff --git a/test/utils/matchSnapshotRecursive.test.ts b/test/utils/matchSnapshotRecursive.test.ts new file mode 100644 index 00000000..cce0b335 --- /dev/null +++ b/test/utils/matchSnapshotRecursive.test.ts @@ -0,0 +1,285 @@ +import { describe, test, expect } from 'vitest'; +import { findDiffRecursive } from './matchSnapshotRecursive'; + +describe("matchSnapshotRecursive", () => { + test("works", async () => { + const source = { + whitelist: [ + { + "packageName": "express@4.21.1", + "packagePath": "/node_modules/express", + "status": "whitelist", + "licenses": [ + { + "reference": "https://spdx.org/licenses/MIT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT.json", + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/license/mit/" + ], + "isOsiApproved": true, + "isFsfLibre": true, + "source": "package.json-license" + }, + { + "reference": "https://spdx.org/licenses/MIT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT.json", + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/license/mit/" + ], + "isOsiApproved": true, + "source": "license-file-content" + } + ], + "licensePath": [ + "/node_modules/express/package.json", + "/node_modules/express/LICENSE" + ], + "verificationStatus": "ok" + }, + { + "packageName": "some-package@1.0.0", + } + ], + }; + const compare = { + whitelist: [ + { + "packageName": "some-package@1.0.0", + }, + { + "packageName": "express@4.21.1", + "packagePath": "/node_modules/express", + "status": "whitelist", + "licenses": [ + { + "reference": "https://spdx.org/licenses/MIT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT.json", + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/license/mit/" + ], + "isOsiApproved": true, + "source": "license-file-content" + }, + { + "reference": "https://spdx.org/licenses/MIT.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/MIT.json", + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/license/mit/" + ], + "isOsiApproved": true, + "isFsfLibre": true, + "source": "package.json-license" + }, + { + "reference": "https://spdx.org/licenses/bad-license.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/bad-license.json", + "name": "bad-license License", + "licenseId": "bad-license", + "seeAlso": [ + "https://opensource.org/license/bad-license/" + ], + "isOsiApproved": true, + "isFsfLibre": true, + "source": "license-file-content" + } + ], + "licensePath": [ + "/node_modules/express/package.json", + "/node_modules/express/LICENSE" + ], + "verificationStatus": "ok" + }, + ] + }; + + const { jsView, sortedView } = findDiffRecursive(source, compare); + + // uncomment to see how the diff looks + // expect(sortedView.source).toEqual(sortedView.target); + + expect(jsView).toBe(`{ + whitelist: [ + { + packageName: 'express@4.21.1', + packagePath: '/node_modules/express', + status: 'whitelist', + licenses: [ + { + reference: 'https://spdx.org/licenses/bad-license.html', // + + isDeprecatedLicenseId: true, // + + detailsUrl: 'https://spdx.org/licenses/bad-license.json', // + + name: 'bad-license License', // + + licenseId: 'bad-license', // + + seeAlso: [ + 'https://opensource.org/license/bad-license/', // + + ], // + + isOsiApproved: true, // + + isFsfLibre: true, // + + source: 'license-file-content', // + + }, // + + { + reference: 'https://spdx.org/licenses/MIT.html', + isDeprecatedLicenseId: false, + detailsUrl: 'https://spdx.org/licenses/MIT.json', + name: 'MIT License', + licenseId: 'MIT', + seeAlso: [ + 'https://opensource.org/license/mit/', + ], + isOsiApproved: true, + source: 'license-file-content', + }, + { + reference: 'https://spdx.org/licenses/MIT.html', + isDeprecatedLicenseId: false, // ~ true + detailsUrl: 'https://spdx.org/licenses/MIT.json', + name: 'MIT License', + licenseId: 'MIT', + seeAlso: [ + 'https://opensource.org/license/mit/', + ], + isOsiApproved: true, + isFsfLibre: true, + source: 'package.json-license', + }, // ~ + ], // ~ + licensePath: [ + '/node_modules/express/LICENSE', + '/node_modules/express/package.json', + ], + verificationStatus: 'ok', + }, // ~ + { + packageName: 'some-package@1.0.0', + }, + ], // ~ +} // ~`); + expect(sortedView.source).toBe(`{ + whitelist: [ + { + packageName: 'express@4.21.1', + packagePath: '/node_modules/express', + status: 'whitelist', + licenses: [ + + + + + + + + + + + + + + { + reference: 'https://spdx.org/licenses/MIT.html', + isDeprecatedLicenseId: false, + detailsUrl: 'https://spdx.org/licenses/MIT.json', + name: 'MIT License', + licenseId: 'MIT', + seeAlso: [ + 'https://opensource.org/license/mit/', + ], + isOsiApproved: true, + source: 'license-file-content', + }, + { + reference: 'https://spdx.org/licenses/MIT.html', + isDeprecatedLicenseId: false, + detailsUrl: 'https://spdx.org/licenses/MIT.json', + name: 'MIT License', + licenseId: 'MIT', + seeAlso: [ + 'https://opensource.org/license/mit/', + ], + isOsiApproved: true, + isFsfLibre: true, + source: 'package.json-license', + }, + ], + licensePath: [ + '/node_modules/express/LICENSE', + '/node_modules/express/package.json', + ], + verificationStatus: 'ok', + }, + { + packageName: 'some-package@1.0.0', + }, + ], +}`) + expect(sortedView.target).toBe(`{ + whitelist: [ + { + packageName: 'express@4.21.1', + packagePath: '/node_modules/express', + status: 'whitelist', + licenses: [ + { + reference: 'https://spdx.org/licenses/bad-license.html', + isDeprecatedLicenseId: true, + detailsUrl: 'https://spdx.org/licenses/bad-license.json', + name: 'bad-license License', + licenseId: 'bad-license', + seeAlso: [ + 'https://opensource.org/license/bad-license/', + ], + isOsiApproved: true, + isFsfLibre: true, + source: 'license-file-content', + }, + { + reference: 'https://spdx.org/licenses/MIT.html', + isDeprecatedLicenseId: false, + detailsUrl: 'https://spdx.org/licenses/MIT.json', + name: 'MIT License', + licenseId: 'MIT', + seeAlso: [ + 'https://opensource.org/license/mit/', + ], + isOsiApproved: true, + source: 'license-file-content', + }, + { + reference: 'https://spdx.org/licenses/MIT.html', + isDeprecatedLicenseId: true, + detailsUrl: 'https://spdx.org/licenses/MIT.json', + name: 'MIT License', + licenseId: 'MIT', + seeAlso: [ + 'https://opensource.org/license/mit/', + ], + isOsiApproved: true, + isFsfLibre: true, + source: 'package.json-license', + }, + ], + licensePath: [ + '/node_modules/express/LICENSE', + '/node_modules/express/package.json', + ], + verificationStatus: 'ok', + }, + { + packageName: 'some-package@1.0.0', + }, + ], +}`); + }); +}); diff --git a/test/utils/matchSnapshotRecursive.ts b/test/utils/matchSnapshotRecursive.ts new file mode 100644 index 00000000..970751a3 --- /dev/null +++ b/test/utils/matchSnapshotRecursive.ts @@ -0,0 +1,62 @@ +import * as path from 'node:path'; +import createDiff, { diffJsView, diffSortedView, diffChangesViewConsole } from 'differrer'; +import { expect } from 'vitest'; +import * as fs from 'node:fs'; +import { replaceTestDirectory } from './path-serializer'; + +const getArrayElementId = (item: any) => { + if (typeof item !== 'object') { + return item; + } + if (Object.prototype.hasOwnProperty.call(item, 'packageName')) { + return item.packageName; + } + if (Object.prototype.hasOwnProperty.call(item, 'licenseId') && Object.prototype.hasOwnProperty.call(item, 'source')) { + return `${item.licenseId}-${item.source}`; + } +} + +const diff = createDiff({ + getArrayElementId, + sortArrayItems: true, + getValue: (value, path) => { + if (typeof value === 'string') { + return replaceTestDirectory(value); + } + return value; + }, +}); + +export const findDiffRecursive = (source: any, compare: any) => { + const diffResult = diff(source, compare); + + const jsView = diffJsView(diffResult); + const sortedView = diffSortedView(diffResult); + const diffChangesView = diffChangesViewConsole(diffResult); + + + return { + diffResult, + jsView, + sortedView, + diffChangesView, + }; +}; + +export const matchSnapshotRecursive = (snapshotPath: string, value: any, updateSnapshot?: boolean) => { + const testState = expect.getState(); + const currentDirectory = path.dirname(testState.testPath); + const snapshotFilePath = path.join(currentDirectory, snapshotPath); + + if (!fs.existsSync(snapshotFilePath) || updateSnapshot) { + fs.writeFileSync(snapshotFilePath, JSON.stringify(value, null, 2)); + expect(value).toEqual(value); // nonsensical assertion to make sure that number of assertion calls is preserved + return; + } + + const snapshot = JSON.parse(fs.readFileSync(snapshotFilePath, 'utf-8')); + + const { sortedView } = findDiffRecursive(snapshot, value); + + expect(sortedView.target).toEqual(sortedView.source); +}; diff --git a/test/utils/path-serializer.ts b/test/utils/path-serializer.ts index c8b9e50a..b19b5f06 100644 --- a/test/utils/path-serializer.ts +++ b/test/utils/path-serializer.ts @@ -1,7 +1,12 @@ import { expect } from "vitest"; import { TEST_TEMP_DIRECTORY } from "../global-setup"; -const pathSerializer = { +export const replaceTestDirectory = (value: string) => value.replace( + new RegExp(`${TEST_TEMP_DIRECTORY}/testProject-[a-zA-Z0-9]+`, "g"), + "", +); + +export const pathSerializer = { test: (val: unknown): boolean => { if (typeof val !== "string" && typeof val !== "object") { return false; @@ -13,10 +18,7 @@ const pathSerializer = { serialize: (val: unknown): string => { const stringified = JSON.stringify(val, null, 2); - return stringified.replace( - new RegExp(`${TEST_TEMP_DIRECTORY}/testProject-[a-zA-Z0-9]+`, "g"), - "", - ); + return replaceTestDirectory(stringified); }, }; diff --git a/tooling/data/src/license-audit-result/types.ts b/tooling/data/src/license-audit-result/types.ts index d9756eda..28e2cc0c 100644 --- a/tooling/data/src/license-audit-result/types.ts +++ b/tooling/data/src/license-audit-result/types.ts @@ -5,7 +5,7 @@ import type { } from "../licenses/types.js"; export interface DependenciesResult { - dependencies: string[]; + dependencies: string[]; // array of absolute paths (e.g. /Users/johndoe/project/node_modules/left-pad) warning?: string; } diff --git a/tooling/data/src/licenses/licenses.ts b/tooling/data/src/licenses/licenses.ts index c3869d6d..fa7bd074 100644 --- a/tooling/data/src/licenses/licenses.ts +++ b/tooling/data/src/licenses/licenses.ts @@ -5,7 +5,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/0BSD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/0BSD.json", - referenceNumber: 16, name: "BSD Zero Clause License", licenseId: "0BSD", seeAlso: [ @@ -20,7 +19,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/3D-Slicer-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/3D-Slicer-1.0.json", - referenceNumber: 46, name: "3D Slicer License v1.0", licenseId: "3D-Slicer-1.0", seeAlso: [ @@ -34,7 +32,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AAL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AAL.json", - referenceNumber: 604, name: "Attribution Assurance License", licenseId: "AAL", seeAlso: ["https://opensource.org/licenses/attribution"], @@ -46,7 +43,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Abstyles.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Abstyles.json", - referenceNumber: 175, name: "Abstyles License", licenseId: "Abstyles", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Abstyles"], @@ -57,7 +53,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AdaCore-doc.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AdaCore-doc.json", - referenceNumber: 638, name: "AdaCore Doc License", licenseId: "AdaCore-doc", seeAlso: [ @@ -72,7 +67,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Adobe-2006.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Adobe-2006.json", - referenceNumber: 1, name: "Adobe Systems Incorporated Source Code License Agreement", licenseId: "Adobe-2006", seeAlso: ["https://fedoraproject.org/wiki/Licensing/AdobeLicense"], @@ -83,7 +77,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Adobe-Display-PostScript.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Adobe-Display-PostScript.json", - referenceNumber: 592, name: "Adobe Display PostScript License", licenseId: "Adobe-Display-PostScript", seeAlso: [ @@ -96,7 +89,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Adobe-Glyph.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Adobe-Glyph.json", - referenceNumber: 634, name: "Adobe Glyph List License", licenseId: "Adobe-Glyph", seeAlso: ["https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"], @@ -107,7 +99,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Adobe-Utopia.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Adobe-Utopia.json", - referenceNumber: 118, name: "Adobe Utopia Font License", licenseId: "Adobe-Utopia", seeAlso: [ @@ -120,7 +111,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ADSL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ADSL.json", - referenceNumber: 547, name: "Amazon Digital Services License", licenseId: "ADSL", seeAlso: [ @@ -133,7 +123,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AFL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AFL-1.1.json", - referenceNumber: 577, name: "Academic Free License v1.1", licenseId: "AFL-1.1", seeAlso: [ @@ -148,7 +137,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AFL-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AFL-1.2.json", - referenceNumber: 591, name: "Academic Free License v1.2", licenseId: "AFL-1.2", seeAlso: [ @@ -163,7 +151,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AFL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AFL-2.0.json", - referenceNumber: 21, name: "Academic Free License v2.0", licenseId: "AFL-2.0", seeAlso: [ @@ -177,7 +164,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AFL-2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AFL-2.1.json", - referenceNumber: 5, name: "Academic Free License v2.1", licenseId: "AFL-2.1", seeAlso: ["http://opensource.linux-mirror.org/licenses/afl-2.1.txt"], @@ -189,7 +175,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AFL-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AFL-3.0.json", - referenceNumber: 632, name: "Academic Free License v3.0", licenseId: "AFL-3.0", seeAlso: [ @@ -204,7 +189,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Afmparse.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Afmparse.json", - referenceNumber: 223, name: "Afmparse License", licenseId: "Afmparse", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Afmparse"], @@ -215,7 +199,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AGPL-1.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/AGPL-1.0.json", - referenceNumber: 262, name: "Affero General Public License v1.0", licenseId: "AGPL-1.0", seeAlso: ["http://www.affero.org/oagpl.html"], @@ -227,7 +210,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AGPL-1.0-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AGPL-1.0-only.json", - referenceNumber: 95, name: "Affero General Public License v1.0 only", licenseId: "AGPL-1.0-only", seeAlso: ["http://www.affero.org/oagpl.html"], @@ -238,7 +220,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AGPL-1.0-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AGPL-1.0-or-later.json", - referenceNumber: 238, name: "Affero General Public License v1.0 or later", licenseId: "AGPL-1.0-or-later", seeAlso: ["http://www.affero.org/oagpl.html"], @@ -249,7 +230,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AGPL-3.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/AGPL-3.0.json", - referenceNumber: 121, name: "GNU Affero General Public License v3.0", licenseId: "AGPL-3.0", seeAlso: [ @@ -264,7 +244,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AGPL-3.0-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AGPL-3.0-only.json", - referenceNumber: 265, name: "GNU Affero General Public License v3.0 only", licenseId: "AGPL-3.0-only", seeAlso: [ @@ -279,7 +258,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AGPL-3.0-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AGPL-3.0-or-later.json", - referenceNumber: 667, name: "GNU Affero General Public License v3.0 or later", licenseId: "AGPL-3.0-or-later", seeAlso: [ @@ -294,7 +272,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Aladdin.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Aladdin.json", - referenceNumber: 423, name: "Aladdin Free Public License", licenseId: "Aladdin", seeAlso: ["http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm"], @@ -306,7 +283,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AMD-newlib.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AMD-newlib.json", - referenceNumber: 160, name: "AMD newlib License", licenseId: "AMD-newlib", seeAlso: [ @@ -319,7 +295,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AMDPLPA.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AMDPLPA.json", - referenceNumber: 441, name: "AMD's plpa_map.c License", licenseId: "AMDPLPA", seeAlso: [ @@ -332,7 +307,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AML.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AML.json", - referenceNumber: 308, name: "Apple MIT License", licenseId: "AML", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"], @@ -343,7 +317,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AML-glslang.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AML-glslang.json", - referenceNumber: 31, name: "AML glslang variant License", licenseId: "AML-glslang", seeAlso: [ @@ -357,7 +330,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/AMPAS.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/AMPAS.json", - referenceNumber: 246, name: "Academy of Motion Picture Arts and Sciences BSD", licenseId: "AMPAS", seeAlso: ["https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD"], @@ -368,7 +340,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ANTLR-PD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ANTLR-PD.json", - referenceNumber: 508, name: "ANTLR Software Rights Notice", licenseId: "ANTLR-PD", seeAlso: ["http://www.antlr2.org/license.html"], @@ -379,7 +350,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ANTLR-PD-fallback.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ANTLR-PD-fallback.json", - referenceNumber: 582, name: "ANTLR Software Rights Notice with license fallback", licenseId: "ANTLR-PD-fallback", seeAlso: ["http://www.antlr2.org/license.html"], @@ -390,7 +360,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/any-OSI.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/any-OSI.json", - referenceNumber: 363, name: "Any OSI License", licenseId: "any-OSI", seeAlso: ["https://metacpan.org/pod/Exporter::Tidy#LICENSE"], @@ -401,7 +370,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/any-OSI-perl-modules.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/any-OSI-perl-modules.json", - referenceNumber: 108, name: "Any OSI License - Perl Modules", licenseId: "any-OSI-perl-modules", seeAlso: [ @@ -416,7 +384,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Apache-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Apache-1.0.json", - referenceNumber: 168, name: "Apache License 1.0", licenseId: "Apache-1.0", seeAlso: ["http://www.apache.org/licenses/LICENSE-1.0"], @@ -428,7 +395,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Apache-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Apache-1.1.json", - referenceNumber: 99, name: "Apache License 1.1", licenseId: "Apache-1.1", seeAlso: [ @@ -443,7 +409,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Apache-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Apache-2.0.json", - referenceNumber: 345, name: "Apache License 2.0", licenseId: "Apache-2.0", seeAlso: [ @@ -459,7 +424,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/APAFML.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/APAFML.json", - referenceNumber: 138, name: "Adobe Postscript AFM License", licenseId: "APAFML", seeAlso: ["https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"], @@ -470,7 +434,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/APL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/APL-1.0.json", - referenceNumber: 379, name: "Adaptive Public License 1.0", licenseId: "APL-1.0", seeAlso: ["https://opensource.org/licenses/APL-1.0"], @@ -481,7 +444,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/App-s2p.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/App-s2p.json", - referenceNumber: 535, name: "App::s2p License", licenseId: "App-s2p", seeAlso: ["https://fedoraproject.org/wiki/Licensing/App-s2p"], @@ -492,7 +454,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/APSL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/APSL-1.0.json", - referenceNumber: 231, name: "Apple Public Source License 1.0", licenseId: "APSL-1.0", seeAlso: [ @@ -506,7 +467,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/APSL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/APSL-1.1.json", - referenceNumber: 198, name: "Apple Public Source License 1.1", licenseId: "APSL-1.1", seeAlso: [ @@ -519,7 +479,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/APSL-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/APSL-1.2.json", - referenceNumber: 153, name: "Apple Public Source License 1.2", licenseId: "APSL-1.2", seeAlso: [ @@ -532,7 +491,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/APSL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/APSL-2.0.json", - referenceNumber: 456, name: "Apple Public Source License 2.0", licenseId: "APSL-2.0", seeAlso: ["http://www.opensource.apple.com/license/apsl/"], @@ -544,7 +502,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Arphic-1999.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Arphic-1999.json", - referenceNumber: 256, name: "Arphic Public License", licenseId: "Arphic-1999", seeAlso: [ @@ -557,7 +514,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Artistic-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Artistic-1.0.json", - referenceNumber: 0, name: "Artistic License 1.0", licenseId: "Artistic-1.0", seeAlso: ["https://opensource.org/licenses/Artistic-1.0"], @@ -569,7 +525,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Artistic-1.0-cl8.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Artistic-1.0-cl8.json", - referenceNumber: 249, name: "Artistic License 1.0 w/clause 8", licenseId: "Artistic-1.0-cl8", seeAlso: ["https://opensource.org/licenses/Artistic-1.0"], @@ -580,7 +535,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Artistic-1.0-Perl.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Artistic-1.0-Perl.json", - referenceNumber: 672, name: "Artistic License 1.0 (Perl)", licenseId: "Artistic-1.0-Perl", seeAlso: ["http://dev.perl.org/licenses/artistic.html"], @@ -591,7 +545,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Artistic-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Artistic-2.0.json", - referenceNumber: 631, name: "Artistic License 2.0", licenseId: "Artistic-2.0", seeAlso: [ @@ -607,7 +560,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json", - referenceNumber: 420, name: "ASWF Digital Assets License version 1.0", licenseId: "ASWF-Digital-Assets-1.0", seeAlso: [ @@ -620,7 +572,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.json", - referenceNumber: 129, name: "ASWF Digital Assets License 1.1", licenseId: "ASWF-Digital-Assets-1.1", seeAlso: [ @@ -633,7 +584,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Baekmuk.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Baekmuk.json", - referenceNumber: 652, name: "Baekmuk License", licenseId: "Baekmuk", seeAlso: [ @@ -646,7 +596,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Bahyph.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Bahyph.json", - referenceNumber: 497, name: "Bahyph License", licenseId: "Bahyph", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Bahyph"], @@ -657,7 +606,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Barr.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Barr.json", - referenceNumber: 189, name: "Barr License", licenseId: "Barr", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Barr"], @@ -668,7 +616,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/bcrypt-Solar-Designer.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/bcrypt-Solar-Designer.json", - referenceNumber: 620, name: "bcrypt Solar Designer License", licenseId: "bcrypt-Solar-Designer", seeAlso: [ @@ -681,7 +628,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Beerware.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Beerware.json", - referenceNumber: 530, name: "Beerware License", licenseId: "Beerware", seeAlso: [ @@ -695,7 +641,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Bitstream-Charter.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Bitstream-Charter.json", - referenceNumber: 603, name: "Bitstream Charter Font License", licenseId: "Bitstream-Charter", seeAlso: [ @@ -709,7 +654,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Bitstream-Vera.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Bitstream-Vera.json", - referenceNumber: 501, name: "Bitstream Vera Font License", licenseId: "Bitstream-Vera", seeAlso: [ @@ -723,7 +667,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BitTorrent-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BitTorrent-1.0.json", - referenceNumber: 529, name: "BitTorrent Open Source License v1.0", licenseId: "BitTorrent-1.0", seeAlso: [ @@ -736,7 +679,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BitTorrent-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BitTorrent-1.1.json", - referenceNumber: 606, name: "BitTorrent Open Source License v1.1", licenseId: "BitTorrent-1.1", seeAlso: ["http://directory.fsf.org/wiki/License:BitTorrentOSL1.1"], @@ -748,7 +690,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/blessing.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/blessing.json", - referenceNumber: 578, name: "SQLite Blessing", licenseId: "blessing", seeAlso: [ @@ -762,7 +703,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BlueOak-1.0.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BlueOak-1.0.0.json", - referenceNumber: 136, name: "Blue Oak Model License 1.0.0", licenseId: "BlueOak-1.0.0", seeAlso: ["https://blueoakcouncil.org/license/1.0.0"], @@ -774,7 +714,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Boehm-GC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Boehm-GC.json", - referenceNumber: 311, name: "Boehm-Demers-Weiser GC License", licenseId: "Boehm-GC", seeAlso: [ @@ -789,7 +728,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Boehm-GC-without-fee.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Boehm-GC-without-fee.json", - referenceNumber: 239, name: "Boehm-Demers-Weiser GC License (without fee)", licenseId: "Boehm-GC-without-fee", seeAlso: [ @@ -802,7 +740,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Borceux.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Borceux.json", - referenceNumber: 318, name: "Borceux license", licenseId: "Borceux", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Borceux"], @@ -813,7 +750,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Brian-Gladman-2-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Brian-Gladman-2-Clause.json", - referenceNumber: 587, name: "Brian Gladman 2-Clause License", licenseId: "Brian-Gladman-2-Clause", seeAlso: [ @@ -827,7 +763,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Brian-Gladman-3-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Brian-Gladman-3-Clause.json", - referenceNumber: 462, name: "Brian Gladman 3-Clause License", licenseId: "Brian-Gladman-3-Clause", seeAlso: [ @@ -840,7 +775,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-1-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-1-Clause.json", - referenceNumber: 200, name: "BSD 1-Clause License", licenseId: "BSD-1-Clause", seeAlso: [ @@ -853,7 +787,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-2-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-2-Clause.json", - referenceNumber: 151, name: 'BSD 2-Clause "Simplified" License', licenseId: "BSD-2-Clause", seeAlso: ["https://opensource.org/licenses/BSD-2-Clause"], @@ -866,7 +799,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-2-Clause-Darwin.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-2-Clause-Darwin.json", - referenceNumber: 85, name: "BSD 2-Clause - Ian Darwin variant", licenseId: "BSD-2-Clause-Darwin", seeAlso: ["https://github.com/file/file/blob/master/COPYING"], @@ -877,7 +809,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-2-Clause-first-lines.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-2-Clause-first-lines.json", - referenceNumber: 96, name: "BSD 2-Clause - first lines requirement", licenseId: "BSD-2-Clause-first-lines", seeAlso: [ @@ -891,7 +822,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", - referenceNumber: 425, name: "BSD 2-Clause FreeBSD License", licenseId: "BSD-2-Clause-FreeBSD", seeAlso: ["http://www.freebsd.org/copyright/freebsd-license.html"], @@ -903,7 +833,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json", - referenceNumber: 24, name: "BSD 2-Clause NetBSD License", licenseId: "BSD-2-Clause-NetBSD", seeAlso: ["http://www.netbsd.org/about/redistribution.html#default"], @@ -915,7 +844,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-2-Clause-Patent.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-2-Clause-Patent.json", - referenceNumber: 443, name: "BSD-2-Clause Plus Patent License", licenseId: "BSD-2-Clause-Patent", seeAlso: ["https://opensource.org/licenses/BSDplusPatent"], @@ -926,7 +854,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-2-Clause-Views.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-2-Clause-Views.json", - referenceNumber: 673, name: "BSD 2-Clause with views sentence", licenseId: "BSD-2-Clause-Views", seeAlso: [ @@ -941,7 +868,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause.json", - referenceNumber: 396, name: 'BSD 3-Clause "New" or "Revised" License', licenseId: "BSD-3-Clause", seeAlso: [ @@ -957,7 +883,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-acpica.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-acpica.json", - referenceNumber: 367, name: "BSD 3-Clause acpica variant", licenseId: "BSD-3-Clause-acpica", seeAlso: [ @@ -970,7 +895,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-Attribution.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-Attribution.json", - referenceNumber: 538, name: "BSD with attribution", licenseId: "BSD-3-Clause-Attribution", seeAlso: [ @@ -983,7 +907,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-Clear.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-Clear.json", - referenceNumber: 37, name: "BSD 3-Clause Clear License", licenseId: "BSD-3-Clause-Clear", seeAlso: ["http://labs.metacarta.com/license-explanation.html#license"], @@ -995,7 +918,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-flex.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-flex.json", - referenceNumber: 641, name: "BSD 3-Clause Flex variant", licenseId: "BSD-3-Clause-flex", seeAlso: ["https://github.com/westes/flex/blob/master/COPYING"], @@ -1006,7 +928,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-HP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-HP.json", - referenceNumber: 302, name: "Hewlett-Packard BSD variant license", licenseId: "BSD-3-Clause-HP", seeAlso: ["https://github.com/zdohnal/hplip/blob/master/COPYING#L939"], @@ -1017,7 +938,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-LBNL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-LBNL.json", - referenceNumber: 647, name: "Lawrence Berkeley National Labs BSD variant license", licenseId: "BSD-3-Clause-LBNL", seeAlso: ["https://fedoraproject.org/wiki/Licensing/LBNLBSD"], @@ -1028,7 +948,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-Modification.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-Modification.json", - referenceNumber: 214, name: "BSD 3-Clause Modification", licenseId: "BSD-3-Clause-Modification", seeAlso: [ @@ -1043,7 +962,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.json", - referenceNumber: 317, name: "BSD 3-Clause No Military License", licenseId: "BSD-3-Clause-No-Military-License", seeAlso: [ @@ -1059,7 +977,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json", - referenceNumber: 384, name: "BSD 3-Clause No Nuclear License", licenseId: "BSD-3-Clause-No-Nuclear-License", seeAlso: ["http://download.oracle.com/otn-pub/java/licenses/bsd.txt"], @@ -1072,7 +989,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json", - referenceNumber: 60, name: "BSD 3-Clause No Nuclear License 2014", licenseId: "BSD-3-Clause-No-Nuclear-License-2014", seeAlso: [ @@ -1087,7 +1003,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json", - referenceNumber: 375, name: "BSD 3-Clause No Nuclear Warranty", licenseId: "BSD-3-Clause-No-Nuclear-Warranty", seeAlso: [ @@ -1100,7 +1015,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json", - referenceNumber: 479, name: "BSD 3-Clause Open MPI variant", licenseId: "BSD-3-Clause-Open-MPI", seeAlso: [ @@ -1114,7 +1028,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-3-Clause-Sun.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-3-Clause-Sun.json", - referenceNumber: 395, name: "BSD 3-Clause Sun Microsystems", licenseId: "BSD-3-Clause-Sun", seeAlso: [ @@ -1127,7 +1040,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-4-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-4-Clause.json", - referenceNumber: 391, name: 'BSD 4-Clause "Original" or "Old" License', licenseId: "BSD-4-Clause", seeAlso: ["http://directory.fsf.org/wiki/License:BSD_4Clause"], @@ -1139,7 +1051,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-4-Clause-Shortened.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-4-Clause-Shortened.json", - referenceNumber: 288, name: "BSD 4 Clause Shortened", licenseId: "BSD-4-Clause-Shortened", seeAlso: [ @@ -1152,7 +1063,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-4-Clause-UC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-4-Clause-UC.json", - referenceNumber: 194, name: "BSD-4-Clause (University of California-Specific)", licenseId: "BSD-4-Clause-UC", seeAlso: ["http://www.freebsd.org/copyright/license.html"], @@ -1163,7 +1073,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-4.3RENO.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-4.3RENO.json", - referenceNumber: 633, name: "BSD 4.3 RENO License", licenseId: "BSD-4.3RENO", seeAlso: [ @@ -1177,7 +1086,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-4.3TAHOE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-4.3TAHOE.json", - referenceNumber: 346, name: "BSD 4.3 TAHOE License", licenseId: "BSD-4.3TAHOE", seeAlso: [ @@ -1193,7 +1101,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json", - referenceNumber: 127, name: "BSD Advertising Acknowledgement License", licenseId: "BSD-Advertising-Acknowledgement", seeAlso: ["https://github.com/python-excel/xlrd/blob/master/LICENSE#L33"], @@ -1206,7 +1113,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.json", - referenceNumber: 477, name: "BSD with Attribution and HPND disclaimer", licenseId: "BSD-Attribution-HPND-disclaimer", seeAlso: ["https://github.com/cyrusimap/cyrus-sasl/blob/master/COPYING"], @@ -1217,7 +1123,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-Inferno-Nettverk.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Inferno-Nettverk.json", - referenceNumber: 27, name: "BSD-Inferno-Nettverk", licenseId: "BSD-Inferno-Nettverk", seeAlso: ["https://www.inet.no/dante/LICENSE"], @@ -1228,7 +1133,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-Protection.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Protection.json", - referenceNumber: 205, name: "BSD Protection License", licenseId: "BSD-Protection", seeAlso: [ @@ -1241,7 +1145,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-Source-beginning-file.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Source-beginning-file.json", - referenceNumber: 20, name: "BSD Source Code Attribution - beginning of file variant", licenseId: "BSD-Source-beginning-file", seeAlso: [ @@ -1254,7 +1157,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-Source-Code.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Source-Code.json", - referenceNumber: 260, name: "BSD Source Code Attribution", licenseId: "BSD-Source-Code", seeAlso: [ @@ -1267,7 +1169,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-Systemics.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Systemics.json", - referenceNumber: 276, name: "Systemics BSD variant license", licenseId: "BSD-Systemics", seeAlso: [ @@ -1280,7 +1181,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSD-Systemics-W3Works.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSD-Systemics-W3Works.json", - referenceNumber: 358, name: "Systemics W3Works BSD variant license", licenseId: "BSD-Systemics-W3Works", seeAlso: [ @@ -1293,7 +1193,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BSL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BSL-1.0.json", - referenceNumber: 364, name: "Boost Software License 1.0", licenseId: "BSL-1.0", seeAlso: [ @@ -1308,7 +1207,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/BUSL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/BUSL-1.1.json", - referenceNumber: 331, name: "Business Source License 1.1", licenseId: "BUSL-1.1", seeAlso: ["https://mariadb.com/bsl11/"], @@ -1319,7 +1217,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/bzip2-1.0.5.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/bzip2-1.0.5.json", - referenceNumber: 137, name: "bzip2 and libbzip2 License v1.0.5", licenseId: "bzip2-1.0.5", seeAlso: [ @@ -1333,7 +1230,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/bzip2-1.0.6.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/bzip2-1.0.6.json", - referenceNumber: 161, name: "bzip2 and libbzip2 License v1.0.6", licenseId: "bzip2-1.0.6", seeAlso: [ @@ -1348,7 +1244,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/C-UDA-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/C-UDA-1.0.json", - referenceNumber: 329, name: "Computational Use of Data Agreement v1.0", licenseId: "C-UDA-1.0", seeAlso: [ @@ -1362,7 +1257,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CAL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CAL-1.0.json", - referenceNumber: 675, name: "Cryptographic Autonomy License 1.0", licenseId: "CAL-1.0", seeAlso: [ @@ -1378,7 +1272,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json", - referenceNumber: 195, name: "Cryptographic Autonomy License 1.0 (Combined Work Exception)", licenseId: "CAL-1.0-Combined-Work-Exception", seeAlso: [ @@ -1392,7 +1285,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Caldera.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Caldera.json", - referenceNumber: 192, name: "Caldera License", licenseId: "Caldera", seeAlso: ["http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"], @@ -1403,7 +1295,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Caldera-no-preamble.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Caldera-no-preamble.json", - referenceNumber: 52, name: "Caldera License (without preamble)", licenseId: "Caldera-no-preamble", seeAlso: [ @@ -1416,7 +1307,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Catharon.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Catharon.json", - referenceNumber: 191, name: "Catharon License", licenseId: "Catharon", seeAlso: [ @@ -1429,7 +1319,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CATOSL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CATOSL-1.1.json", - referenceNumber: 209, name: "Computer Associates Trusted Open Source License 1.1", licenseId: "CATOSL-1.1", seeAlso: ["https://opensource.org/licenses/CATOSL-1.1"], @@ -1440,7 +1329,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-1.0.json", - referenceNumber: 310, name: "Creative Commons Attribution 1.0 Generic", licenseId: "CC-BY-1.0", seeAlso: ["https://creativecommons.org/licenses/by/1.0/legalcode"], @@ -1451,7 +1339,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-2.0.json", - referenceNumber: 170, name: "Creative Commons Attribution 2.0 Generic", licenseId: "CC-BY-2.0", seeAlso: ["https://creativecommons.org/licenses/by/2.0/legalcode"], @@ -1462,7 +1349,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-2.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-2.5.json", - referenceNumber: 444, name: "Creative Commons Attribution 2.5 Generic", licenseId: "CC-BY-2.5", seeAlso: ["https://creativecommons.org/licenses/by/2.5/legalcode"], @@ -1473,7 +1359,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-2.5-AU.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-2.5-AU.json", - referenceNumber: 630, name: "Creative Commons Attribution 2.5 Australia", licenseId: "CC-BY-2.5-AU", seeAlso: ["https://creativecommons.org/licenses/by/2.5/au/legalcode"], @@ -1484,7 +1369,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-3.0.json", - referenceNumber: 581, name: "Creative Commons Attribution 3.0 Unported", licenseId: "CC-BY-3.0", seeAlso: ["https://creativecommons.org/licenses/by/3.0/legalcode"], @@ -1496,7 +1380,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-3.0-AT.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-3.0-AT.json", - referenceNumber: 55, name: "Creative Commons Attribution 3.0 Austria", licenseId: "CC-BY-3.0-AT", seeAlso: ["https://creativecommons.org/licenses/by/3.0/at/legalcode"], @@ -1507,7 +1390,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-3.0-AU.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-3.0-AU.json", - referenceNumber: 8, name: "Creative Commons Attribution 3.0 Australia", licenseId: "CC-BY-3.0-AU", seeAlso: ["https://creativecommons.org/licenses/by/3.0/au/legalcode"], @@ -1518,7 +1400,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-3.0-DE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-3.0-DE.json", - referenceNumber: 229, name: "Creative Commons Attribution 3.0 Germany", licenseId: "CC-BY-3.0-DE", seeAlso: ["https://creativecommons.org/licenses/by/3.0/de/legalcode"], @@ -1529,7 +1410,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-3.0-IGO.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-3.0-IGO.json", - referenceNumber: 568, name: "Creative Commons Attribution 3.0 IGO", licenseId: "CC-BY-3.0-IGO", seeAlso: ["https://creativecommons.org/licenses/by/3.0/igo/legalcode"], @@ -1540,7 +1420,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-3.0-NL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-3.0-NL.json", - referenceNumber: 250, name: "Creative Commons Attribution 3.0 Netherlands", licenseId: "CC-BY-3.0-NL", seeAlso: ["https://creativecommons.org/licenses/by/3.0/nl/legalcode"], @@ -1551,7 +1430,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-3.0-US.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-3.0-US.json", - referenceNumber: 635, name: "Creative Commons Attribution 3.0 United States", licenseId: "CC-BY-3.0-US", seeAlso: ["https://creativecommons.org/licenses/by/3.0/us/legalcode"], @@ -1562,7 +1440,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-4.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-4.0.json", - referenceNumber: 585, name: "Creative Commons Attribution 4.0 International", licenseId: "CC-BY-4.0", seeAlso: ["https://creativecommons.org/licenses/by/4.0/legalcode"], @@ -1575,7 +1452,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-1.0.json", - referenceNumber: 432, name: "Creative Commons Attribution Non Commercial 1.0 Generic", licenseId: "CC-BY-NC-1.0", seeAlso: ["https://creativecommons.org/licenses/by-nc/1.0/legalcode"], @@ -1587,7 +1463,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-2.0.json", - referenceNumber: 550, name: "Creative Commons Attribution Non Commercial 2.0 Generic", licenseId: "CC-BY-NC-2.0", seeAlso: ["https://creativecommons.org/licenses/by-nc/2.0/legalcode"], @@ -1599,7 +1474,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-2.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-2.5.json", - referenceNumber: 270, name: "Creative Commons Attribution Non Commercial 2.5 Generic", licenseId: "CC-BY-NC-2.5", seeAlso: ["https://creativecommons.org/licenses/by-nc/2.5/legalcode"], @@ -1611,7 +1485,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-3.0.json", - referenceNumber: 234, name: "Creative Commons Attribution Non Commercial 3.0 Unported", licenseId: "CC-BY-NC-3.0", seeAlso: ["https://creativecommons.org/licenses/by-nc/3.0/legalcode"], @@ -1623,7 +1496,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-3.0-DE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-3.0-DE.json", - referenceNumber: 413, name: "Creative Commons Attribution Non Commercial 3.0 Germany", licenseId: "CC-BY-NC-3.0-DE", seeAlso: ["https://creativecommons.org/licenses/by-nc/3.0/de/legalcode"], @@ -1634,7 +1506,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-4.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-4.0.json", - referenceNumber: 646, name: "Creative Commons Attribution Non Commercial 4.0 International", licenseId: "CC-BY-NC-4.0", seeAlso: ["https://creativecommons.org/licenses/by-nc/4.0/legalcode"], @@ -1646,7 +1517,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json", - referenceNumber: 348, name: "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", licenseId: "CC-BY-NC-ND-1.0", seeAlso: ["https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode"], @@ -1657,7 +1527,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.json", - referenceNumber: 580, name: "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", licenseId: "CC-BY-NC-ND-2.0", seeAlso: ["https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"], @@ -1668,7 +1537,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.json", - referenceNumber: 514, name: "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", licenseId: "CC-BY-NC-ND-2.5", seeAlso: ["https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"], @@ -1679,7 +1547,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json", - referenceNumber: 43, name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", licenseId: "CC-BY-NC-ND-3.0", seeAlso: ["https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"], @@ -1690,7 +1557,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json", - referenceNumber: 81, name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", licenseId: "CC-BY-NC-ND-3.0-DE", seeAlso: [ @@ -1703,7 +1569,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json", - referenceNumber: 342, name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", licenseId: "CC-BY-NC-ND-3.0-IGO", seeAlso: [ @@ -1716,7 +1581,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.json", - referenceNumber: 148, name: "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", licenseId: "CC-BY-NC-ND-4.0", seeAlso: ["https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"], @@ -1727,7 +1591,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.json", - referenceNumber: 241, name: "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", licenseId: "CC-BY-NC-SA-1.0", seeAlso: ["https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"], @@ -1738,7 +1601,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json", - referenceNumber: 224, name: "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", licenseId: "CC-BY-NC-SA-2.0", seeAlso: ["https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"], @@ -1749,7 +1611,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json", - referenceNumber: 648, name: "Creative Commons Attribution Non Commercial Share Alike 2.0 Germany", licenseId: "CC-BY-NC-SA-2.0-DE", seeAlso: [ @@ -1762,7 +1623,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json", - referenceNumber: 187, name: "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", licenseId: "CC-BY-NC-SA-2.0-FR", seeAlso: [ @@ -1775,7 +1635,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json", - referenceNumber: 411, name: "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", licenseId: "CC-BY-NC-SA-2.0-UK", seeAlso: [ @@ -1788,7 +1647,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json", - referenceNumber: 617, name: "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", licenseId: "CC-BY-NC-SA-2.5", seeAlso: ["https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"], @@ -1799,7 +1657,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json", - referenceNumber: 583, name: "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", licenseId: "CC-BY-NC-SA-3.0", seeAlso: ["https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"], @@ -1810,7 +1667,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json", - referenceNumber: 644, name: "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", licenseId: "CC-BY-NC-SA-3.0-DE", seeAlso: [ @@ -1823,7 +1679,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json", - referenceNumber: 252, name: "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", licenseId: "CC-BY-NC-SA-3.0-IGO", seeAlso: [ @@ -1836,7 +1691,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json", - referenceNumber: 115, name: "Creative Commons Attribution Non Commercial Share Alike 4.0 International", licenseId: "CC-BY-NC-SA-4.0", seeAlso: ["https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"], @@ -1847,7 +1701,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-ND-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-ND-1.0.json", - referenceNumber: 489, name: "Creative Commons Attribution No Derivatives 1.0 Generic", licenseId: "CC-BY-ND-1.0", seeAlso: ["https://creativecommons.org/licenses/by-nd/1.0/legalcode"], @@ -1859,7 +1712,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-ND-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-ND-2.0.json", - referenceNumber: 143, name: "Creative Commons Attribution No Derivatives 2.0 Generic", licenseId: "CC-BY-ND-2.0", seeAlso: ["https://creativecommons.org/licenses/by-nd/2.0/legalcode"], @@ -1871,7 +1723,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-ND-2.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-ND-2.5.json", - referenceNumber: 56, name: "Creative Commons Attribution No Derivatives 2.5 Generic", licenseId: "CC-BY-ND-2.5", seeAlso: ["https://creativecommons.org/licenses/by-nd/2.5/legalcode"], @@ -1883,7 +1734,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-ND-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-ND-3.0.json", - referenceNumber: 2, name: "Creative Commons Attribution No Derivatives 3.0 Unported", licenseId: "CC-BY-ND-3.0", seeAlso: ["https://creativecommons.org/licenses/by-nd/3.0/legalcode"], @@ -1895,7 +1745,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-ND-3.0-DE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-ND-3.0-DE.json", - referenceNumber: 242, name: "Creative Commons Attribution No Derivatives 3.0 Germany", licenseId: "CC-BY-ND-3.0-DE", seeAlso: ["https://creativecommons.org/licenses/by-nd/3.0/de/legalcode"], @@ -1906,7 +1755,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-ND-4.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-ND-4.0.json", - referenceNumber: 389, name: "Creative Commons Attribution No Derivatives 4.0 International", licenseId: "CC-BY-ND-4.0", seeAlso: ["https://creativecommons.org/licenses/by-nd/4.0/legalcode"], @@ -1918,7 +1766,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-1.0.json", - referenceNumber: 82, name: "Creative Commons Attribution Share Alike 1.0 Generic", licenseId: "CC-BY-SA-1.0", seeAlso: ["https://creativecommons.org/licenses/by-sa/1.0/legalcode"], @@ -1929,7 +1776,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-2.0.json", - referenceNumber: 102, name: "Creative Commons Attribution Share Alike 2.0 Generic", licenseId: "CC-BY-SA-2.0", seeAlso: ["https://creativecommons.org/licenses/by-sa/2.0/legalcode"], @@ -1940,7 +1786,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json", - referenceNumber: 70, name: "Creative Commons Attribution Share Alike 2.0 England and Wales", licenseId: "CC-BY-SA-2.0-UK", seeAlso: ["https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"], @@ -1951,7 +1796,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json", - referenceNumber: 336, name: "Creative Commons Attribution Share Alike 2.1 Japan", licenseId: "CC-BY-SA-2.1-JP", seeAlso: ["https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode"], @@ -1962,7 +1806,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-2.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-2.5.json", - referenceNumber: 294, name: "Creative Commons Attribution Share Alike 2.5 Generic", licenseId: "CC-BY-SA-2.5", seeAlso: ["https://creativecommons.org/licenses/by-sa/2.5/legalcode"], @@ -1973,7 +1816,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-3.0.json", - referenceNumber: 57, name: "Creative Commons Attribution Share Alike 3.0 Unported", licenseId: "CC-BY-SA-3.0", seeAlso: ["https://creativecommons.org/licenses/by-sa/3.0/legalcode"], @@ -1984,7 +1826,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-3.0-AT.json", - referenceNumber: 9, name: "Creative Commons Attribution Share Alike 3.0 Austria", licenseId: "CC-BY-SA-3.0-AT", seeAlso: ["https://creativecommons.org/licenses/by-sa/3.0/at/legalcode"], @@ -1995,7 +1836,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-3.0-DE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json", - referenceNumber: 597, name: "Creative Commons Attribution Share Alike 3.0 Germany", licenseId: "CC-BY-SA-3.0-DE", seeAlso: ["https://creativecommons.org/licenses/by-sa/3.0/de/legalcode"], @@ -2006,7 +1846,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json", - referenceNumber: 83, name: "Creative Commons Attribution-ShareAlike 3.0 IGO", licenseId: "CC-BY-SA-3.0-IGO", seeAlso: ["https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode"], @@ -2017,7 +1856,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-BY-SA-4.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-BY-SA-4.0.json", - referenceNumber: 58, name: "Creative Commons Attribution Share Alike 4.0 International", licenseId: "CC-BY-SA-4.0", seeAlso: ["https://creativecommons.org/licenses/by-sa/4.0/legalcode"], @@ -2029,7 +1867,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-PDDC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-PDDC.json", - referenceNumber: 665, name: "Creative Commons Public Domain Dedication and Certification", licenseId: "CC-PDDC", seeAlso: ["https://creativecommons.org/licenses/publicdomain/"], @@ -2040,7 +1877,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-PDM-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-PDM-1.0.json", - referenceNumber: 65, name: "Creative Commons Public Domain Mark 1.0 Universal", licenseId: "CC-PDM-1.0", seeAlso: [ @@ -2054,7 +1890,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC-SA-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC-SA-1.0.json", - referenceNumber: 274, name: "Creative Commons Share Alike 1.0 Generic", licenseId: "CC-SA-1.0", seeAlso: ["https://creativecommons.org/licenses/sa/1.0/legalcode"], @@ -2065,7 +1900,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CC0-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CC0-1.0.json", - referenceNumber: 372, name: "Creative Commons Zero v1.0 Universal", licenseId: "CC0-1.0", seeAlso: ["https://creativecommons.org/publicdomain/zero/1.0/legalcode"], @@ -2078,7 +1912,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CDDL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CDDL-1.0.json", - referenceNumber: 350, name: "Common Development and Distribution License 1.0", licenseId: "CDDL-1.0", seeAlso: ["https://opensource.org/licenses/cddl1"], @@ -2090,7 +1923,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CDDL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CDDL-1.1.json", - referenceNumber: 253, name: "Common Development and Distribution License 1.1", licenseId: "CDDL-1.1", seeAlso: [ @@ -2104,7 +1936,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CDL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CDL-1.0.json", - referenceNumber: 44, name: "Common Documentation License 1.0", licenseId: "CDL-1.0", seeAlso: [ @@ -2119,7 +1950,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CDLA-Permissive-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CDLA-Permissive-1.0.json", - referenceNumber: 669, name: "Community Data License Agreement Permissive 1.0", licenseId: "CDLA-Permissive-1.0", seeAlso: ["https://cdla.io/permissive-1-0"], @@ -2130,7 +1960,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CDLA-Permissive-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CDLA-Permissive-2.0.json", - referenceNumber: 486, name: "Community Data License Agreement Permissive 2.0", licenseId: "CDLA-Permissive-2.0", seeAlso: ["https://cdla.dev/permissive-2-0"], @@ -2141,7 +1970,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CDLA-Sharing-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CDLA-Sharing-1.0.json", - referenceNumber: 499, name: "Community Data License Agreement Sharing 1.0", licenseId: "CDLA-Sharing-1.0", seeAlso: ["https://cdla.io/sharing-1-0"], @@ -2152,7 +1980,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CECILL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CECILL-1.0.json", - referenceNumber: 418, name: "CeCILL Free Software License Agreement v1.0", licenseId: "CECILL-1.0", seeAlso: ["http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html"], @@ -2163,7 +1990,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CECILL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CECILL-1.1.json", - referenceNumber: 10, name: "CeCILL Free Software License Agreement v1.1", licenseId: "CECILL-1.1", seeAlso: ["http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"], @@ -2174,7 +2000,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CECILL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CECILL-2.0.json", - referenceNumber: 405, name: "CeCILL Free Software License Agreement v2.0", licenseId: "CECILL-2.0", seeAlso: ["http://www.cecill.info/licences/Licence_CeCILL_V2-en.html"], @@ -2186,7 +2011,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CECILL-2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CECILL-2.1.json", - referenceNumber: 184, name: "CeCILL Free Software License Agreement v2.1", licenseId: "CECILL-2.1", seeAlso: ["http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"], @@ -2197,7 +2021,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CECILL-B.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CECILL-B.json", - referenceNumber: 539, name: "CeCILL-B Free Software License Agreement", licenseId: "CECILL-B", seeAlso: ["http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"], @@ -2209,7 +2032,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CECILL-C.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CECILL-C.json", - referenceNumber: 92, name: "CeCILL-C Free Software License Agreement", licenseId: "CECILL-C", seeAlso: ["http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"], @@ -2221,7 +2043,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CERN-OHL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CERN-OHL-1.1.json", - referenceNumber: 354, name: "CERN Open Hardware Licence v1.1", licenseId: "CERN-OHL-1.1", seeAlso: ["https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1"], @@ -2232,7 +2053,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CERN-OHL-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CERN-OHL-1.2.json", - referenceNumber: 459, name: "CERN Open Hardware Licence v1.2", licenseId: "CERN-OHL-1.2", seeAlso: ["https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2"], @@ -2243,7 +2063,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CERN-OHL-P-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CERN-OHL-P-2.0.json", - referenceNumber: 29, name: "CERN Open Hardware Licence Version 2 - Permissive", licenseId: "CERN-OHL-P-2.0", seeAlso: [ @@ -2256,7 +2075,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CERN-OHL-S-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CERN-OHL-S-2.0.json", - referenceNumber: 624, name: "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", licenseId: "CERN-OHL-S-2.0", seeAlso: [ @@ -2269,7 +2087,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CERN-OHL-W-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CERN-OHL-W-2.0.json", - referenceNumber: 613, name: "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", licenseId: "CERN-OHL-W-2.0", seeAlso: [ @@ -2282,7 +2099,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CFITSIO.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CFITSIO.json", - referenceNumber: 255, name: "CFITSIO License", licenseId: "CFITSIO", seeAlso: [ @@ -2296,7 +2112,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/check-cvs.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/check-cvs.json", - referenceNumber: 146, name: "check-cvs License", licenseId: "check-cvs", seeAlso: [ @@ -2309,7 +2124,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/checkmk.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/checkmk.json", - referenceNumber: 468, name: "Checkmk License", licenseId: "checkmk", seeAlso: [ @@ -2322,7 +2136,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ClArtistic.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ClArtistic.json", - referenceNumber: 97, name: "Clarified Artistic License", licenseId: "ClArtistic", seeAlso: [ @@ -2337,7 +2150,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Clips.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Clips.json", - referenceNumber: 365, name: "Clips License", licenseId: "Clips", seeAlso: ["https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS"], @@ -2348,7 +2160,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CMU-Mach.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CMU-Mach.json", - referenceNumber: 518, name: "CMU Mach License", licenseId: "CMU-Mach", seeAlso: ["https://www.cs.cmu.edu/~410/licenses.html"], @@ -2359,7 +2170,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CMU-Mach-nodoc.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CMU-Mach-nodoc.json", - referenceNumber: 103, name: "CMU Mach - no notices-in-documentation variant", licenseId: "CMU-Mach-nodoc", seeAlso: [ @@ -2373,7 +2183,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CNRI-Jython.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CNRI-Jython.json", - referenceNumber: 94, name: "CNRI Jython License", licenseId: "CNRI-Jython", seeAlso: ["http://www.jython.org/license.html"], @@ -2384,7 +2193,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CNRI-Python.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CNRI-Python.json", - referenceNumber: 59, name: "CNRI Python License", licenseId: "CNRI-Python", seeAlso: ["https://opensource.org/licenses/CNRI-Python"], @@ -2395,7 +2203,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json", - referenceNumber: 188, name: "CNRI Python Open Source GPL Compatible License Agreement", licenseId: "CNRI-Python-GPL-Compatible", seeAlso: ["http://www.python.org/download/releases/1.6.1/download_win/"], @@ -2406,7 +2213,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/COIL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/COIL-1.0.json", - referenceNumber: 570, name: "Copyfree Open Innovation License", licenseId: "COIL-1.0", seeAlso: ["https://coil.apotheon.org/plaintext/01.0.txt"], @@ -2417,7 +2223,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Community-Spec-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Community-Spec-1.0.json", - referenceNumber: 332, name: "Community Specification License 1.0", licenseId: "Community-Spec-1.0", seeAlso: [ @@ -2430,7 +2235,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Condor-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Condor-1.1.json", - referenceNumber: 201, name: "Condor Public License v1.1", licenseId: "Condor-1.1", seeAlso: [ @@ -2445,7 +2249,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/copyleft-next-0.3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/copyleft-next-0.3.0.json", - referenceNumber: 28, name: "copyleft-next 0.3.0", licenseId: "copyleft-next-0.3.0", seeAlso: [ @@ -2458,7 +2261,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/copyleft-next-0.3.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/copyleft-next-0.3.1.json", - referenceNumber: 19, name: "copyleft-next 0.3.1", licenseId: "copyleft-next-0.3.1", seeAlso: [ @@ -2471,7 +2273,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Cornell-Lossless-JPEG.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Cornell-Lossless-JPEG.json", - referenceNumber: 481, name: "Cornell Lossless JPEG License", licenseId: "Cornell-Lossless-JPEG", seeAlso: [ @@ -2486,7 +2287,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CPAL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CPAL-1.0.json", - referenceNumber: 218, name: "Common Public Attribution License 1.0", licenseId: "CPAL-1.0", seeAlso: ["https://opensource.org/licenses/CPAL-1.0"], @@ -2498,7 +2298,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CPL-1.0.json", - referenceNumber: 322, name: "Common Public License 1.0", licenseId: "CPL-1.0", seeAlso: ["https://opensource.org/licenses/CPL-1.0"], @@ -2510,7 +2309,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CPOL-1.02.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CPOL-1.02.json", - referenceNumber: 23, name: "Code Project Open License 1.02", licenseId: "CPOL-1.02", seeAlso: ["http://www.codeproject.com/info/cpol10.aspx"], @@ -2522,7 +2320,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Cronyx.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Cronyx.json", - referenceNumber: 301, name: "Cronyx License", licenseId: "Cronyx", seeAlso: [ @@ -2538,7 +2335,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Crossword.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Crossword.json", - referenceNumber: 280, name: "Crossword License", licenseId: "Crossword", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Crossword"], @@ -2549,7 +2345,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CrystalStacker.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CrystalStacker.json", - referenceNumber: 75, name: "CrystalStacker License", licenseId: "CrystalStacker", seeAlso: [ @@ -2562,7 +2357,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/CUA-OPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/CUA-OPL-1.0.json", - referenceNumber: 159, name: "CUA Office Public License v1.0", licenseId: "CUA-OPL-1.0", seeAlso: ["https://opensource.org/licenses/CUA-OPL-1.0"], @@ -2573,7 +2367,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Cube.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Cube.json", - referenceNumber: 525, name: "Cube License", licenseId: "Cube", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Cube"], @@ -2584,7 +2377,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/curl.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/curl.json", - referenceNumber: 74, name: "curl License", licenseId: "curl", seeAlso: ["https://github.com/bagder/curl/blob/master/COPYING"], @@ -2595,7 +2387,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/cve-tou.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/cve-tou.json", - referenceNumber: 526, name: "Common Vulnerability Enumeration ToU License", licenseId: "cve-tou", seeAlso: ["https://www.cve.org/Legal/TermsOfUse"], @@ -2606,7 +2397,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/D-FSL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/D-FSL-1.0.json", - referenceNumber: 458, name: "Deutsche Freie Software Lizenz", licenseId: "D-FSL-1.0", seeAlso: [ @@ -2626,7 +2416,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DEC-3-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DEC-3-Clause.json", - referenceNumber: 157, name: "DEC 3-Clause License", licenseId: "DEC-3-Clause", seeAlso: [ @@ -2639,7 +2428,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/diffmark.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/diffmark.json", - referenceNumber: 636, name: "diffmark license", licenseId: "diffmark", seeAlso: ["https://fedoraproject.org/wiki/Licensing/diffmark"], @@ -2650,7 +2438,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DL-DE-BY-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DL-DE-BY-2.0.json", - referenceNumber: 659, name: "Data licence Germany – attribution – version 2.0", licenseId: "DL-DE-BY-2.0", seeAlso: ["https://www.govdata.de/dl-de/by-2-0"], @@ -2661,7 +2448,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DL-DE-ZERO-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DL-DE-ZERO-2.0.json", - referenceNumber: 41, name: "Data licence Germany – zero – version 2.0", licenseId: "DL-DE-ZERO-2.0", seeAlso: ["https://www.govdata.de/dl-de/zero-2-0"], @@ -2672,7 +2458,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DOC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DOC.json", - referenceNumber: 381, name: "DOC License", licenseId: "DOC", seeAlso: [ @@ -2686,7 +2471,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DocBook-Schema.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DocBook-Schema.json", - referenceNumber: 537, name: "DocBook Schema License", licenseId: "DocBook-Schema", seeAlso: [ @@ -2699,7 +2483,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DocBook-Stylesheet.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DocBook-Stylesheet.json", - referenceNumber: 579, name: "DocBook Stylesheet License", licenseId: "DocBook-Stylesheet", seeAlso: ["http://www.docbook.org/xml/5.0/docbook-5.0.zip"], @@ -2710,7 +2493,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DocBook-XML.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DocBook-XML.json", - referenceNumber: 320, name: "DocBook XML License", licenseId: "DocBook-XML", seeAlso: [ @@ -2723,7 +2505,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Dotseqn.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Dotseqn.json", - referenceNumber: 140, name: "Dotseqn License", licenseId: "Dotseqn", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Dotseqn"], @@ -2734,7 +2515,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DRL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DRL-1.0.json", - referenceNumber: 611, name: "Detection Rule License 1.0", licenseId: "DRL-1.0", seeAlso: [ @@ -2747,7 +2527,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DRL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DRL-1.1.json", - referenceNumber: 572, name: "Detection Rule License 1.1", licenseId: "DRL-1.1", seeAlso: [ @@ -2760,7 +2539,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/DSDP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/DSDP.json", - referenceNumber: 544, name: "DSDP License", licenseId: "DSDP", seeAlso: ["https://fedoraproject.org/wiki/Licensing/DSDP"], @@ -2771,7 +2549,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/dtoa.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/dtoa.json", - referenceNumber: 658, name: "David M. Gay dtoa License", licenseId: "dtoa", seeAlso: [ @@ -2785,7 +2562,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/dvipdfm.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/dvipdfm.json", - referenceNumber: 390, name: "dvipdfm License", licenseId: "dvipdfm", seeAlso: ["https://fedoraproject.org/wiki/Licensing/dvipdfm"], @@ -2796,7 +2572,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ECL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ECL-1.0.json", - referenceNumber: 533, name: "Educational Community License v1.0", licenseId: "ECL-1.0", seeAlso: ["https://opensource.org/licenses/ECL-1.0"], @@ -2807,7 +2582,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ECL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ECL-2.0.json", - referenceNumber: 445, name: "Educational Community License v2.0", licenseId: "ECL-2.0", seeAlso: ["https://opensource.org/licenses/ECL-2.0"], @@ -2819,7 +2593,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/eCos-2.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/eCos-2.0.json", - referenceNumber: 439, name: "eCos license version 2.0", licenseId: "eCos-2.0", seeAlso: ["https://www.gnu.org/licenses/ecos-license.html"], @@ -2831,7 +2604,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EFL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EFL-1.0.json", - referenceNumber: 400, name: "Eiffel Forum License v1.0", licenseId: "EFL-1.0", seeAlso: [ @@ -2845,7 +2617,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EFL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EFL-2.0.json", - referenceNumber: 450, name: "Eiffel Forum License v2.0", licenseId: "EFL-2.0", seeAlso: [ @@ -2860,7 +2631,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/eGenix.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/eGenix.json", - referenceNumber: 394, name: "eGenix.com Public License 1.1.0", licenseId: "eGenix", seeAlso: [ @@ -2874,7 +2644,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Elastic-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Elastic-2.0.json", - referenceNumber: 512, name: "Elastic License 2.0", licenseId: "Elastic-2.0", seeAlso: [ @@ -2888,7 +2657,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Entessa.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Entessa.json", - referenceNumber: 660, name: "Entessa Public License v1.0", licenseId: "Entessa", seeAlso: ["https://opensource.org/licenses/Entessa"], @@ -2899,7 +2667,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EPICS.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EPICS.json", - referenceNumber: 650, name: "EPICS Open License", licenseId: "EPICS", seeAlso: ["https://epics.anl.gov/license/open.php"], @@ -2910,7 +2677,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EPL-1.0.json", - referenceNumber: 640, name: "Eclipse Public License 1.0", licenseId: "EPL-1.0", seeAlso: [ @@ -2925,7 +2691,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EPL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EPL-2.0.json", - referenceNumber: 467, name: "Eclipse Public License 2.0", licenseId: "EPL-2.0", seeAlso: [ @@ -2940,7 +2705,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ErlPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ErlPL-1.1.json", - referenceNumber: 275, name: "Erlang Public License v1.1", licenseId: "ErlPL-1.1", seeAlso: ["http://www.erlang.org/EPLICENSE"], @@ -2951,7 +2715,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/etalab-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/etalab-2.0.json", - referenceNumber: 273, name: "Etalab Open License 2.0", licenseId: "etalab-2.0", seeAlso: [ @@ -2965,7 +2728,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EUDatagrid.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EUDatagrid.json", - referenceNumber: 66, name: "EU DataGrid Software License", licenseId: "EUDatagrid", seeAlso: [ @@ -2980,7 +2742,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EUPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EUPL-1.0.json", - referenceNumber: 639, name: "European Union Public License 1.0", licenseId: "EUPL-1.0", seeAlso: [ @@ -2994,7 +2755,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EUPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EUPL-1.1.json", - referenceNumber: 163, name: "European Union Public License 1.1", licenseId: "EUPL-1.1", seeAlso: [ @@ -3010,7 +2770,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/EUPL-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/EUPL-1.2.json", - referenceNumber: 596, name: "European Union Public License 1.2", licenseId: "EUPL-1.2", seeAlso: [ @@ -3029,7 +2788,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Eurosym.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Eurosym.json", - referenceNumber: 15, name: "Eurosym License", licenseId: "Eurosym", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Eurosym"], @@ -3040,7 +2798,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Fair.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Fair.json", - referenceNumber: 39, name: "Fair License", licenseId: "Fair", seeAlso: [ @@ -3054,7 +2811,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FBM.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FBM.json", - referenceNumber: 235, name: "Fuzzy Bitmap License", licenseId: "FBM", seeAlso: [ @@ -3067,7 +2823,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FDK-AAC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FDK-AAC.json", - referenceNumber: 628, name: "Fraunhofer FDK AAC Codec Library", licenseId: "FDK-AAC", seeAlso: [ @@ -3081,7 +2836,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Ferguson-Twofish.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Ferguson-Twofish.json", - referenceNumber: 98, name: "Ferguson Twofish License", licenseId: "Ferguson-Twofish", seeAlso: [ @@ -3094,7 +2848,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Frameworx-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Frameworx-1.0.json", - referenceNumber: 286, name: "Frameworx Open License 1.0", licenseId: "Frameworx-1.0", seeAlso: ["https://opensource.org/licenses/Frameworx-1.0"], @@ -3105,7 +2858,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FreeBSD-DOC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FreeBSD-DOC.json", - referenceNumber: 504, name: "FreeBSD Documentation License", licenseId: "FreeBSD-DOC", seeAlso: ["https://www.freebsd.org/copyright/freebsd-doc-license/"], @@ -3116,7 +2868,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FreeImage.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FreeImage.json", - referenceNumber: 643, name: "FreeImage Public License v1.0", licenseId: "FreeImage", seeAlso: ["http://freeimage.sourceforge.net/freeimage-license.txt"], @@ -3127,7 +2878,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FSFAP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FSFAP.json", - referenceNumber: 126, name: "FSF All Permissive License", licenseId: "FSFAP", seeAlso: [ @@ -3141,7 +2891,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.json", - referenceNumber: 415, name: "FSF All Permissive License (without Warranty)", licenseId: "FSFAP-no-warranty-disclaimer", seeAlso: [ @@ -3154,7 +2903,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FSFUL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FSFUL.json", - referenceNumber: 4, name: "FSF Unlimited License", licenseId: "FSFUL", seeAlso: [ @@ -3167,7 +2915,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FSFULLR.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FSFULLR.json", - referenceNumber: 421, name: "FSF Unlimited License (with License Retention)", licenseId: "FSFULLR", seeAlso: [ @@ -3180,7 +2927,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FSFULLRWD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FSFULLRWD.json", - referenceNumber: 141, name: "FSF Unlimited License (With License Retention and Warranty Disclaimer)", licenseId: "FSFULLRWD", seeAlso: [ @@ -3193,7 +2939,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/FTL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/FTL.json", - referenceNumber: 237, name: "Freetype Project License", licenseId: "FTL", seeAlso: [ @@ -3209,7 +2954,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Furuseth.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Furuseth.json", - referenceNumber: 220, name: "Furuseth License", licenseId: "Furuseth", seeAlso: [ @@ -3222,7 +2966,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/fwlw.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/fwlw.json", - referenceNumber: 426, name: "fwlw License", licenseId: "fwlw", seeAlso: [ @@ -3235,7 +2978,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GCR-docs.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GCR-docs.json", - referenceNumber: 335, name: "Gnome GCR Documentation License", licenseId: "GCR-docs", seeAlso: ["https://github.com/GNOME/gcr/blob/master/docs/COPYING"], @@ -3246,7 +2988,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GD.json", - referenceNumber: 266, name: "GD License", licenseId: "GD", seeAlso: ["https://libgd.github.io/manuals/2.3.0/files/license-txt.html"], @@ -3257,7 +2998,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/generic-xts.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/generic-xts.json", - referenceNumber: 314, name: "Generic XTS License", licenseId: "generic-xts", seeAlso: [ @@ -3270,7 +3010,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.1.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GFDL-1.1.json", - referenceNumber: 574, name: "GNU Free Documentation License v1.1", licenseId: "GFDL-1.1", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], @@ -3282,7 +3021,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.1-invariants-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.1-invariants-only.json", - referenceNumber: 134, name: "GNU Free Documentation License v1.1 only - invariants", licenseId: "GFDL-1.1-invariants-only", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], @@ -3293,7 +3031,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json", - referenceNumber: 359, name: "GNU Free Documentation License v1.1 or later - invariants", licenseId: "GFDL-1.1-invariants-or-later", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], @@ -3304,7 +3041,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json", - referenceNumber: 154, name: "GNU Free Documentation License v1.1 only - no invariants", licenseId: "GFDL-1.1-no-invariants-only", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], @@ -3317,7 +3053,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json", - referenceNumber: 408, name: "GNU Free Documentation License v1.1 or later - no invariants", licenseId: "GFDL-1.1-no-invariants-or-later", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], @@ -3328,7 +3063,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.1-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.1-only.json", - referenceNumber: 490, name: "GNU Free Documentation License v1.1 only", licenseId: "GFDL-1.1-only", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], @@ -3340,7 +3074,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.1-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.1-or-later.json", - referenceNumber: 557, name: "GNU Free Documentation License v1.1 or later", licenseId: "GFDL-1.1-or-later", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"], @@ -3352,7 +3085,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.2.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GFDL-1.2.json", - referenceNumber: 653, name: "GNU Free Documentation License v1.2", licenseId: "GFDL-1.2", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], @@ -3364,7 +3096,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.2-invariants-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.2-invariants-only.json", - referenceNumber: 7, name: "GNU Free Documentation License v1.2 only - invariants", licenseId: "GFDL-1.2-invariants-only", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], @@ -3375,7 +3106,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json", - referenceNumber: 429, name: "GNU Free Documentation License v1.2 or later - invariants", licenseId: "GFDL-1.2-invariants-or-later", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], @@ -3386,7 +3116,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.json", - referenceNumber: 283, name: "GNU Free Documentation License v1.2 only - no invariants", licenseId: "GFDL-1.2-no-invariants-only", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], @@ -3399,7 +3128,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json", - referenceNumber: 386, name: "GNU Free Documentation License v1.2 or later - no invariants", licenseId: "GFDL-1.2-no-invariants-or-later", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], @@ -3410,7 +3138,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.2-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.2-only.json", - referenceNumber: 111, name: "GNU Free Documentation License v1.2 only", licenseId: "GFDL-1.2-only", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], @@ -3422,7 +3149,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.2-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.2-or-later.json", - referenceNumber: 360, name: "GNU Free Documentation License v1.2 or later", licenseId: "GFDL-1.2-or-later", seeAlso: ["https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"], @@ -3434,7 +3160,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.3.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GFDL-1.3.json", - referenceNumber: 100, name: "GNU Free Documentation License v1.3", licenseId: "GFDL-1.3", seeAlso: ["https://www.gnu.org/licenses/fdl-1.3.txt"], @@ -3446,7 +3171,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.3-invariants-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.3-invariants-only.json", - referenceNumber: 298, name: "GNU Free Documentation License v1.3 only - invariants", licenseId: "GFDL-1.3-invariants-only", seeAlso: ["https://www.gnu.org/licenses/fdl-1.3.txt"], @@ -3457,7 +3181,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json", - referenceNumber: 166, name: "GNU Free Documentation License v1.3 or later - invariants", licenseId: "GFDL-1.3-invariants-or-later", seeAlso: ["https://www.gnu.org/licenses/fdl-1.3.txt"], @@ -3468,7 +3191,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json", - referenceNumber: 292, name: "GNU Free Documentation License v1.3 only - no invariants", licenseId: "GFDL-1.3-no-invariants-only", seeAlso: ["https://www.gnu.org/licenses/fdl-1.3.txt"], @@ -3481,7 +3203,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json", - referenceNumber: 478, name: "GNU Free Documentation License v1.3 or later - no invariants", licenseId: "GFDL-1.3-no-invariants-or-later", seeAlso: ["https://www.gnu.org/licenses/fdl-1.3.txt"], @@ -3492,7 +3213,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.3-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.3-only.json", - referenceNumber: 575, name: "GNU Free Documentation License v1.3 only", licenseId: "GFDL-1.3-only", seeAlso: ["https://www.gnu.org/licenses/fdl-1.3.txt"], @@ -3504,7 +3224,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GFDL-1.3-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GFDL-1.3-or-later.json", - referenceNumber: 177, name: "GNU Free Documentation License v1.3 or later", licenseId: "GFDL-1.3-or-later", seeAlso: ["https://www.gnu.org/licenses/fdl-1.3.txt"], @@ -3516,7 +3235,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Giftware.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Giftware.json", - referenceNumber: 183, name: "Giftware License", licenseId: "Giftware", seeAlso: [ @@ -3529,7 +3247,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GL2PS.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GL2PS.json", - referenceNumber: 491, name: "GL2PS License", licenseId: "GL2PS", seeAlso: ["http://www.geuz.org/gl2ps/COPYING.GL2PS"], @@ -3540,7 +3257,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Glide.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Glide.json", - referenceNumber: 337, name: "3dfx Glide License", licenseId: "Glide", seeAlso: ["http://www.users.on.net/~triforce/glidexp/COPYING.txt"], @@ -3551,7 +3267,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Glulxe.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Glulxe.json", - referenceNumber: 554, name: "Glulxe License", licenseId: "Glulxe", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Glulxe"], @@ -3562,7 +3277,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GLWTPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GLWTPL.json", - referenceNumber: 483, name: "Good Luck With That Public License", licenseId: "GLWTPL", seeAlso: [ @@ -3575,7 +3289,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/gnuplot.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/gnuplot.json", - referenceNumber: 511, name: "gnuplot License", licenseId: "gnuplot", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Gnuplot"], @@ -3587,7 +3300,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-1.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-1.0.json", - referenceNumber: 517, name: "GNU General Public License v1.0 only", licenseId: "GPL-1.0", seeAlso: [ @@ -3600,7 +3312,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-1.0+.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-1.0+.json", - referenceNumber: 552, name: "GNU General Public License v1.0 or later", licenseId: "GPL-1.0+", seeAlso: [ @@ -3613,7 +3324,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-1.0-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GPL-1.0-only.json", - referenceNumber: 174, name: "GNU General Public License v1.0 only", licenseId: "GPL-1.0-only", seeAlso: [ @@ -3626,7 +3336,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-1.0-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GPL-1.0-or-later.json", - referenceNumber: 18, name: "GNU General Public License v1.0 or later", licenseId: "GPL-1.0-or-later", seeAlso: [ @@ -3639,7 +3348,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-2.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-2.0.json", - referenceNumber: 47, name: "GNU General Public License v2.0 only", licenseId: "GPL-2.0", seeAlso: [ @@ -3654,7 +3362,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-2.0+.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-2.0+.json", - referenceNumber: 626, name: "GNU General Public License v2.0 or later", licenseId: "GPL-2.0+", seeAlso: [ @@ -3669,7 +3376,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-2.0-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GPL-2.0-only.json", - referenceNumber: 612, name: "GNU General Public License v2.0 only", licenseId: "GPL-2.0-only", seeAlso: [ @@ -3685,7 +3391,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-2.0-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GPL-2.0-or-later.json", - referenceNumber: 454, name: "GNU General Public License v2.0 or later", licenseId: "GPL-2.0-or-later", seeAlso: [ @@ -3702,7 +3407,6 @@ export const licensesData = { isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json", - referenceNumber: 402, name: "GNU General Public License v2.0 w/Autoconf exception", licenseId: "GPL-2.0-with-autoconf-exception", seeAlso: ["http://ac-archive.sourceforge.net/doc/copyright.html"], @@ -3713,7 +3417,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json", - referenceNumber: 536, name: "GNU General Public License v2.0 w/Bison exception", licenseId: "GPL-2.0-with-bison-exception", seeAlso: [ @@ -3728,7 +3431,6 @@ export const licensesData = { isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json", - referenceNumber: 326, name: "GNU General Public License v2.0 w/Classpath exception", licenseId: "GPL-2.0-with-classpath-exception", seeAlso: ["https://www.gnu.org/software/classpath/license.html"], @@ -3739,7 +3441,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-2.0-with-font-exception.json", - referenceNumber: 666, name: "GNU General Public License v2.0 w/Font exception", licenseId: "GPL-2.0-with-font-exception", seeAlso: ["https://www.gnu.org/licenses/gpl-faq.html#FontException"], @@ -3750,7 +3451,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json", - referenceNumber: 321, name: "GNU General Public License v2.0 w/GCC Runtime Library exception", licenseId: "GPL-2.0-with-GCC-exception", seeAlso: [ @@ -3763,7 +3463,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-3.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-3.0.json", - referenceNumber: 169, name: "GNU General Public License v3.0 only", licenseId: "GPL-3.0", seeAlso: [ @@ -3778,7 +3477,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-3.0+.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-3.0+.json", - referenceNumber: 564, name: "GNU General Public License v3.0 or later", licenseId: "GPL-3.0+", seeAlso: [ @@ -3793,7 +3491,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-3.0-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GPL-3.0-only.json", - referenceNumber: 436, name: "GNU General Public License v3.0 only", licenseId: "GPL-3.0-only", seeAlso: [ @@ -3808,7 +3505,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-3.0-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/GPL-3.0-or-later.json", - referenceNumber: 614, name: "GNU General Public License v3.0 or later", licenseId: "GPL-3.0-or-later", seeAlso: [ @@ -3826,7 +3522,6 @@ export const licensesData = { isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json", - referenceNumber: 549, name: "GNU General Public License v3.0 w/Autoconf exception", licenseId: "GPL-3.0-with-autoconf-exception", seeAlso: ["https://www.gnu.org/licenses/autoconf-exception-3.0.html"], @@ -3837,7 +3532,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.json", - referenceNumber: 208, name: "GNU General Public License v3.0 w/GCC Runtime Library exception", licenseId: "GPL-3.0-with-GCC-exception", seeAlso: ["https://www.gnu.org/licenses/gcc-exception-3.1.html"], @@ -3848,7 +3542,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Graphics-Gems.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Graphics-Gems.json", - referenceNumber: 281, name: "Graphics Gems License", licenseId: "Graphics-Gems", seeAlso: [ @@ -3861,7 +3554,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/gSOAP-1.3b.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/gSOAP-1.3b.json", - referenceNumber: 25, name: "gSOAP Public License v1.3b", licenseId: "gSOAP-1.3b", seeAlso: ["http://www.cs.fsu.edu/~engelen/license.html"], @@ -3872,7 +3564,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/gtkbook.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/gtkbook.json", - referenceNumber: 3, name: "gtkbook License", licenseId: "gtkbook", seeAlso: [ @@ -3886,7 +3577,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Gutmann.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Gutmann.json", - referenceNumber: 496, name: "Gutmann License", licenseId: "Gutmann", seeAlso: ["https://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c"], @@ -3897,7 +3587,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HaskellReport.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HaskellReport.json", - referenceNumber: 534, name: "Haskell Language Report License", licenseId: "HaskellReport", seeAlso: [ @@ -3910,7 +3599,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/hdparm.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/hdparm.json", - referenceNumber: 87, name: "hdparm License", licenseId: "hdparm", seeAlso: [ @@ -3923,7 +3611,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HIDAPI.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HIDAPI.json", - referenceNumber: 471, name: "HIDAPI License", licenseId: "HIDAPI", seeAlso: [ @@ -3936,7 +3623,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Hippocratic-2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Hippocratic-2.1.json", - referenceNumber: 566, name: "Hippocratic License 2.1", licenseId: "Hippocratic-2.1", seeAlso: [ @@ -3950,7 +3636,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HP-1986.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HP-1986.json", - referenceNumber: 182, name: "Hewlett-Packard 1986 License", licenseId: "HP-1986", seeAlso: [ @@ -3963,7 +3648,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HP-1989.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HP-1989.json", - referenceNumber: 202, name: "Hewlett-Packard 1989 License", licenseId: "HP-1989", seeAlso: ["https://github.com/bleargh45/Data-UUID/blob/master/LICENSE"], @@ -3974,7 +3658,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND.json", - referenceNumber: 40, name: "Historical Permission Notice and Disclaimer", licenseId: "HPND", seeAlso: [ @@ -3989,7 +3672,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-DEC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-DEC.json", - referenceNumber: 474, name: "Historical Permission Notice and Disclaimer - DEC variant", licenseId: "HPND-DEC", seeAlso: [ @@ -4002,7 +3684,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-doc.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-doc.json", - referenceNumber: 625, name: "Historical Permission Notice and Disclaimer - documentation variant", licenseId: "HPND-doc", seeAlso: [ @@ -4016,7 +3697,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-doc-sell.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-doc-sell.json", - referenceNumber: 257, name: "Historical Permission Notice and Disclaimer - documentation sell variant", licenseId: "HPND-doc-sell", seeAlso: [ @@ -4030,7 +3710,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-export-US.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-export-US.json", - referenceNumber: 144, name: "HPND with US Government export control warning", licenseId: "HPND-export-US", seeAlso: ["https://www.kermitproject.org/ck90.html#source"], @@ -4043,7 +3722,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-export-US-acknowledgement.json", - referenceNumber: 540, name: "HPND with US Government export control warning and acknowledgment", licenseId: "HPND-export-US-acknowledgement", seeAlso: [ @@ -4057,7 +3735,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-export-US-modify.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-export-US-modify.json", - referenceNumber: 563, name: "HPND with US Government export control warning and modification rqmt", licenseId: "HPND-export-US-modify", seeAlso: [ @@ -4071,7 +3748,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-export2-US.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-export2-US.json", - referenceNumber: 61, name: "HPND with US Government export control and 2 disclaimers", licenseId: "HPND-export2-US", seeAlso: [ @@ -4085,7 +3761,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-Fenneberg-Livingston.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-Fenneberg-Livingston.json", - referenceNumber: 446, name: "Historical Permission Notice and Disclaimer - Fenneberg-Livingston variant", licenseId: "HPND-Fenneberg-Livingston", seeAlso: [ @@ -4099,7 +3774,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-INRIA-IMAG.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-INRIA-IMAG.json", - referenceNumber: 297, name: "Historical Permission Notice and Disclaimer - INRIA-IMAG variant", licenseId: "HPND-INRIA-IMAG", seeAlso: [ @@ -4112,7 +3786,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-Intel.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-Intel.json", - referenceNumber: 240, name: "Historical Permission Notice and Disclaimer - Intel variant", licenseId: "HPND-Intel", seeAlso: [ @@ -4125,7 +3798,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-Kevlin-Henney.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-Kevlin-Henney.json", - referenceNumber: 131, name: "Historical Permission Notice and Disclaimer - Kevlin Henney variant", licenseId: "HPND-Kevlin-Henney", seeAlso: [ @@ -4138,7 +3810,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-Markus-Kuhn.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-Markus-Kuhn.json", - referenceNumber: 528, name: "Historical Permission Notice and Disclaimer - Markus Kuhn variant", licenseId: "HPND-Markus-Kuhn", seeAlso: [ @@ -4152,7 +3823,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-merchantability-variant.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-merchantability-variant.json", - referenceNumber: 410, name: "Historical Permission Notice and Disclaimer - merchantability variant", licenseId: "HPND-merchantability-variant", seeAlso: [ @@ -4165,7 +3835,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-MIT-disclaimer.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-MIT-disclaimer.json", - referenceNumber: 232, name: "Historical Permission Notice and Disclaimer with MIT disclaimer", licenseId: "HPND-MIT-disclaimer", seeAlso: [ @@ -4178,7 +3847,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-Netrek.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-Netrek.json", - referenceNumber: 291, name: "Historical Permission Notice and Disclaimer - Netrek variant", licenseId: "HPND-Netrek", seeAlso: [], @@ -4189,7 +3857,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-Pbmplus.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-Pbmplus.json", - referenceNumber: 142, name: "Historical Permission Notice and Disclaimer - Pbmplus variant", licenseId: "HPND-Pbmplus", seeAlso: [ @@ -4204,7 +3871,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.json", - referenceNumber: 461, name: "Historical Permission Notice and Disclaimer - sell xserver variant with MIT disclaimer", licenseId: "HPND-sell-MIT-disclaimer-xserver", seeAlso: [ @@ -4217,7 +3883,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-sell-regexpr.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-sell-regexpr.json", - referenceNumber: 561, name: "Historical Permission Notice and Disclaimer - sell regexpr variant", licenseId: "HPND-sell-regexpr", seeAlso: [ @@ -4230,7 +3895,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-sell-variant.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-sell-variant.json", - referenceNumber: 88, name: "Historical Permission Notice and Disclaimer - sell variant", licenseId: "HPND-sell-variant", seeAlso: [ @@ -4245,7 +3909,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json", - referenceNumber: 343, name: "HPND sell variant with MIT disclaimer", licenseId: "HPND-sell-variant-MIT-disclaimer", seeAlso: [ @@ -4260,7 +3923,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer-rev.json", - referenceNumber: 387, name: "HPND sell variant with MIT disclaimer - reverse", licenseId: "HPND-sell-variant-MIT-disclaimer-rev", seeAlso: [ @@ -4273,7 +3935,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-UC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-UC.json", - referenceNumber: 269, name: "Historical Permission Notice and Disclaimer - University of California variant", licenseId: "HPND-UC", seeAlso: ["https://core.tcl-lang.org/tk/file?name=compat/unistd.h"], @@ -4284,7 +3945,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HPND-UC-export-US.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HPND-UC-export-US.json", - referenceNumber: 130, name: "Historical Permission Notice and Disclaimer - University of California, US export warning", licenseId: "HPND-UC-export-US", seeAlso: ["https://github.com/RTimothyEdwards/magic/blob/master/LICENSE"], @@ -4295,7 +3955,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/HTMLTIDY.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/HTMLTIDY.json", - referenceNumber: 590, name: "HTML Tidy License", licenseId: "HTMLTIDY", seeAlso: [ @@ -4308,7 +3967,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/IBM-pibs.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/IBM-pibs.json", - referenceNumber: 150, name: "IBM PowerPC Initialization and Boot Software", licenseId: "IBM-pibs", seeAlso: [ @@ -4321,7 +3979,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ICU.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ICU.json", - referenceNumber: 523, name: "ICU License", licenseId: "ICU", seeAlso: [ @@ -4334,7 +3991,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/IEC-Code-Components-EULA.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/IEC-Code-Components-EULA.json", - referenceNumber: 72, name: "IEC Code Components End-user licence agreement", licenseId: "IEC-Code-Components-EULA", seeAlso: [ @@ -4349,7 +4005,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/IJG.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/IJG.json", - referenceNumber: 409, name: "Independent JPEG Group License", licenseId: "IJG", seeAlso: ["http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2"], @@ -4361,7 +4016,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/IJG-short.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/IJG-short.json", - referenceNumber: 466, name: "Independent JPEG Group License - short", licenseId: "IJG-short", seeAlso: [ @@ -4374,7 +4028,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ImageMagick.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ImageMagick.json", - referenceNumber: 616, name: "ImageMagick License", licenseId: "ImageMagick", seeAlso: ["http://www.imagemagick.org/script/license.php"], @@ -4385,7 +4038,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/iMatix.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/iMatix.json", - referenceNumber: 434, name: "iMatix Standard Function Library Agreement", licenseId: "iMatix", seeAlso: ["http://legacy.imatix.com/html/sfl/sfl4.htm#license"], @@ -4397,7 +4049,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Imlib2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Imlib2.json", - referenceNumber: 145, name: "Imlib2 License", licenseId: "Imlib2", seeAlso: [ @@ -4412,7 +4063,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Info-ZIP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Info-ZIP.json", - referenceNumber: 654, name: "Info-ZIP License", licenseId: "Info-ZIP", seeAlso: ["http://www.info-zip.org/license.html"], @@ -4423,7 +4073,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Inner-Net-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Inner-Net-2.0.json", - referenceNumber: 206, name: "Inner Net License v2.0", licenseId: "Inner-Net-2.0", seeAlso: [ @@ -4437,7 +4086,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/InnoSetup.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/InnoSetup.json", - referenceNumber: 196, name: "Inno Setup License", licenseId: "InnoSetup", seeAlso: ["https://github.com/jrsoftware/issrc/blob/HEAD/license.txt"], @@ -4448,7 +4096,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Intel.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Intel.json", - referenceNumber: 313, name: "Intel Open Source License", licenseId: "Intel", seeAlso: ["https://opensource.org/licenses/Intel"], @@ -4460,7 +4107,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Intel-ACPI.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Intel-ACPI.json", - referenceNumber: 339, name: "Intel ACPI Software License Agreement", licenseId: "Intel-ACPI", seeAlso: [ @@ -4473,7 +4119,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Interbase-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Interbase-1.0.json", - referenceNumber: 618, name: "Interbase Public License v1.0", licenseId: "Interbase-1.0", seeAlso: [ @@ -4486,7 +4131,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/IPA.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/IPA.json", - referenceNumber: 369, name: "IPA Font License", licenseId: "IPA", seeAlso: ["https://opensource.org/licenses/IPA"], @@ -4498,7 +4142,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/IPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/IPL-1.0.json", - referenceNumber: 502, name: "IBM Public License v1.0", licenseId: "IPL-1.0", seeAlso: ["https://opensource.org/licenses/IPL-1.0"], @@ -4510,7 +4153,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ISC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ISC.json", - referenceNumber: 437, name: "ISC License", licenseId: "ISC", seeAlso: [ @@ -4527,7 +4169,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ISC-Veillard.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ISC-Veillard.json", - referenceNumber: 524, name: "ISC Veillard variant", licenseId: "ISC-Veillard", seeAlso: [ @@ -4542,7 +4183,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Jam.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Jam.json", - referenceNumber: 48, name: "Jam License", licenseId: "Jam", seeAlso: [ @@ -4556,7 +4196,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/JasPer-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/JasPer-2.0.json", - referenceNumber: 406, name: "JasPer License", licenseId: "JasPer-2.0", seeAlso: ["http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"], @@ -4567,7 +4206,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/JPL-image.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/JPL-image.json", - referenceNumber: 179, name: "JPL Image Use Policy", licenseId: "JPL-image", seeAlso: ["https://www.jpl.nasa.gov/jpl-image-use-policy"], @@ -4578,7 +4216,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/JPNIC.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/JPNIC.json", - referenceNumber: 80, name: "Japan Network Information Center License", licenseId: "JPNIC", seeAlso: [ @@ -4591,7 +4228,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/JSON.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/JSON.json", - referenceNumber: 485, name: "JSON License", licenseId: "JSON", seeAlso: ["http://www.json.org/license.html"], @@ -4603,7 +4239,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Kastrup.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Kastrup.json", - referenceNumber: 124, name: "Kastrup License", licenseId: "Kastrup", seeAlso: [ @@ -4616,7 +4251,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Kazlib.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Kazlib.json", - referenceNumber: 233, name: "Kazlib License", licenseId: "Kazlib", seeAlso: [ @@ -4629,7 +4263,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Knuth-CTAN.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Knuth-CTAN.json", - referenceNumber: 287, name: "Knuth CTAN License", licenseId: "Knuth-CTAN", seeAlso: ["https://ctan.org/license/knuth"], @@ -4640,7 +4273,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LAL-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LAL-1.2.json", - referenceNumber: 469, name: "Licence Art Libre 1.2", licenseId: "LAL-1.2", seeAlso: ["http://artlibre.org/licence/lal/licence-art-libre-12/"], @@ -4651,7 +4283,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LAL-1.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LAL-1.3.json", - referenceNumber: 553, name: "Licence Art Libre 1.3", licenseId: "LAL-1.3", seeAlso: ["https://artlibre.org/"], @@ -4662,7 +4293,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Latex2e.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Latex2e.json", - referenceNumber: 11, name: "Latex2e License", licenseId: "Latex2e", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Latex2e"], @@ -4673,7 +4303,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Latex2e-translated-notice.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Latex2e-translated-notice.json", - referenceNumber: 352, name: "Latex2e with translated notice permission", licenseId: "Latex2e-translated-notice", seeAlso: [ @@ -4686,7 +4315,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Leptonica.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Leptonica.json", - referenceNumber: 600, name: "Leptonica License", licenseId: "Leptonica", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Leptonica"], @@ -4697,7 +4325,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/LGPL-2.0.json", - referenceNumber: 244, name: "GNU Library General Public License v2 only", licenseId: "LGPL-2.0", seeAlso: [ @@ -4710,7 +4337,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.0+.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/LGPL-2.0+.json", - referenceNumber: 172, name: "GNU Library General Public License v2 or later", licenseId: "LGPL-2.0+", seeAlso: [ @@ -4723,7 +4349,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.0-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LGPL-2.0-only.json", - referenceNumber: 77, name: "GNU Library General Public License v2 only", licenseId: "LGPL-2.0-only", seeAlso: [ @@ -4736,7 +4361,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.0-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LGPL-2.0-or-later.json", - referenceNumber: 470, name: "GNU Library General Public License v2 or later", licenseId: "LGPL-2.0-or-later", seeAlso: [ @@ -4749,7 +4373,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.1.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/LGPL-2.1.json", - referenceNumber: 120, name: "GNU Lesser General Public License v2.1 only", licenseId: "LGPL-2.1", seeAlso: [ @@ -4764,7 +4387,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.1+.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/LGPL-2.1+.json", - referenceNumber: 403, name: "GNU Lesser General Public License v2.1 or later", licenseId: "LGPL-2.1+", seeAlso: [ @@ -4779,7 +4401,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.1-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LGPL-2.1-only.json", - referenceNumber: 119, name: "GNU Lesser General Public License v2.1 only", licenseId: "LGPL-2.1-only", seeAlso: [ @@ -4794,7 +4415,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-2.1-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LGPL-2.1-or-later.json", - referenceNumber: 559, name: "GNU Lesser General Public License v2.1 or later", licenseId: "LGPL-2.1-or-later", seeAlso: [ @@ -4809,7 +4429,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-3.0.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/LGPL-3.0.json", - referenceNumber: 627, name: "GNU Lesser General Public License v3.0 only", licenseId: "LGPL-3.0", seeAlso: [ @@ -4825,7 +4444,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-3.0+.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/LGPL-3.0+.json", - referenceNumber: 13, name: "GNU Lesser General Public License v3.0 or later", licenseId: "LGPL-3.0+", seeAlso: [ @@ -4841,7 +4459,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-3.0-only.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LGPL-3.0-only.json", - referenceNumber: 480, name: "GNU Lesser General Public License v3.0 only", licenseId: "LGPL-3.0-only", seeAlso: [ @@ -4857,7 +4474,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPL-3.0-or-later.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LGPL-3.0-or-later.json", - referenceNumber: 602, name: "GNU Lesser General Public License v3.0 or later", licenseId: "LGPL-3.0-or-later", seeAlso: [ @@ -4873,7 +4489,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LGPLLR.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LGPLLR.json", - referenceNumber: 589, name: "Lesser General Public License For Linguistic Resources", licenseId: "LGPLLR", seeAlso: ["http://www-igm.univ-mlv.fr/~unitex/lgpllr.html"], @@ -4884,7 +4499,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Libpng.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Libpng.json", - referenceNumber: 464, name: "libpng License", licenseId: "Libpng", seeAlso: ["http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"], @@ -4895,7 +4509,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/libpng-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/libpng-2.0.json", - referenceNumber: 147, name: "PNG Reference Library version 2", licenseId: "libpng-2.0", seeAlso: ["http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"], @@ -4906,7 +4519,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/libselinux-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/libselinux-1.0.json", - referenceNumber: 495, name: "libselinux public domain notice", licenseId: "libselinux-1.0", seeAlso: [ @@ -4919,7 +4531,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/libtiff.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/libtiff.json", - referenceNumber: 204, name: "libtiff License", licenseId: "libtiff", seeAlso: ["https://fedoraproject.org/wiki/Licensing/libtiff"], @@ -4930,7 +4541,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/libutil-David-Nugent.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/libutil-David-Nugent.json", - referenceNumber: 42, name: "libutil David Nugent License", licenseId: "libutil-David-Nugent", seeAlso: [ @@ -4944,7 +4554,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LiLiQ-P-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LiLiQ-P-1.1.json", - referenceNumber: 34, name: "Licence Libre du Québec – Permissive version 1.1", licenseId: "LiLiQ-P-1.1", seeAlso: [ @@ -4958,7 +4567,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LiLiQ-R-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LiLiQ-R-1.1.json", - referenceNumber: 542, name: "Licence Libre du Québec – Réciprocité version 1.1", licenseId: "LiLiQ-R-1.1", seeAlso: [ @@ -4972,7 +4580,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json", - referenceNumber: 268, name: "Licence Libre du Québec – Réciprocité forte version 1.1", licenseId: "LiLiQ-Rplus-1.1", seeAlso: [ @@ -4986,7 +4593,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Linux-man-pages-1-para.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Linux-man-pages-1-para.json", - referenceNumber: 668, name: "Linux man-pages - 1 paragraph", licenseId: "Linux-man-pages-1-para", seeAlso: [ @@ -4999,7 +4605,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Linux-man-pages-copyleft.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Linux-man-pages-copyleft.json", - referenceNumber: 299, name: "Linux man-pages Copyleft", licenseId: "Linux-man-pages-copyleft", seeAlso: ["https://www.kernel.org/doc/man-pages/licenses.html"], @@ -5012,7 +4617,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json", - referenceNumber: 393, name: "Linux man-pages Copyleft - 2 paragraphs", licenseId: "Linux-man-pages-copyleft-2-para", seeAlso: [ @@ -5026,7 +4630,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Linux-man-pages-copyleft-var.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Linux-man-pages-copyleft-var.json", - referenceNumber: 482, name: "Linux man-pages Copyleft Variant", licenseId: "Linux-man-pages-copyleft-var", seeAlso: [ @@ -5039,7 +4642,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Linux-OpenIB.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Linux-OpenIB.json", - referenceNumber: 185, name: "Linux Kernel Variant of OpenIB.org license", licenseId: "Linux-OpenIB", seeAlso: [ @@ -5052,7 +4654,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LOOP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LOOP.json", - referenceNumber: 663, name: "Common Lisp LOOP License", licenseId: "LOOP", seeAlso: [ @@ -5070,7 +4671,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPD-document.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPD-document.json", - referenceNumber: 569, name: "LPD Documentation License", licenseId: "LPD-document", seeAlso: [ @@ -5084,7 +4684,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPL-1.0.json", - referenceNumber: 340, name: "Lucent Public License Version 1.0", licenseId: "LPL-1.0", seeAlso: ["https://opensource.org/licenses/LPL-1.0"], @@ -5095,7 +4694,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPL-1.02.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPL-1.02.json", - referenceNumber: 155, name: "Lucent Public License v1.02", licenseId: "LPL-1.02", seeAlso: [ @@ -5110,7 +4708,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPPL-1.0.json", - referenceNumber: 560, name: "LaTeX Project Public License v1.0", licenseId: "LPPL-1.0", seeAlso: ["http://www.latex-project.org/lppl/lppl-1-0.txt"], @@ -5121,7 +4718,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPPL-1.1.json", - referenceNumber: 447, name: "LaTeX Project Public License v1.1", licenseId: "LPPL-1.1", seeAlso: ["http://www.latex-project.org/lppl/lppl-1-1.txt"], @@ -5132,7 +4728,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPPL-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPPL-1.2.json", - referenceNumber: 487, name: "LaTeX Project Public License v1.2", licenseId: "LPPL-1.2", seeAlso: ["http://www.latex-project.org/lppl/lppl-1-2.txt"], @@ -5144,7 +4739,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPPL-1.3a.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPPL-1.3a.json", - referenceNumber: 607, name: "LaTeX Project Public License v1.3a", licenseId: "LPPL-1.3a", seeAlso: ["http://www.latex-project.org/lppl/lppl-1-3a.txt"], @@ -5156,7 +4750,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LPPL-1.3c.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LPPL-1.3c.json", - referenceNumber: 122, name: "LaTeX Project Public License v1.3c", licenseId: "LPPL-1.3c", seeAlso: [ @@ -5170,7 +4763,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/lsof.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/lsof.json", - referenceNumber: 424, name: "lsof License", licenseId: "lsof", seeAlso: ["https://github.com/lsof-org/lsof/blob/master/COPYING"], @@ -5181,7 +4773,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Lucida-Bitmap-Fonts.json", - referenceNumber: 6, name: "Lucida Bitmap Fonts License", licenseId: "Lucida-Bitmap-Fonts", seeAlso: [ @@ -5194,7 +4785,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.json", - referenceNumber: 571, name: "LZMA SDK License (versions 9.11 to 9.20)", licenseId: "LZMA-SDK-9.11-to-9.20", seeAlso: [ @@ -5208,7 +4798,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/LZMA-SDK-9.22.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/LZMA-SDK-9.22.json", - referenceNumber: 609, name: "LZMA SDK License (versions 9.22 and beyond)", licenseId: "LZMA-SDK-9.22", seeAlso: [ @@ -5222,7 +4811,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Mackerras-3-Clause.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Mackerras-3-Clause.json", - referenceNumber: 484, name: "Mackerras 3-Clause License", licenseId: "Mackerras-3-Clause", seeAlso: [ @@ -5237,7 +4825,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.json", - referenceNumber: 330, name: "Mackerras 3-Clause - acknowledgment variant", licenseId: "Mackerras-3-Clause-acknowledgment", seeAlso: [ @@ -5250,7 +4837,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/magaz.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/magaz.json", - referenceNumber: 104, name: "magaz License", licenseId: "magaz", seeAlso: [ @@ -5263,7 +4849,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/mailprio.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/mailprio.json", - referenceNumber: 465, name: "mailprio License", licenseId: "mailprio", seeAlso: ["https://fossies.org/linux/sendmail/contrib/mailprio"], @@ -5274,7 +4859,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MakeIndex.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MakeIndex.json", - referenceNumber: 608, name: "MakeIndex License", licenseId: "MakeIndex", seeAlso: ["https://fedoraproject.org/wiki/Licensing/MakeIndex"], @@ -5285,7 +4869,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Martin-Birgmeier.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Martin-Birgmeier.json", - referenceNumber: 228, name: "Martin Birgmeier License", licenseId: "Martin-Birgmeier", seeAlso: ["https://github.com/Perl/perl5/blob/blead/util.c#L6136"], @@ -5296,7 +4879,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/McPhee-slideshow.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/McPhee-slideshow.json", - referenceNumber: 207, name: "McPhee Slideshow License", licenseId: "McPhee-slideshow", seeAlso: [ @@ -5309,7 +4891,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/metamail.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/metamail.json", - referenceNumber: 132, name: "metamail License", licenseId: "metamail", seeAlso: [ @@ -5322,7 +4903,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Minpack.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Minpack.json", - referenceNumber: 676, name: "Minpack License", licenseId: "Minpack", seeAlso: [ @@ -5336,7 +4916,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MirOS.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MirOS.json", - referenceNumber: 279, name: "The MirOS Licence", licenseId: "MirOS", seeAlso: ["https://opensource.org/licenses/MirOS"], @@ -5347,7 +4926,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT.json", - referenceNumber: 541, name: "MIT License", licenseId: "MIT", seeAlso: ["https://opensource.org/license/mit/"], @@ -5360,7 +4938,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-0.json", - referenceNumber: 176, name: "MIT No Attribution", licenseId: "MIT-0", seeAlso: [ @@ -5376,7 +4953,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-advertising.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-advertising.json", - referenceNumber: 473, name: "Enlightenment License (e16)", licenseId: "MIT-advertising", seeAlso: [ @@ -5389,7 +4965,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-Click.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-Click.json", - referenceNumber: 271, name: "MIT Click License", licenseId: "MIT-Click", seeAlso: ["https://github.com/kohler/t1utils/blob/master/LICENSE"], @@ -5400,7 +4975,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-CMU.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-CMU.json", - referenceNumber: 435, name: "CMU License", licenseId: "MIT-CMU", seeAlso: [ @@ -5414,7 +4988,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-enna.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-enna.json", - referenceNumber: 178, name: "enna License", licenseId: "MIT-enna", seeAlso: ["https://fedoraproject.org/wiki/Licensing/MIT#enna"], @@ -5425,7 +4998,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-feh.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-feh.json", - referenceNumber: 414, name: "feh License", licenseId: "MIT-feh", seeAlso: ["https://fedoraproject.org/wiki/Licensing/MIT#feh"], @@ -5436,7 +5008,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-Festival.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-Festival.json", - referenceNumber: 116, name: "MIT Festival Variant", licenseId: "MIT-Festival", seeAlso: [ @@ -5450,7 +5021,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-Khronos-old.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-Khronos-old.json", - referenceNumber: 293, name: "MIT Khronos - old variant", licenseId: "MIT-Khronos-old", seeAlso: [ @@ -5463,7 +5033,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-Modern-Variant.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-Modern-Variant.json", - referenceNumber: 307, name: "MIT License Modern Variant", licenseId: "MIT-Modern-Variant", seeAlso: [ @@ -5478,7 +5047,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-open-group.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-open-group.json", - referenceNumber: 125, name: "MIT Open Group variant", licenseId: "MIT-open-group", seeAlso: [ @@ -5494,7 +5062,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-testregex.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-testregex.json", - referenceNumber: 623, name: "MIT testregex Variant", licenseId: "MIT-testregex", seeAlso: [ @@ -5507,7 +5074,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MIT-Wu.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MIT-Wu.json", - referenceNumber: 494, name: "MIT Tom Wu Variant", licenseId: "MIT-Wu", seeAlso: ["https://github.com/chromium/octane/blob/master/crypto.js"], @@ -5518,7 +5084,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MITNFA.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MITNFA.json", - referenceNumber: 629, name: "MIT +no-false-attribs license", licenseId: "MITNFA", seeAlso: ["https://fedoraproject.org/wiki/Licensing/MITNFA"], @@ -5529,7 +5094,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MMIXware.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MMIXware.json", - referenceNumber: 349, name: "MMIXware License", licenseId: "MMIXware", seeAlso: [ @@ -5542,7 +5106,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Motosoto.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Motosoto.json", - referenceNumber: 272, name: "Motosoto License", licenseId: "Motosoto", seeAlso: ["https://opensource.org/licenses/Motosoto"], @@ -5553,7 +5116,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MPEG-SSG.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MPEG-SSG.json", - referenceNumber: 181, name: "MPEG Software Simulation", licenseId: "MPEG-SSG", seeAlso: [ @@ -5566,7 +5128,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/mpi-permissive.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/mpi-permissive.json", - referenceNumber: 556, name: "mpi Permissive License", licenseId: "mpi-permissive", seeAlso: [ @@ -5579,7 +5140,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/mpich2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/mpich2.json", - referenceNumber: 509, name: "mpich2 License", licenseId: "mpich2", seeAlso: ["https://fedoraproject.org/wiki/Licensing/MIT"], @@ -5590,7 +5150,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MPL-1.0.json", - referenceNumber: 649, name: "Mozilla Public License 1.0", licenseId: "MPL-1.0", seeAlso: [ @@ -5604,7 +5163,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MPL-1.1.json", - referenceNumber: 152, name: "Mozilla Public License 1.1", licenseId: "MPL-1.1", seeAlso: [ @@ -5619,7 +5177,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MPL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MPL-2.0.json", - referenceNumber: 361, name: "Mozilla Public License 2.0", licenseId: "MPL-2.0", seeAlso: [ @@ -5636,7 +5193,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json", - referenceNumber: 328, name: "Mozilla Public License 2.0 (no copyleft exception)", licenseId: "MPL-2.0-no-copyleft-exception", seeAlso: [ @@ -5650,7 +5206,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/mplus.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/mplus.json", - referenceNumber: 171, name: "mplus Font License", licenseId: "mplus", seeAlso: [ @@ -5663,7 +5218,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MS-LPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MS-LPL.json", - referenceNumber: 598, name: "Microsoft Limited Public License", licenseId: "MS-LPL", seeAlso: [ @@ -5678,7 +5232,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MS-PL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MS-PL.json", - referenceNumber: 531, name: "Microsoft Public License", licenseId: "MS-PL", seeAlso: [ @@ -5693,7 +5246,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MS-RL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MS-RL.json", - referenceNumber: 516, name: "Microsoft Reciprocal License", licenseId: "MS-RL", seeAlso: [ @@ -5708,7 +5260,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MTLL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MTLL.json", - referenceNumber: 341, name: "Matrix Template Library License", licenseId: "MTLL", seeAlso: [ @@ -5721,7 +5272,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MulanPSL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MulanPSL-1.0.json", - referenceNumber: 117, name: "Mulan Permissive Software License, Version 1", licenseId: "MulanPSL-1.0", seeAlso: [ @@ -5735,7 +5285,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/MulanPSL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/MulanPSL-2.0.json", - referenceNumber: 374, name: "Mulan Permissive Software License, Version 2", licenseId: "MulanPSL-2.0", seeAlso: ["https://license.coscl.org.cn/MulanPSL2"], @@ -5746,7 +5295,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Multics.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Multics.json", - referenceNumber: 38, name: "Multics License", licenseId: "Multics", seeAlso: ["https://opensource.org/licenses/Multics"], @@ -5757,7 +5305,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Mup.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Mup.json", - referenceNumber: 520, name: "Mup License", licenseId: "Mup", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Mup"], @@ -5768,7 +5315,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NAIST-2003.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NAIST-2003.json", - referenceNumber: 532, name: "Nara Institute of Science and Technology License (2003)", licenseId: "NAIST-2003", seeAlso: [ @@ -5782,7 +5328,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NASA-1.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NASA-1.3.json", - referenceNumber: 53, name: "NASA Open Source Agreement 1.3", licenseId: "NASA-1.3", seeAlso: [ @@ -5797,7 +5342,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Naumen.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Naumen.json", - referenceNumber: 355, name: "Naumen Public License", licenseId: "Naumen", seeAlso: ["https://opensource.org/licenses/Naumen"], @@ -5808,7 +5352,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NBPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NBPL-1.0.json", - referenceNumber: 162, name: "Net Boolean Public License v1", licenseId: "NBPL-1.0", seeAlso: [ @@ -5821,7 +5364,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NCBI-PD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NCBI-PD.json", - referenceNumber: 247, name: "NCBI Public Domain Notice", licenseId: "NCBI-PD", seeAlso: [ @@ -5838,7 +5380,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NCGL-UK-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NCGL-UK-2.0.json", - referenceNumber: 49, name: "Non-Commercial Government Licence", licenseId: "NCGL-UK-2.0", seeAlso: [ @@ -5851,7 +5392,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NCL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NCL.json", - referenceNumber: 449, name: "NCL Source Code License", licenseId: "NCL", seeAlso: [ @@ -5864,7 +5404,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NCSA.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NCSA.json", - referenceNumber: 527, name: "University of Illinois/NCSA Open Source License", licenseId: "NCSA", seeAlso: [ @@ -5879,7 +5418,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Net-SNMP.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/Net-SNMP.json", - referenceNumber: 431, name: "Net-SNMP License", licenseId: "Net-SNMP", seeAlso: ["http://net-snmp.sourceforge.net/about/license.html"], @@ -5890,7 +5428,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NetCDF.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NetCDF.json", - referenceNumber: 622, name: "NetCDF license", licenseId: "NetCDF", seeAlso: ["http://www.unidata.ucar.edu/software/netcdf/copyright.html"], @@ -5901,7 +5438,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Newsletr.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Newsletr.json", - referenceNumber: 186, name: "Newsletr License", licenseId: "Newsletr", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Newsletr"], @@ -5912,7 +5448,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NGPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NGPL.json", - referenceNumber: 642, name: "Nethack General Public License", licenseId: "NGPL", seeAlso: ["https://opensource.org/licenses/NGPL"], @@ -5923,7 +5458,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NICTA-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NICTA-1.0.json", - referenceNumber: 54, name: "NICTA Public Software License, Version 1.0", licenseId: "NICTA-1.0", seeAlso: [ @@ -5936,7 +5470,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NIST-PD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NIST-PD.json", - referenceNumber: 14, name: "NIST Public Domain Notice", licenseId: "NIST-PD", seeAlso: [ @@ -5950,7 +5483,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NIST-PD-fallback.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NIST-PD-fallback.json", - referenceNumber: 222, name: "NIST Public Domain Notice with license fallback", licenseId: "NIST-PD-fallback", seeAlso: [ @@ -5964,7 +5496,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NIST-Software.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NIST-Software.json", - referenceNumber: 254, name: "NIST Software License", licenseId: "NIST-Software", seeAlso: [ @@ -5977,7 +5508,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NLOD-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NLOD-1.0.json", - referenceNumber: 193, name: "Norwegian Licence for Open Government Data (NLOD) 1.0", licenseId: "NLOD-1.0", seeAlso: ["http://data.norge.no/nlod/en/1.0"], @@ -5988,7 +5518,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NLOD-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NLOD-2.0.json", - referenceNumber: 323, name: "Norwegian Licence for Open Government Data (NLOD) 2.0", licenseId: "NLOD-2.0", seeAlso: ["http://data.norge.no/nlod/en/2.0"], @@ -5999,7 +5528,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NLPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NLPL.json", - referenceNumber: 593, name: "No Limit Public License", licenseId: "NLPL", seeAlso: ["https://fedoraproject.org/wiki/Licensing/NLPL"], @@ -6010,7 +5538,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Nokia.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Nokia.json", - referenceNumber: 165, name: "Nokia Open Source License", licenseId: "Nokia", seeAlso: ["https://opensource.org/licenses/nokia"], @@ -6022,7 +5549,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NOSL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NOSL.json", - referenceNumber: 90, name: "Netizen Open Source License", licenseId: "NOSL", seeAlso: ["http://bits.netizen.com.au/licenses/NOSL/nosl.txt"], @@ -6034,7 +5560,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Noweb.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Noweb.json", - referenceNumber: 30, name: "Noweb License", licenseId: "Noweb", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Noweb"], @@ -6045,7 +5570,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NPL-1.0.json", - referenceNumber: 17, name: "Netscape Public License v1.0", licenseId: "NPL-1.0", seeAlso: ["http://www.mozilla.org/MPL/NPL/1.0/"], @@ -6057,7 +5581,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NPL-1.1.json", - referenceNumber: 215, name: "Netscape Public License v1.1", licenseId: "NPL-1.1", seeAlso: ["http://www.mozilla.org/MPL/NPL/1.1/"], @@ -6069,7 +5592,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NPOSL-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NPOSL-3.0.json", - referenceNumber: 674, name: "Non-Profit Open Software License 3.0", licenseId: "NPOSL-3.0", seeAlso: ["https://opensource.org/licenses/NOSL3.0"], @@ -6080,7 +5602,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NRL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NRL.json", - referenceNumber: 442, name: "NRL License", licenseId: "NRL", seeAlso: ["http://web.mit.edu/network/isakmp/nrllicense.html"], @@ -6091,7 +5612,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NTP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NTP.json", - referenceNumber: 226, name: "NTP License", licenseId: "NTP", seeAlso: ["https://opensource.org/licenses/NTP"], @@ -6102,7 +5622,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/NTP-0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/NTP-0.json", - referenceNumber: 35, name: "NTP No Attribution", licenseId: "NTP-0", seeAlso: [ @@ -6115,7 +5634,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Nunit.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/Nunit.json", - referenceNumber: 216, name: "Nunit License", licenseId: "Nunit", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Nunit"], @@ -6127,7 +5645,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/O-UDA-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/O-UDA-1.0.json", - referenceNumber: 290, name: "Open Use of Data Agreement v1.0", licenseId: "O-UDA-1.0", seeAlso: [ @@ -6141,7 +5658,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OAR.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OAR.json", - referenceNumber: 376, name: "OAR License", licenseId: "OAR", seeAlso: [ @@ -6154,7 +5670,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OCCT-PL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OCCT-PL.json", - referenceNumber: 404, name: "Open CASCADE Technology Public License", licenseId: "OCCT-PL", seeAlso: ["http://www.opencascade.com/content/occt-public-license"], @@ -6165,7 +5680,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OCLC-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OCLC-2.0.json", - referenceNumber: 506, name: "OCLC Research Public License 2.0", licenseId: "OCLC-2.0", seeAlso: [ @@ -6179,7 +5693,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ODbL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ODbL-1.0.json", - referenceNumber: 562, name: "Open Data Commons Open Database License v1.0", licenseId: "ODbL-1.0", seeAlso: [ @@ -6194,7 +5707,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ODC-By-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ODC-By-1.0.json", - referenceNumber: 440, name: "Open Data Commons Attribution License v1.0", licenseId: "ODC-By-1.0", seeAlso: ["https://opendatacommons.org/licenses/by/1.0/"], @@ -6205,7 +5717,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OFFIS.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OFFIS.json", - referenceNumber: 356, name: "OFFIS License", licenseId: "OFFIS", seeAlso: [ @@ -6218,7 +5729,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OFL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OFL-1.0.json", - referenceNumber: 370, name: "SIL Open Font License 1.0", licenseId: "OFL-1.0", seeAlso: [ @@ -6232,7 +5742,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OFL-1.0-no-RFN.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OFL-1.0-no-RFN.json", - referenceNumber: 93, name: "SIL Open Font License 1.0 with no Reserved Font Name", licenseId: "OFL-1.0-no-RFN", seeAlso: [ @@ -6245,7 +5754,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OFL-1.0-RFN.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OFL-1.0-RFN.json", - referenceNumber: 546, name: "SIL Open Font License 1.0 with Reserved Font Name", licenseId: "OFL-1.0-RFN", seeAlso: [ @@ -6258,7 +5766,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OFL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OFL-1.1.json", - referenceNumber: 105, name: "SIL Open Font License 1.1", licenseId: "OFL-1.1", seeAlso: [ @@ -6273,7 +5780,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OFL-1.1-no-RFN.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OFL-1.1-no-RFN.json", - referenceNumber: 62, name: "SIL Open Font License 1.1 with no Reserved Font Name", licenseId: "OFL-1.1-no-RFN", seeAlso: [ @@ -6287,7 +5793,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OFL-1.1-RFN.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OFL-1.1-RFN.json", - referenceNumber: 258, name: "SIL Open Font License 1.1 with Reserved Font Name", licenseId: "OFL-1.1-RFN", seeAlso: [ @@ -6301,7 +5806,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OGC-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OGC-1.0.json", - referenceNumber: 661, name: "OGC Software License, Version 1.0", licenseId: "OGC-1.0", seeAlso: ["https://www.ogc.org/ogc/software/1.0"], @@ -6312,7 +5816,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OGDL-Taiwan-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OGDL-Taiwan-1.0.json", - referenceNumber: 267, name: "Taiwan Open Government Data License, version 1.0", licenseId: "OGDL-Taiwan-1.0", seeAlso: ["https://data.gov.tw/license"], @@ -6323,7 +5826,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OGL-Canada-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OGL-Canada-2.0.json", - referenceNumber: 430, name: "Open Government Licence - Canada", licenseId: "OGL-Canada-2.0", seeAlso: ["https://open.canada.ca/en/open-government-licence-canada"], @@ -6334,7 +5836,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OGL-UK-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OGL-UK-1.0.json", - referenceNumber: 448, name: "Open Government Licence v1.0", licenseId: "OGL-UK-1.0", seeAlso: [ @@ -6347,7 +5848,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OGL-UK-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OGL-UK-2.0.json", - referenceNumber: 412, name: "Open Government Licence v2.0", licenseId: "OGL-UK-2.0", seeAlso: [ @@ -6360,7 +5860,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OGL-UK-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OGL-UK-3.0.json", - referenceNumber: 576, name: "Open Government Licence v3.0", licenseId: "OGL-UK-3.0", seeAlso: [ @@ -6373,7 +5872,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OGTSL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OGTSL.json", - referenceNumber: 68, name: "Open Group Test Suite License", licenseId: "OGTSL", seeAlso: [ @@ -6387,7 +5885,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-1.1.json", - referenceNumber: 123, name: "Open LDAP Public License v1.1", licenseId: "OLDAP-1.1", seeAlso: [ @@ -6400,7 +5897,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-1.2.json", - referenceNumber: 407, name: "Open LDAP Public License v1.2", licenseId: "OLDAP-1.2", seeAlso: [ @@ -6413,7 +5909,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-1.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-1.3.json", - referenceNumber: 488, name: "Open LDAP Public License v1.3", licenseId: "OLDAP-1.3", seeAlso: [ @@ -6426,7 +5921,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-1.4.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-1.4.json", - referenceNumber: 282, name: "Open LDAP Public License v1.4", licenseId: "OLDAP-1.4", seeAlso: [ @@ -6439,7 +5933,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.0.json", - referenceNumber: 573, name: "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", licenseId: "OLDAP-2.0", seeAlso: [ @@ -6452,7 +5945,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.0.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.0.1.json", - referenceNumber: 422, name: "Open LDAP Public License v2.0.1", licenseId: "OLDAP-2.0.1", seeAlso: [ @@ -6465,7 +5957,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.1.json", - referenceNumber: 306, name: "Open LDAP Public License v2.1", licenseId: "OLDAP-2.1", seeAlso: [ @@ -6478,7 +5969,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.2.json", - referenceNumber: 26, name: "Open LDAP Public License v2.2", licenseId: "OLDAP-2.2", seeAlso: [ @@ -6491,7 +5981,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.2.1.json", - referenceNumber: 78, name: "Open LDAP Public License v2.2.1", licenseId: "OLDAP-2.2.1", seeAlso: [ @@ -6504,7 +5993,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.2.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.2.2.json", - referenceNumber: 615, name: "Open LDAP Public License 2.2.2", licenseId: "OLDAP-2.2.2", seeAlso: [ @@ -6517,7 +6005,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.3.json", - referenceNumber: 263, name: "Open LDAP Public License v2.3", licenseId: "OLDAP-2.3", seeAlso: [ @@ -6531,7 +6018,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.4.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.4.json", - referenceNumber: 305, name: "Open LDAP Public License v2.4", licenseId: "OLDAP-2.4", seeAlso: [ @@ -6544,7 +6030,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.5.json", - referenceNumber: 397, name: "Open LDAP Public License v2.5", licenseId: "OLDAP-2.5", seeAlso: [ @@ -6557,7 +6042,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.6.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.6.json", - referenceNumber: 334, name: "Open LDAP Public License v2.6", licenseId: "OLDAP-2.6", seeAlso: [ @@ -6570,7 +6054,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.7.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.7.json", - referenceNumber: 476, name: "Open LDAP Public License v2.7", licenseId: "OLDAP-2.7", seeAlso: [ @@ -6584,7 +6067,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLDAP-2.8.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLDAP-2.8.json", - referenceNumber: 371, name: "Open LDAP Public License v2.8", licenseId: "OLDAP-2.8", seeAlso: ["http://www.openldap.org/software/release/license.html"], @@ -6595,7 +6077,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OLFL-1.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OLFL-1.3.json", - referenceNumber: 91, name: "Open Logistics Foundation License Version 1.3", licenseId: "OLFL-1.3", seeAlso: [ @@ -6609,7 +6090,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OML.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OML.json", - referenceNumber: 584, name: "Open Market License", licenseId: "OML", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Open_Market_License"], @@ -6620,7 +6100,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OpenPBS-2.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OpenPBS-2.3.json", - referenceNumber: 513, name: "OpenPBS v2.3 Software License", licenseId: "OpenPBS-2.3", seeAlso: [ @@ -6634,7 +6113,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OpenSSL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OpenSSL.json", - referenceNumber: 315, name: "OpenSSL License", licenseId: "OpenSSL", seeAlso: ["http://www.openssl.org/source/license.html"], @@ -6646,7 +6124,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OpenSSL-standalone.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OpenSSL-standalone.json", - referenceNumber: 84, name: "OpenSSL License - standalone", licenseId: "OpenSSL-standalone", seeAlso: [ @@ -6660,7 +6137,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OpenVision.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OpenVision.json", - referenceNumber: 89, name: "OpenVision License", licenseId: "OpenVision", seeAlso: [ @@ -6675,7 +6151,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OPL-1.0.json", - referenceNumber: 377, name: "Open Public License v1.0", licenseId: "OPL-1.0", seeAlso: [ @@ -6690,7 +6165,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OPL-UK-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OPL-UK-3.0.json", - referenceNumber: 368, name: "United Kingdom Open Parliament Licence v3.0", licenseId: "OPL-UK-3.0", seeAlso: [ @@ -6703,7 +6177,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OPUBL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OPUBL-1.0.json", - referenceNumber: 455, name: "Open Publication License v1.0", licenseId: "OPUBL-1.0", seeAlso: [ @@ -6718,7 +6191,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OSET-PL-2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OSET-PL-2.1.json", - referenceNumber: 312, name: "OSET Public License version 2.1", licenseId: "OSET-PL-2.1", seeAlso: [ @@ -6732,7 +6204,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OSL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OSL-1.0.json", - referenceNumber: 236, name: "Open Software License 1.0", licenseId: "OSL-1.0", seeAlso: ["https://opensource.org/licenses/OSL-1.0"], @@ -6744,7 +6215,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OSL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OSL-1.1.json", - referenceNumber: 324, name: "Open Software License 1.1", licenseId: "OSL-1.1", seeAlso: ["https://fedoraproject.org/wiki/Licensing/OSL1.1"], @@ -6756,7 +6226,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OSL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OSL-2.0.json", - referenceNumber: 199, name: "Open Software License 2.0", licenseId: "OSL-2.0", seeAlso: [ @@ -6770,7 +6239,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OSL-2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OSL-2.1.json", - referenceNumber: 498, name: "Open Software License 2.1", licenseId: "OSL-2.1", seeAlso: [ @@ -6785,7 +6253,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/OSL-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/OSL-3.0.json", - referenceNumber: 64, name: "Open Software License 3.0", licenseId: "OSL-3.0", seeAlso: [ @@ -6800,7 +6267,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PADL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PADL.json", - referenceNumber: 180, name: "PADL License", licenseId: "PADL", seeAlso: [ @@ -6813,7 +6279,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Parity-6.0.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Parity-6.0.0.json", - referenceNumber: 212, name: "The Parity Public License 6.0.0", licenseId: "Parity-6.0.0", seeAlso: ["https://paritylicense.com/versions/6.0.0.html"], @@ -6824,7 +6289,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Parity-7.0.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Parity-7.0.0.json", - referenceNumber: 284, name: "The Parity Public License 7.0.0", licenseId: "Parity-7.0.0", seeAlso: ["https://paritylicense.com/versions/7.0.0.html"], @@ -6835,7 +6299,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PDDL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PDDL-1.0.json", - referenceNumber: 351, name: "Open Data Commons Public Domain Dedication & License 1.0", licenseId: "PDDL-1.0", seeAlso: [ @@ -6849,7 +6312,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PHP-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PHP-3.0.json", - referenceNumber: 203, name: "PHP License v3.0", licenseId: "PHP-3.0", seeAlso: [ @@ -6863,7 +6325,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PHP-3.01.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PHP-3.01.json", - referenceNumber: 50, name: "PHP License v3.01", licenseId: "PHP-3.01", seeAlso: ["http://www.php.net/license/3_01.txt"], @@ -6875,7 +6336,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Pixar.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Pixar.json", - referenceNumber: 51, name: "Pixar License", licenseId: "Pixar", seeAlso: [ @@ -6890,7 +6350,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/pkgconf.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/pkgconf.json", - referenceNumber: 551, name: "pkgconf License", licenseId: "pkgconf", seeAlso: ["https://github.com/pkgconf/pkgconf/blob/master/cli/main.c#L8"], @@ -6901,7 +6360,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Plexus.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Plexus.json", - referenceNumber: 662, name: "Plexus Classworlds License", licenseId: "Plexus", seeAlso: [ @@ -6914,7 +6372,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/pnmstitch.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/pnmstitch.json", - referenceNumber: 651, name: "pnmstitch License", licenseId: "pnmstitch", seeAlso: [ @@ -6927,7 +6384,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json", - referenceNumber: 656, name: "PolyForm Noncommercial License 1.0.0", licenseId: "PolyForm-Noncommercial-1.0.0", seeAlso: ["https://polyformproject.org/licenses/noncommercial/1.0.0"], @@ -6939,7 +6395,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json", - referenceNumber: 167, name: "PolyForm Small Business License 1.0.0", licenseId: "PolyForm-Small-Business-1.0.0", seeAlso: ["https://polyformproject.org/licenses/small-business/1.0.0"], @@ -6950,7 +6405,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PostgreSQL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PostgreSQL.json", - referenceNumber: 309, name: "PostgreSQL License", licenseId: "PostgreSQL", seeAlso: [ @@ -6964,7 +6418,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PPL.json", - referenceNumber: 259, name: "Peer Production License", licenseId: "PPL", seeAlso: [ @@ -6979,7 +6432,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/PSF-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/PSF-2.0.json", - referenceNumber: 76, name: "Python Software Foundation License 2.0", licenseId: "PSF-2.0", seeAlso: [ @@ -6993,7 +6445,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/psfrag.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/psfrag.json", - referenceNumber: 210, name: "psfrag License", licenseId: "psfrag", seeAlso: ["https://fedoraproject.org/wiki/Licensing/psfrag"], @@ -7004,7 +6455,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/psutils.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/psutils.json", - referenceNumber: 45, name: "psutils License", licenseId: "psutils", seeAlso: ["https://fedoraproject.org/wiki/Licensing/psutils"], @@ -7015,7 +6465,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Python-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Python-2.0.json", - referenceNumber: 197, name: "Python License 2.0", licenseId: "Python-2.0", seeAlso: ["https://opensource.org/licenses/Python-2.0"], @@ -7028,7 +6477,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Python-2.0.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Python-2.0.1.json", - referenceNumber: 221, name: "Python License 2.0.1", licenseId: "Python-2.0.1", seeAlso: [ @@ -7043,7 +6491,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/python-ldap.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/python-ldap.json", - referenceNumber: 243, name: "Python ldap License", licenseId: "python-ldap", seeAlso: ["https://github.com/python-ldap/python-ldap/blob/main/LICENCE"], @@ -7054,7 +6501,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Qhull.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Qhull.json", - referenceNumber: 230, name: "Qhull License", licenseId: "Qhull", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Qhull"], @@ -7065,7 +6511,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/QPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/QPL-1.0.json", - referenceNumber: 149, name: "Q Public License 1.0", licenseId: "QPL-1.0", seeAlso: [ @@ -7081,7 +6526,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/QPL-1.0-INRIA-2004.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/QPL-1.0-INRIA-2004.json", - referenceNumber: 507, name: "Q Public License 1.0 - INRIA 2004 variant", licenseId: "QPL-1.0-INRIA-2004", seeAlso: ["https://github.com/maranget/hevea/blob/master/LICENSE"], @@ -7092,7 +6536,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/radvd.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/radvd.json", - referenceNumber: 452, name: "radvd License", licenseId: "radvd", seeAlso: ["https://github.com/radvd-project/radvd/blob/master/COPYRIGHT"], @@ -7103,7 +6546,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Rdisc.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Rdisc.json", - referenceNumber: 295, name: "Rdisc License", licenseId: "Rdisc", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Rdisc_License"], @@ -7114,7 +6556,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/RHeCos-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/RHeCos-1.1.json", - referenceNumber: 373, name: "Red Hat eCos Public License v1.1", licenseId: "RHeCos-1.1", seeAlso: ["http://ecos.sourceware.org/old-license.html"], @@ -7126,7 +6567,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/RPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/RPL-1.1.json", - referenceNumber: 79, name: "Reciprocal Public License 1.1", licenseId: "RPL-1.1", seeAlso: ["https://opensource.org/licenses/RPL-1.1"], @@ -7137,7 +6577,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/RPL-1.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/RPL-1.5.json", - referenceNumber: 63, name: "Reciprocal Public License 1.5", licenseId: "RPL-1.5", seeAlso: ["https://opensource.org/licenses/RPL-1.5"], @@ -7148,7 +6587,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/RPSL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/RPSL-1.0.json", - referenceNumber: 515, name: "RealNetworks Public Source License v1.0", licenseId: "RPSL-1.0", seeAlso: [ @@ -7163,7 +6601,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/RSA-MD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/RSA-MD.json", - referenceNumber: 289, name: "RSA Message-Digest License", licenseId: "RSA-MD", seeAlso: ["http://www.faqs.org/rfcs/rfc1321.html"], @@ -7174,7 +6611,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/RSCPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/RSCPL.json", - referenceNumber: 319, name: "Ricoh Source Code Public License", licenseId: "RSCPL", seeAlso: [ @@ -7188,7 +6624,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Ruby.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Ruby.json", - referenceNumber: 69, name: "Ruby License", licenseId: "Ruby", seeAlso: ["https://www.ruby-lang.org/en/about/license.txt"], @@ -7200,7 +6635,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Ruby-pty.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Ruby-pty.json", - referenceNumber: 399, name: "Ruby pty extension license", licenseId: "Ruby-pty", seeAlso: [ @@ -7215,7 +6649,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SAX-PD.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SAX-PD.json", - referenceNumber: 248, name: "Sax Public Domain Notice", licenseId: "SAX-PD", seeAlso: ["http://www.saxproject.org/copying.html"], @@ -7226,7 +6659,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SAX-PD-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SAX-PD-2.0.json", - referenceNumber: 316, name: "Sax Public Domain Notice 2.0", licenseId: "SAX-PD-2.0", seeAlso: ["http://www.saxproject.org/copying.html"], @@ -7237,7 +6669,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Saxpath.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Saxpath.json", - referenceNumber: 67, name: "Saxpath License", licenseId: "Saxpath", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Saxpath_License"], @@ -7248,7 +6679,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SCEA.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SCEA.json", - referenceNumber: 385, name: "SCEA Shared Source License", licenseId: "SCEA", seeAlso: ["http://research.scea.com/scea_shared_source_license.html"], @@ -7259,7 +6689,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SchemeReport.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SchemeReport.json", - referenceNumber: 545, name: "Scheme Language Report License", licenseId: "SchemeReport", seeAlso: [], @@ -7270,7 +6699,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Sendmail.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Sendmail.json", - referenceNumber: 296, name: "Sendmail License", licenseId: "Sendmail", seeAlso: [ @@ -7284,7 +6712,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Sendmail-8.23.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Sendmail-8.23.json", - referenceNumber: 605, name: "Sendmail License 8.23", licenseId: "Sendmail-8.23", seeAlso: [ @@ -7298,7 +6725,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Sendmail-Open-Source-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Sendmail-Open-Source-1.1.json", - referenceNumber: 543, name: "Sendmail Open Source License v1.1", licenseId: "Sendmail-Open-Source-1.1", seeAlso: [ @@ -7311,7 +6737,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SGI-B-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SGI-B-1.0.json", - referenceNumber: 139, name: "SGI Free Software License B v1.0", licenseId: "SGI-B-1.0", seeAlso: ["http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html"], @@ -7322,7 +6747,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SGI-B-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SGI-B-1.1.json", - referenceNumber: 594, name: "SGI Free Software License B v1.1", licenseId: "SGI-B-1.1", seeAlso: ["http://oss.sgi.com/projects/FreeB/"], @@ -7333,7 +6757,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SGI-B-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SGI-B-2.0.json", - referenceNumber: 304, name: "SGI Free Software License B v2.0", licenseId: "SGI-B-2.0", seeAlso: ["http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf"], @@ -7345,7 +6768,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SGI-OpenGL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SGI-OpenGL.json", - referenceNumber: 378, name: "SGI OpenGL License", licenseId: "SGI-OpenGL", seeAlso: [ @@ -7358,7 +6780,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SGP4.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SGP4.json", - referenceNumber: 112, name: "SGP4 Permission Notice", licenseId: "SGP4", seeAlso: ["https://celestrak.org/publications/AIAA/2006-6753/faq.php"], @@ -7369,7 +6790,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SHL-0.5.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SHL-0.5.json", - referenceNumber: 251, name: "Solderpad Hardware License v0.5", licenseId: "SHL-0.5", seeAlso: ["https://solderpad.org/licenses/SHL-0.5/"], @@ -7380,7 +6800,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SHL-0.51.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SHL-0.51.json", - referenceNumber: 599, name: "Solderpad Hardware License, Version 0.51", licenseId: "SHL-0.51", seeAlso: ["https://solderpad.org/licenses/SHL-0.51/"], @@ -7391,7 +6810,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SimPL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SimPL-2.0.json", - referenceNumber: 457, name: "Simple Public License 2.0", licenseId: "SimPL-2.0", seeAlso: ["https://opensource.org/licenses/SimPL-2.0"], @@ -7402,7 +6820,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SISSL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SISSL.json", - referenceNumber: 33, name: "Sun Industry Standards Source License v1.1", licenseId: "SISSL", seeAlso: [ @@ -7417,7 +6834,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SISSL-1.2.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SISSL-1.2.json", - referenceNumber: 492, name: "Sun Industry Standards Source License v1.2", licenseId: "SISSL-1.2", seeAlso: [ @@ -7430,7 +6846,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SL.json", - referenceNumber: 344, name: "SL License", licenseId: "SL", seeAlso: ["https://github.com/mtoyoda/sl/blob/master/LICENSE"], @@ -7441,7 +6856,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Sleepycat.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Sleepycat.json", - referenceNumber: 428, name: "Sleepycat License", licenseId: "Sleepycat", seeAlso: ["https://opensource.org/licenses/Sleepycat"], @@ -7453,7 +6867,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SMAIL-GPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SMAIL-GPL.json", - referenceNumber: 106, name: "SMAIL General Public License", licenseId: "SMAIL-GPL", seeAlso: [ @@ -7466,7 +6879,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SMLNJ.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SMLNJ.json", - referenceNumber: 521, name: "Standard ML of New Jersey License", licenseId: "SMLNJ", seeAlso: ["https://www.smlnj.org/license.html"], @@ -7478,7 +6890,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SMPPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SMPPL.json", - referenceNumber: 36, name: "Secure Messaging Protocol Public License", licenseId: "SMPPL", seeAlso: [ @@ -7491,7 +6902,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SNIA.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SNIA.json", - referenceNumber: 73, name: "SNIA Public License 1.1", licenseId: "SNIA", seeAlso: ["https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"], @@ -7502,7 +6912,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/snprintf.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/snprintf.json", - referenceNumber: 264, name: "snprintf License", licenseId: "snprintf", seeAlso: [ @@ -7515,7 +6924,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/softSurfer.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/softSurfer.json", - referenceNumber: 610, name: "softSurfer License", licenseId: "softSurfer", seeAlso: [ @@ -7529,7 +6937,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Soundex.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Soundex.json", - referenceNumber: 113, name: "Soundex License", licenseId: "Soundex", seeAlso: [ @@ -7542,7 +6949,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Spencer-86.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Spencer-86.json", - referenceNumber: 217, name: "Spencer License 86", licenseId: "Spencer-86", seeAlso: [ @@ -7555,7 +6961,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Spencer-94.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Spencer-94.json", - referenceNumber: 213, name: "Spencer License 94", licenseId: "Spencer-94", seeAlso: [ @@ -7569,7 +6974,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Spencer-99.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Spencer-99.json", - referenceNumber: 303, name: "Spencer License 99", licenseId: "Spencer-99", seeAlso: [ @@ -7582,7 +6986,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SPL-1.0.json", - referenceNumber: 277, name: "Sun Public License v1.0", licenseId: "SPL-1.0", seeAlso: ["https://opensource.org/licenses/SPL-1.0"], @@ -7594,7 +6997,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ssh-keyscan.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ssh-keyscan.json", - referenceNumber: 398, name: "ssh-keyscan License", licenseId: "ssh-keyscan", seeAlso: [ @@ -7607,7 +7009,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SSH-OpenSSH.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SSH-OpenSSH.json", - referenceNumber: 357, name: "SSH OpenSSH license", licenseId: "SSH-OpenSSH", seeAlso: [ @@ -7620,7 +7021,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SSH-short.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SSH-short.json", - referenceNumber: 114, name: "SSH short notice", licenseId: "SSH-short", seeAlso: [ @@ -7635,7 +7035,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SSLeay-standalone.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SSLeay-standalone.json", - referenceNumber: 637, name: "SSLeay License - standalone", licenseId: "SSLeay-standalone", seeAlso: [ @@ -7648,7 +7047,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SSPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SSPL-1.0.json", - referenceNumber: 300, name: "Server Side Public License, v 1", licenseId: "SSPL-1.0", seeAlso: ["https://www.mongodb.com/licensing/server-side-public-license"], @@ -7659,7 +7057,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/StandardML-NJ.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/StandardML-NJ.json", - referenceNumber: 677, name: "Standard ML of New Jersey License", licenseId: "StandardML-NJ", seeAlso: ["https://www.smlnj.org/license.html"], @@ -7671,7 +7068,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SugarCRM-1.1.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SugarCRM-1.1.3.json", - referenceNumber: 383, name: "SugarCRM Public License v1.1.3", licenseId: "SugarCRM-1.1.3", seeAlso: ["http://www.sugarcrm.com/crm/SPL"], @@ -7682,7 +7078,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Sun-PPP.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Sun-PPP.json", - referenceNumber: 586, name: "Sun PPP License", licenseId: "Sun-PPP", seeAlso: [ @@ -7695,7 +7090,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Sun-PPP-2000.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Sun-PPP-2000.json", - referenceNumber: 475, name: "Sun PPP License (2000)", licenseId: "Sun-PPP-2000", seeAlso: [ @@ -7708,7 +7102,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SunPro.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SunPro.json", - referenceNumber: 347, name: "SunPro License", licenseId: "SunPro", seeAlso: [ @@ -7722,7 +7115,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/SWL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/SWL.json", - referenceNumber: 325, name: "Scheme Widget Library (SWL) Software License Agreement", licenseId: "SWL", seeAlso: ["https://fedoraproject.org/wiki/Licensing/SWL"], @@ -7733,7 +7125,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/swrule.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/swrule.json", - referenceNumber: 519, name: "swrule License", licenseId: "swrule", seeAlso: [ @@ -7746,7 +7137,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Symlinks.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Symlinks.json", - referenceNumber: 278, name: "Symlinks License", licenseId: "Symlinks", seeAlso: [ @@ -7759,7 +7149,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TAPR-OHL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TAPR-OHL-1.0.json", - referenceNumber: 567, name: "TAPR Open Hardware License v1.0", licenseId: "TAPR-OHL-1.0", seeAlso: ["https://www.tapr.org/OHL"], @@ -7770,7 +7159,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TCL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TCL.json", - referenceNumber: 472, name: "TCL/TK License", licenseId: "TCL", seeAlso: [ @@ -7784,7 +7172,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TCP-wrappers.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TCP-wrappers.json", - referenceNumber: 211, name: "TCP Wrappers License", licenseId: "TCP-wrappers", seeAlso: ["http://rc.quest.com/topics/openssh/license.php#tcpwrappers"], @@ -7795,7 +7182,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TermReadKey.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TermReadKey.json", - referenceNumber: 558, name: "TermReadKey License", licenseId: "TermReadKey", seeAlso: [ @@ -7808,7 +7194,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TGPPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TGPPL-1.0.json", - referenceNumber: 548, name: "Transitive Grace Period Public Licence 1.0", licenseId: "TGPPL-1.0", seeAlso: [ @@ -7822,7 +7207,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/threeparttable.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/threeparttable.json", - referenceNumber: 366, name: "threeparttable License", licenseId: "threeparttable", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Threeparttable"], @@ -7833,7 +7217,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TMate.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TMate.json", - referenceNumber: 401, name: "TMate Open Source License", licenseId: "TMate", seeAlso: ["http://svnkit.com/license.html"], @@ -7844,7 +7227,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TORQUE-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TORQUE-1.1.json", - referenceNumber: 493, name: "TORQUE v2.5+ Software License v1.1", licenseId: "TORQUE-1.1", seeAlso: ["https://fedoraproject.org/wiki/Licensing/TORQUEv1.1"], @@ -7855,7 +7237,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TOSL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TOSL.json", - referenceNumber: 156, name: "Trusster Open Source License", licenseId: "TOSL", seeAlso: ["https://fedoraproject.org/wiki/Licensing/TOSL"], @@ -7866,7 +7247,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TPDL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TPDL.json", - referenceNumber: 32, name: "Time::ParseDate License", licenseId: "TPDL", seeAlso: ["https://metacpan.org/pod/Time::ParseDate#LICENSE"], @@ -7877,7 +7257,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TPL-1.0.json", - referenceNumber: 133, name: "THOR Public License 1.0", licenseId: "TPL-1.0", seeAlso: ["https://fedoraproject.org/wiki/Licensing:ThorPublicLicense"], @@ -7888,7 +7267,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TrustedQSL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TrustedQSL.json", - referenceNumber: 417, name: "TrustedQSL License", licenseId: "TrustedQSL", seeAlso: [ @@ -7901,7 +7279,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TTWL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TTWL.json", - referenceNumber: 382, name: "Text-Tabs+Wrap License", licenseId: "TTWL", seeAlso: [ @@ -7915,7 +7292,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TTYP0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TTYP0.json", - referenceNumber: 380, name: "TTYP0 License", licenseId: "TTYP0", seeAlso: ["https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/"], @@ -7926,7 +7302,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TU-Berlin-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TU-Berlin-1.0.json", - referenceNumber: 588, name: "Technische Universitaet Berlin License 1.0", licenseId: "TU-Berlin-1.0", seeAlso: [ @@ -7939,7 +7314,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/TU-Berlin-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/TU-Berlin-2.0.json", - referenceNumber: 565, name: "Technische Universitaet Berlin License 2.0", licenseId: "TU-Berlin-2.0", seeAlso: [ @@ -7952,7 +7326,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Ubuntu-font-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Ubuntu-font-1.0.json", - referenceNumber: 333, name: "Ubuntu Font Licence v1.0", licenseId: "Ubuntu-font-1.0", seeAlso: [ @@ -7966,7 +7339,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/UCAR.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/UCAR.json", - referenceNumber: 164, name: "UCAR License", licenseId: "UCAR", seeAlso: ["https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT"], @@ -7977,7 +7349,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/UCL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/UCL-1.0.json", - referenceNumber: 451, name: "Upstream Compatibility License v1.0", licenseId: "UCL-1.0", seeAlso: ["https://opensource.org/licenses/UCL-1.0"], @@ -7988,7 +7359,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ulem.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ulem.json", - referenceNumber: 338, name: "ulem License", licenseId: "ulem", seeAlso: ["https://mirrors.ctan.org/macros/latex/contrib/ulem/README"], @@ -7999,7 +7369,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/UMich-Merit.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/UMich-Merit.json", - referenceNumber: 101, name: "Michigan/Merit Networks License", licenseId: "UMich-Merit", seeAlso: ["https://github.com/radcli/radcli/blob/master/COPYRIGHT#L64"], @@ -8010,7 +7379,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Unicode-3.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Unicode-3.0.json", - referenceNumber: 388, name: "Unicode License v3", licenseId: "Unicode-3.0", seeAlso: ["https://www.unicode.org/license.txt"], @@ -8021,7 +7389,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Unicode-DFS-2015.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Unicode-DFS-2015.json", - referenceNumber: 655, name: "Unicode License Agreement - Data Files and Software (2015)", licenseId: "Unicode-DFS-2015", seeAlso: [ @@ -8034,7 +7401,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Unicode-DFS-2016.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Unicode-DFS-2016.json", - referenceNumber: 22, name: "Unicode License Agreement - Data Files and Software (2016)", licenseId: "Unicode-DFS-2016", seeAlso: [ @@ -8049,7 +7415,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Unicode-TOU.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Unicode-TOU.json", - referenceNumber: 416, name: "Unicode Terms of Use", licenseId: "Unicode-TOU", seeAlso: [ @@ -8063,7 +7428,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/UnixCrypt.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/UnixCrypt.json", - referenceNumber: 135, name: "UnixCrypt License", licenseId: "UnixCrypt", seeAlso: [ @@ -8078,7 +7442,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Unlicense.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Unlicense.json", - referenceNumber: 225, name: "The Unlicense", licenseId: "Unlicense", seeAlso: ["https://unlicense.org/"], @@ -8091,7 +7454,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/UPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/UPL-1.0.json", - referenceNumber: 522, name: "Universal Permissive License v1.0", licenseId: "UPL-1.0", seeAlso: ["https://opensource.org/licenses/UPL"], @@ -8103,7 +7465,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/URT-RLE.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/URT-RLE.json", - referenceNumber: 128, name: "Utah Raster Toolkit Run Length Encoded License", licenseId: "URT-RLE", seeAlso: [ @@ -8117,7 +7478,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Vim.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Vim.json", - referenceNumber: 621, name: "Vim License", licenseId: "Vim", seeAlso: ["http://vimdoc.sourceforge.net/htmldoc/uganda.html"], @@ -8129,7 +7489,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/VOSTROM.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/VOSTROM.json", - referenceNumber: 463, name: "VOSTROM Public License for Open Source", licenseId: "VOSTROM", seeAlso: ["https://fedoraproject.org/wiki/Licensing/VOSTROM"], @@ -8140,7 +7499,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/VSL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/VSL-1.0.json", - referenceNumber: 261, name: "Vovida Software License v1.0", licenseId: "VSL-1.0", seeAlso: ["https://opensource.org/licenses/VSL-1.0"], @@ -8151,7 +7509,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/W3C.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/W3C.json", - referenceNumber: 86, name: "W3C Software Notice and License (2002-12-31)", licenseId: "W3C", seeAlso: [ @@ -8166,7 +7523,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/W3C-19980720.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/W3C-19980720.json", - referenceNumber: 71, name: "W3C Software Notice and License (1998-07-20)", licenseId: "W3C-19980720", seeAlso: [ @@ -8179,7 +7535,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/W3C-20150513.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/W3C-20150513.json", - referenceNumber: 427, name: "W3C Software Notice and Document License (2015-05-13)", licenseId: "W3C-20150513", seeAlso: [ @@ -8194,7 +7549,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/w3m.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/w3m.json", - referenceNumber: 433, name: "w3m License", licenseId: "w3m", seeAlso: ["https://github.com/tats/w3m/blob/master/COPYING"], @@ -8205,7 +7559,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Watcom-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Watcom-1.0.json", - referenceNumber: 555, name: "Sybase Open Watcom Public License 1.0", licenseId: "Watcom-1.0", seeAlso: ["https://opensource.org/licenses/Watcom-1.0"], @@ -8217,7 +7570,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Widget-Workshop.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Widget-Workshop.json", - referenceNumber: 285, name: "Widget Workshop License", licenseId: "Widget-Workshop", seeAlso: [ @@ -8230,7 +7582,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Wsuipa.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Wsuipa.json", - referenceNumber: 601, name: "Wsuipa License", licenseId: "Wsuipa", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Wsuipa"], @@ -8241,7 +7592,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/WTFPL.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/WTFPL.json", - referenceNumber: 107, name: "Do What The F*ck You Want To Public License", licenseId: "WTFPL", seeAlso: [ @@ -8257,7 +7607,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/wwl.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/wwl.json", - referenceNumber: 419, name: "WWL License", licenseId: "wwl", seeAlso: ["http://www.db.net/downloads/wwl+db-1.3.tgz"], @@ -8268,7 +7617,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/wxWindows.html", isDeprecatedLicenseId: true, detailsUrl: "https://spdx.org/licenses/wxWindows.json", - referenceNumber: 670, name: "wxWindows Library License", licenseId: "wxWindows", seeAlso: ["https://opensource.org/licenses/WXwindows"], @@ -8279,7 +7627,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/X11.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/X11.json", - referenceNumber: 353, name: "X11 License", licenseId: "X11", seeAlso: ["http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3"], @@ -8293,7 +7640,6 @@ export const licensesData = { isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/X11-distribute-modifications-variant.json", - referenceNumber: 505, name: "X11 License Distribution Modification Variant", licenseId: "X11-distribute-modifications-variant", seeAlso: ["https://github.com/mirror/ncurses/blob/master/COPYING"], @@ -8304,7 +7650,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/X11-swapped.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/X11-swapped.json", - referenceNumber: 671, name: "X11 swapped final paragraphs", licenseId: "X11-swapped", seeAlso: [ @@ -8317,7 +7662,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Xdebug-1.03.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Xdebug-1.03.json", - referenceNumber: 453, name: "Xdebug License v 1.03", licenseId: "Xdebug-1.03", seeAlso: ["https://github.com/xdebug/xdebug/blob/master/LICENSE"], @@ -8328,7 +7672,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Xerox.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Xerox.json", - referenceNumber: 158, name: "Xerox License", licenseId: "Xerox", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Xerox"], @@ -8339,7 +7682,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Xfig.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Xfig.json", - referenceNumber: 619, name: "Xfig License", licenseId: "Xfig", seeAlso: [ @@ -8354,7 +7696,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/XFree86-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/XFree86-1.1.json", - referenceNumber: 645, name: "XFree86 License 1.1", licenseId: "XFree86-1.1", seeAlso: ["http://www.xfree86.org/current/LICENSE4.html"], @@ -8366,7 +7707,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/xinetd.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/xinetd.json", - referenceNumber: 219, name: "xinetd License", licenseId: "xinetd", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Xinetd_License"], @@ -8378,7 +7718,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/xkeyboard-config-Zinoviev.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/xkeyboard-config-Zinoviev.json", - referenceNumber: 227, name: "xkeyboard-config Zinoviev License", licenseId: "xkeyboard-config-Zinoviev", seeAlso: [ @@ -8391,7 +7730,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/xlock.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/xlock.json", - referenceNumber: 392, name: "xlock License", licenseId: "xlock", seeAlso: ["https://fossies.org/linux/tiff/contrib/ras/ras2tif.c"], @@ -8402,7 +7740,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Xnet.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Xnet.json", - referenceNumber: 438, name: "X.Net License", licenseId: "Xnet", seeAlso: ["https://opensource.org/licenses/Xnet"], @@ -8413,7 +7750,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/xpp.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/xpp.json", - referenceNumber: 503, name: "XPP License", licenseId: "xpp", seeAlso: ["https://fedoraproject.org/wiki/Licensing/xpp"], @@ -8424,7 +7760,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/XSkat.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/XSkat.json", - referenceNumber: 109, name: "XSkat License", licenseId: "XSkat", seeAlso: ["https://fedoraproject.org/wiki/Licensing/XSkat_License"], @@ -8435,7 +7770,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/xzoom.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/xzoom.json", - referenceNumber: 664, name: "xzoom License", licenseId: "xzoom", seeAlso: [ @@ -8448,7 +7782,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/YPL-1.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/YPL-1.0.json", - referenceNumber: 500, name: "Yahoo! Public License v1.0", licenseId: "YPL-1.0", seeAlso: ["http://www.zimbra.com/license/yahoo_public_license_1.0.html"], @@ -8459,7 +7792,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/YPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/YPL-1.1.json", - referenceNumber: 190, name: "Yahoo! Public License v1.1", licenseId: "YPL-1.1", seeAlso: ["http://www.zimbra.com/license/yahoo_public_license_1.1.html"], @@ -8471,7 +7803,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Zed.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Zed.json", - referenceNumber: 460, name: "Zed License", licenseId: "Zed", seeAlso: ["https://fedoraproject.org/wiki/Licensing/Zed"], @@ -8482,7 +7813,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Zeeff.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Zeeff.json", - referenceNumber: 595, name: "Zeeff License", licenseId: "Zeeff", seeAlso: ["ftp://ftp.tin.org/pub/news/utils/newsx/newsx-1.6.tar.gz"], @@ -8493,7 +7823,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Zend-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Zend-2.0.json", - referenceNumber: 245, name: "Zend License v2.0", licenseId: "Zend-2.0", seeAlso: [ @@ -8507,7 +7836,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Zimbra-1.3.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Zimbra-1.3.json", - referenceNumber: 327, name: "Zimbra Public License v1.3", licenseId: "Zimbra-1.3", seeAlso: [ @@ -8521,7 +7849,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Zimbra-1.4.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Zimbra-1.4.json", - referenceNumber: 12, name: "Zimbra Public License v1.4", licenseId: "Zimbra-1.4", seeAlso: ["http://www.zimbra.com/legal/zimbra-public-license-1-4"], @@ -8532,7 +7859,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/Zlib.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/Zlib.json", - referenceNumber: 110, name: "zlib License", licenseId: "Zlib", seeAlso: [ @@ -8548,7 +7874,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/zlib-acknowledgement.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/zlib-acknowledgement.json", - referenceNumber: 362, name: "zlib/libpng License with Acknowledgement", licenseId: "zlib-acknowledgement", seeAlso: [ @@ -8561,7 +7886,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ZPL-1.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ZPL-1.1.json", - referenceNumber: 510, name: "Zope Public License 1.1", licenseId: "ZPL-1.1", seeAlso: ["http://old.zope.org/Resources/License/ZPL-1.1"], @@ -8572,7 +7896,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ZPL-2.0.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ZPL-2.0.json", - referenceNumber: 173, name: "Zope Public License 2.0", licenseId: "ZPL-2.0", seeAlso: [ @@ -8587,7 +7910,6 @@ export const licensesData = { reference: "https://spdx.org/licenses/ZPL-2.1.html", isDeprecatedLicenseId: false, detailsUrl: "https://spdx.org/licenses/ZPL-2.1.json", - referenceNumber: 657, name: "Zope Public License 2.1", licenseId: "ZPL-2.1", seeAlso: ["http://old.zope.org/Resources/ZPL/"], diff --git a/tooling/data/src/licenses/schemas.ts b/tooling/data/src/licenses/schemas.ts index 598d7885..69ef9450 100644 --- a/tooling/data/src/licenses/schemas.ts +++ b/tooling/data/src/licenses/schemas.ts @@ -17,11 +17,11 @@ export const LicenseSchema = z.object({ reference: z.string().url(), isDeprecatedLicenseId: z.boolean(), detailsUrl: z.string().url(), - referenceNumber: z.number(), name: z.string(), licenseId: LicenseIdSchema, seeAlso: z.array(z.string().url()), isOsiApproved: z.boolean(), + licenseText: z.string().optional().nullable(), }); export const LicenseStatusSchema = z.union([