@testspectra/cli 1.1.8-rc.3 → 1.1.8-rc.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -0
- package/bin/spectra.js +0 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/__tests__/doctor-filter.test.d.ts +1 -0
- package/dist/commands/__tests__/doctor-filter.test.js +37 -0
- package/dist/commands/__tests__/run-e2e.test.js +49 -49
- package/dist/commands/__tests__/test-error-streaming.test.d.ts +1 -0
- package/dist/commands/__tests__/test-error-streaming.test.js +85 -0
- package/dist/commands/__tests__/test-scaffolding.test.d.ts +1 -0
- package/dist/commands/__tests__/test-scaffolding.test.js +32 -0
- package/dist/commands/__tests__/upgrade.test.d.ts +1 -0
- package/dist/commands/__tests__/upgrade.test.js +95 -0
- package/dist/commands/add.js +5 -4
- package/dist/commands/devices.js +1 -0
- package/dist/commands/docs.d.ts +4 -0
- package/dist/commands/docs.js +17 -0
- package/dist/commands/doctor.d.ts +9 -1
- package/dist/commands/doctor.js +17 -3
- package/dist/commands/init.js +7 -160
- package/dist/commands/install.js +5 -0
- package/dist/commands/license.js +1 -0
- package/dist/commands/run.d.ts +2 -0
- package/dist/commands/run.js +22 -0
- package/dist/commands/test.d.ts +13 -0
- package/dist/commands/test.js +115 -21
- package/dist/commands/upgrade.d.ts +12 -0
- package/dist/commands/upgrade.js +197 -0
- package/dist/config/schema.d.ts +53 -0
- package/dist/config/schema.js +2 -0
- package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
- package/dist/generator/__tests__/type-generator.test.js +38 -0
- package/dist/generator/architecture-doc-generator.d.ts +14 -0
- package/dist/generator/architecture-doc-generator.js +80 -0
- package/dist/generator/index.d.ts +1 -0
- package/dist/generator/index.js +1 -0
- package/dist/generator/tsconfig-generator.js +1 -1
- package/dist/generator/type-generator.d.ts +5 -2
- package/dist/generator/type-generator.js +14 -17
- package/dist/index.js +56 -26
- package/dist/linter/__tests__/component-test-imports.test.js +51 -51
- package/dist/linter/__tests__/shared-lib-boundary.test.js +15 -15
- package/dist/linter/__tests__/spec-schema.test.js +167 -167
- package/dist/linter/discovery.d.ts +3 -3
- package/dist/linter/discovery.js +7 -7
- package/dist/linter/schemas/spec.schema.d.ts +8 -8
- package/dist/linter/schemas/suite.schema.d.ts +4 -4
- package/dist/runner/bridge.d.ts +1 -1
- package/dist/runner/bridge.js +101 -11
- package/dist/runner/reporter.d.ts +1 -0
- package/dist/runner/reporter.js +12 -6
- package/dist/utils/__tests__/dev-server-manager.test.d.ts +1 -0
- package/dist/utils/__tests__/dev-server-manager.test.js +72 -0
- package/dist/utils/background-update-check.d.ts +1 -0
- package/dist/utils/background-update-check.js +43 -0
- package/dist/utils/dependency-updates.d.ts +15 -0
- package/dist/utils/dependency-updates.js +107 -0
- package/dist/utils/dev-server-manager.d.ts +40 -0
- package/dist/utils/dev-server-manager.js +257 -0
- package/dist/utils/update-notifier.d.ts +2 -0
- package/dist/utils/update-notifier.js +67 -0
- package/package.json +36 -30
- package/templates/default/CLAUDE.md +16 -16
- package/templates/default/global-hooks/after/mobile.hook.ts +3 -3
- package/templates/default/global-hooks/after/web.hook.ts +3 -3
- package/templates/default/global-hooks/before/mobile.hook.ts +3 -3
- package/templates/default/global-hooks/before/web.hook.ts +3 -3
- package/templates/default/package.json +2 -2
- package/templates/default/page-objects/AuthPage/mobile.ts +5 -5
- package/templates/default/page-objects/AuthPage/web.ts +10 -10
- package/templates/default/page-objects/MatchersPage/mobile.ts +70 -70
- package/templates/default/page-objects/MatchersPage/web.ts +43 -43
- package/templates/default/page-objects/NavigationPage/mobile.ts +14 -14
- package/templates/default/page-objects/NavigationPage/web.ts +8 -8
- package/templates/default/page-objects/PlaygroundPage/mobile.ts +42 -42
- package/templates/default/page-objects/PlaygroundPage/web.ts +31 -31
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +53 -53
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +19 -19
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +31 -31
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -3
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -3
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +27 -27
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +19 -19
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +26 -26
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -30
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -22
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -27
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -20
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -24
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -26
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -37
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -21
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -29
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -16
- package/templates/default/specs/ApiInterception/suite.md +10 -10
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -30
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -23
- package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -16
- package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -28
- package/templates/default/specs/ApiSeeding/suite.md +9 -9
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -7
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -19
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -9
- package/templates/default/specs/Authentication/suite.md +9 -9
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +9 -9
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +17 -17
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -17
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -28
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -26
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -26
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +19 -19
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +11 -11
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +17 -17
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -14
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -21
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -28
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -29
- package/templates/default/specs/DeepLink/suite.md +9 -9
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +11 -11
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +17 -17
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +29 -29
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +19 -19
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
- package/templates/default/specs/ElementMatchers/suite.md +10 -10
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
- package/templates/default/specs/EnvironmentConfig/suite.md +9 -9
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -26
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -22
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -13
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -20
- package/templates/default/specs/PermissionRationale/suite.md +9 -9
- package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0001-form-controls/spec.md +18 -18
- package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0002-toggle-elements/spec.md +18 -18
- package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
- package/templates/default/spectra.config.ts +52 -52
- package/templates/default/support/actions/fillCredentials/mobile.action.ts +4 -4
- package/templates/default/support/actions/fillCredentials/web.action.ts +4 -4
- package/templates/default/support/actions/seedSession/mobile.action.ts +9 -9
- package/templates/default/support/actions/seedSession/web.action.ts +13 -13
- package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +5 -5
- package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +5 -5
- package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +6 -6
- package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +6 -6
- package/templates/docs/ARCHITECTURE.default.md +26 -0
- package/templates/docs/ARCHITECTURE.nx.md +119 -0
- package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db-shm → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm} +0 -0
- package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal +0 -0
- package/templates/nx/.nx/workspace-data/d/daemon.log +6343 -1612
- package/templates/nx/.nx/workspace-data/d/server-process.json +1 -1
- package/templates/nx/.nx/workspace-data/file-map.json +116 -130
- package/templates/nx/.nx/workspace-data/lockfile.hash +1 -1
- package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
- package/templates/nx/.nx/workspace-data/parsed-lock-file.json +504 -504
- package/templates/nx/.nx/workspace-data/project-graph.json +560 -559
- package/templates/nx/.nx/workspace-data/source-maps.json +336 -0
- package/templates/nx/CLAUDE.md +10 -10
- package/templates/nx/package.json +3 -3
- package/templates/nx/packages/matchers/e2e/project.json +2 -2
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +27 -27
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -27
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +24 -24
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -24
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +17 -17
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -9
- package/templates/nx/packages/playground/e2e/project.json +2 -2
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts +3 -3
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +3 -3
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
- package/templates/nx/pnpm-lock.yaml +6663 -6663
- package/templates/nx/pnpm-workspace.yaml +9 -9
- package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +33 -33
- package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +91 -91
- package/templates/nx/shared/testing/page-objects/NavigationPage/mobile.ts +5 -5
- package/templates/nx/shared/testing/page-objects/NavigationPage/web.ts +8 -8
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/mobile.ts +26 -26
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +31 -31
- package/templates/nx/shared/testing/project.json +18 -19
- package/templates/nx/shared/testing/support/actions/fillCredentials/mobile.action.ts +4 -4
- package/templates/nx/shared/testing/support/actions/fillCredentials/web.action.ts +4 -4
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts +3 -3
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +5 -5
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +4 -4
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +6 -6
- package/templates/nx/spectra.config.ts +65 -52
- package/templates/react-component/.cursorrules +17 -17
- package/templates/react-component/.vscode/extensions.json +5 -5
- package/templates/react-component/CLAUDE.md +14 -14
- package/templates/react-component/README.md +69 -69
- package/templates/react-component/fixtures/component-mock.json +12 -12
- package/templates/react-component/global-hooks/after/web.hook.ts +3 -3
- package/templates/react-component/global-hooks/before/web.hook.ts +3 -3
- package/templates/react-component/package.json +27 -27
- package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -23
- package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -23
- package/templates/react-component/page-objects/InputComponent/web.ts +13 -13
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -11
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -10
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -16
- package/templates/react-component/specs/BadgeComponent/suite.md +12 -12
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -19
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +25 -28
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -19
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +13 -22
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -18
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -8
- package/templates/react-component/specs/ButtonComponent/suite.md +12 -12
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -20
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +24 -28
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -18
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -9
- package/templates/react-component/specs/InputComponent/suite.md +12 -12
- package/templates/react-component/spectra.config.ts +17 -27
- package/templates/react-component/src/components/Badge/Badge.tsx +60 -60
- package/templates/react-component/src/components/Button/Button.tsx +59 -57
- package/templates/react-component/src/components/Input/Input.tsx +40 -41
- package/templates/react-component/src/test-utils.tsx +23 -23
- package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -9
- package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -12
- package/bin/.testspectra-runner.hash +0 -1
- package/bin/testspectra-runner.exe +0 -0
- package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-wal +0 -0
- /package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db} +0 -0
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"projectType": "application",
|
|
11
11
|
"sourceRoot": "packages/playground/e2e",
|
|
12
12
|
"tags": [
|
|
13
|
-
"
|
|
14
|
-
"
|
|
13
|
+
"testspectra:e2e",
|
|
14
|
+
"testspectra:scope:playground"
|
|
15
15
|
],
|
|
16
16
|
"targets": {
|
|
17
17
|
"e2e": {
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"projectType": "application",
|
|
70
70
|
"sourceRoot": "packages/matchers/e2e",
|
|
71
71
|
"tags": [
|
|
72
|
-
"
|
|
73
|
-
"
|
|
72
|
+
"testspectra:e2e",
|
|
73
|
+
"testspectra:scope:matchers"
|
|
74
74
|
],
|
|
75
75
|
"targets": {
|
|
76
76
|
"e2e": {
|
|
@@ -128,8 +128,7 @@
|
|
|
128
128
|
"projectType": "library",
|
|
129
129
|
"sourceRoot": "shared/testing",
|
|
130
130
|
"tags": [
|
|
131
|
-
"
|
|
132
|
-
"type:shared"
|
|
131
|
+
"testspectra:shared"
|
|
133
132
|
],
|
|
134
133
|
"targets": {
|
|
135
134
|
"type-check": {
|
|
@@ -773,9 +772,9 @@
|
|
|
773
772
|
"hash": "sha512-HdNQYSdRTEBNrginaqzQtTjG0HRMfrra/z6Ok7uL3S87vSlarIVohEsJsSj5edu3MiHoHjAkvPROz5ZjoKai+w=="
|
|
774
773
|
}
|
|
775
774
|
},
|
|
776
|
-
"npm:@jest/schemas": {
|
|
775
|
+
"npm:@jest/schemas@29.6.3": {
|
|
777
776
|
"type": "npm",
|
|
778
|
-
"name": "npm:@jest/schemas",
|
|
777
|
+
"name": "npm:@jest/schemas@29.6.3",
|
|
779
778
|
"data": {
|
|
780
779
|
"version": "29.6.3",
|
|
781
780
|
"packageName": "@jest/schemas",
|
|
@@ -989,9 +988,9 @@
|
|
|
989
988
|
"hash": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA=="
|
|
990
989
|
}
|
|
991
990
|
},
|
|
992
|
-
"npm:@puppeteer/browsers": {
|
|
991
|
+
"npm:@puppeteer/browsers@2.13.2": {
|
|
993
992
|
"type": "npm",
|
|
994
|
-
"name": "npm:@puppeteer/browsers",
|
|
993
|
+
"name": "npm:@puppeteer/browsers@2.13.2",
|
|
995
994
|
"data": {
|
|
996
995
|
"version": "2.13.2",
|
|
997
996
|
"packageName": "@puppeteer/browsers",
|
|
@@ -1007,9 +1006,9 @@
|
|
|
1007
1006
|
"hash": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg=="
|
|
1008
1007
|
}
|
|
1009
1008
|
},
|
|
1010
|
-
"npm:@sinclair/typebox": {
|
|
1009
|
+
"npm:@sinclair/typebox@0.27.12": {
|
|
1011
1010
|
"type": "npm",
|
|
1012
|
-
"name": "npm:@sinclair/typebox",
|
|
1011
|
+
"name": "npm:@sinclair/typebox@0.27.12",
|
|
1013
1012
|
"data": {
|
|
1014
1013
|
"version": "0.27.12",
|
|
1015
1014
|
"packageName": "@sinclair/typebox",
|
|
@@ -1034,9 +1033,9 @@
|
|
|
1034
1033
|
"hash": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
|
|
1035
1034
|
}
|
|
1036
1035
|
},
|
|
1037
|
-
"npm:@sindresorhus/is": {
|
|
1036
|
+
"npm:@sindresorhus/is@5.6.0": {
|
|
1038
1037
|
"type": "npm",
|
|
1039
|
-
"name": "npm:@sindresorhus/is",
|
|
1038
|
+
"name": "npm:@sindresorhus/is@5.6.0",
|
|
1040
1039
|
"data": {
|
|
1041
1040
|
"version": "5.6.0",
|
|
1042
1041
|
"packageName": "@sindresorhus/is",
|
|
@@ -1061,9 +1060,9 @@
|
|
|
1061
1060
|
"hash": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="
|
|
1062
1061
|
}
|
|
1063
1062
|
},
|
|
1064
|
-
"npm:@szmarczak/http-timer": {
|
|
1063
|
+
"npm:@szmarczak/http-timer@5.0.1": {
|
|
1065
1064
|
"type": "npm",
|
|
1066
|
-
"name": "npm:@szmarczak/http-timer",
|
|
1065
|
+
"name": "npm:@szmarczak/http-timer@5.0.1",
|
|
1067
1066
|
"data": {
|
|
1068
1067
|
"version": "5.0.1",
|
|
1069
1068
|
"packageName": "@szmarczak/http-timer",
|
|
@@ -1250,9 +1249,9 @@
|
|
|
1250
1249
|
"hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q=="
|
|
1251
1250
|
}
|
|
1252
1251
|
},
|
|
1253
|
-
"npm:@vitest/pretty-format": {
|
|
1252
|
+
"npm:@vitest/pretty-format@2.1.9": {
|
|
1254
1253
|
"type": "npm",
|
|
1255
|
-
"name": "npm:@vitest/pretty-format",
|
|
1254
|
+
"name": "npm:@vitest/pretty-format@2.1.9",
|
|
1256
1255
|
"data": {
|
|
1257
1256
|
"version": "2.1.9",
|
|
1258
1257
|
"packageName": "@vitest/pretty-format",
|
|
@@ -1268,9 +1267,9 @@
|
|
|
1268
1267
|
"hash": "sha512-yiZzPbGTS9Sr/JpFl8zHrcIkAofNbFV6k21vIgQN/cY/oxZeXhJv5sc/MBJ5jFKWmWs+oJHw0UXLZjmf931+Vw=="
|
|
1269
1268
|
}
|
|
1270
1269
|
},
|
|
1271
|
-
"npm:@vitest/snapshot": {
|
|
1270
|
+
"npm:@vitest/snapshot@2.1.9": {
|
|
1272
1271
|
"type": "npm",
|
|
1273
|
-
"name": "npm:@vitest/snapshot",
|
|
1272
|
+
"name": "npm:@vitest/snapshot@2.1.9",
|
|
1274
1273
|
"data": {
|
|
1275
1274
|
"version": "2.1.9",
|
|
1276
1275
|
"packageName": "@vitest/snapshot",
|
|
@@ -1367,9 +1366,9 @@
|
|
|
1367
1366
|
"hash": "sha512-kcHL86RmNbcQP+Gq/vQUGlArfU6IIcbbnNp32rRIraitomZow+iEoc519rdQmSVusDozMS5DZthkgDdxK+vz6Q=="
|
|
1368
1367
|
}
|
|
1369
1368
|
},
|
|
1370
|
-
"npm:@wdio/logger": {
|
|
1369
|
+
"npm:@wdio/logger@9.29.1": {
|
|
1371
1370
|
"type": "npm",
|
|
1372
|
-
"name": "npm:@wdio/logger",
|
|
1371
|
+
"name": "npm:@wdio/logger@9.29.1",
|
|
1373
1372
|
"data": {
|
|
1374
1373
|
"version": "9.29.1",
|
|
1375
1374
|
"packageName": "@wdio/logger",
|
|
@@ -1394,9 +1393,9 @@
|
|
|
1394
1393
|
"hash": "sha512-Do+AW3xuDUHWkrX++LeMBSrX2yRILlDqunRHPMv4adGFEA45m7r4WP8wGCDb+chrHGhXq5TwB9Ne4J7x1dHGng=="
|
|
1395
1394
|
}
|
|
1396
1395
|
},
|
|
1397
|
-
"npm:@wdio/protocols": {
|
|
1396
|
+
"npm:@wdio/protocols@9.31.5": {
|
|
1398
1397
|
"type": "npm",
|
|
1399
|
-
"name": "npm:@wdio/protocols",
|
|
1398
|
+
"name": "npm:@wdio/protocols@9.31.5",
|
|
1400
1399
|
"data": {
|
|
1401
1400
|
"version": "9.31.5",
|
|
1402
1401
|
"packageName": "@wdio/protocols",
|
|
@@ -1412,9 +1411,9 @@
|
|
|
1412
1411
|
"hash": "sha512-mWEiBbaC7CgxvSd2/ozpbZWebnRIc8KRu/J81Hlw/txUWio27S7IpXBlZGVvhEsNzq0+cuxB/8gDkkXvMPbesw=="
|
|
1413
1412
|
}
|
|
1414
1413
|
},
|
|
1415
|
-
"npm:@wdio/repl": {
|
|
1414
|
+
"npm:@wdio/repl@9.16.2": {
|
|
1416
1415
|
"type": "npm",
|
|
1417
|
-
"name": "npm:@wdio/repl",
|
|
1416
|
+
"name": "npm:@wdio/repl@9.16.2",
|
|
1418
1417
|
"data": {
|
|
1419
1418
|
"version": "9.16.2",
|
|
1420
1419
|
"packageName": "@wdio/repl",
|
|
@@ -1538,9 +1537,9 @@
|
|
|
1538
1537
|
"hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
|
|
1539
1538
|
}
|
|
1540
1539
|
},
|
|
1541
|
-
"npm:agent-base": {
|
|
1540
|
+
"npm:agent-base@6.0.2": {
|
|
1542
1541
|
"type": "npm",
|
|
1543
|
-
"name": "npm:agent-base",
|
|
1542
|
+
"name": "npm:agent-base@6.0.2",
|
|
1544
1543
|
"data": {
|
|
1545
1544
|
"version": "6.0.2",
|
|
1546
1545
|
"packageName": "agent-base",
|
|
@@ -1574,9 +1573,9 @@
|
|
|
1574
1573
|
"hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw=="
|
|
1575
1574
|
}
|
|
1576
1575
|
},
|
|
1577
|
-
"npm:ansi-regex": {
|
|
1576
|
+
"npm:ansi-regex@5.0.1": {
|
|
1578
1577
|
"type": "npm",
|
|
1579
|
-
"name": "npm:ansi-regex",
|
|
1578
|
+
"name": "npm:ansi-regex@5.0.1",
|
|
1580
1579
|
"data": {
|
|
1581
1580
|
"version": "5.0.1",
|
|
1582
1581
|
"packageName": "ansi-regex",
|
|
@@ -1592,9 +1591,9 @@
|
|
|
1592
1591
|
"hash": "sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ=="
|
|
1593
1592
|
}
|
|
1594
1593
|
},
|
|
1595
|
-
"npm:ansi-styles": {
|
|
1594
|
+
"npm:ansi-styles@4.3.0": {
|
|
1596
1595
|
"type": "npm",
|
|
1597
|
-
"name": "npm:ansi-styles",
|
|
1596
|
+
"name": "npm:ansi-styles@4.3.0",
|
|
1598
1597
|
"data": {
|
|
1599
1598
|
"version": "4.3.0",
|
|
1600
1599
|
"packageName": "ansi-styles",
|
|
@@ -1664,9 +1663,9 @@
|
|
|
1664
1663
|
"hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
|
|
1665
1664
|
}
|
|
1666
1665
|
},
|
|
1667
|
-
"npm:argparse": {
|
|
1666
|
+
"npm:argparse@2.0.1": {
|
|
1668
1667
|
"type": "npm",
|
|
1669
|
-
"name": "npm:argparse",
|
|
1668
|
+
"name": "npm:argparse@2.0.1",
|
|
1670
1669
|
"data": {
|
|
1671
1670
|
"version": "2.0.1",
|
|
1672
1671
|
"packageName": "argparse",
|
|
@@ -1952,9 +1951,9 @@
|
|
|
1952
1951
|
"hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="
|
|
1953
1952
|
}
|
|
1954
1953
|
},
|
|
1955
|
-
"npm:buffer-crc32": {
|
|
1954
|
+
"npm:buffer-crc32@1.0.0": {
|
|
1956
1955
|
"type": "npm",
|
|
1957
|
-
"name": "npm:buffer-crc32",
|
|
1956
|
+
"name": "npm:buffer-crc32@1.0.0",
|
|
1958
1957
|
"data": {
|
|
1959
1958
|
"version": "1.0.0",
|
|
1960
1959
|
"packageName": "buffer-crc32",
|
|
@@ -1970,9 +1969,9 @@
|
|
|
1970
1969
|
"hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A=="
|
|
1971
1970
|
}
|
|
1972
1971
|
},
|
|
1973
|
-
"npm:buffer": {
|
|
1972
|
+
"npm:buffer@5.7.1": {
|
|
1974
1973
|
"type": "npm",
|
|
1975
|
-
"name": "npm:buffer",
|
|
1974
|
+
"name": "npm:buffer@5.7.1",
|
|
1976
1975
|
"data": {
|
|
1977
1976
|
"version": "5.7.1",
|
|
1978
1977
|
"packageName": "buffer",
|
|
@@ -2006,9 +2005,9 @@
|
|
|
2006
2005
|
"hash": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="
|
|
2007
2006
|
}
|
|
2008
2007
|
},
|
|
2009
|
-
"npm:cacheable-request": {
|
|
2008
|
+
"npm:cacheable-request@10.2.14": {
|
|
2010
2009
|
"type": "npm",
|
|
2011
|
-
"name": "npm:cacheable-request",
|
|
2010
|
+
"name": "npm:cacheable-request@10.2.14",
|
|
2012
2011
|
"data": {
|
|
2013
2012
|
"version": "10.2.14",
|
|
2014
2013
|
"packageName": "cacheable-request",
|
|
@@ -2042,9 +2041,9 @@
|
|
|
2042
2041
|
"hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
|
2043
2042
|
}
|
|
2044
2043
|
},
|
|
2045
|
-
"npm:camelcase": {
|
|
2044
|
+
"npm:camelcase@6.3.0": {
|
|
2046
2045
|
"type": "npm",
|
|
2047
|
-
"name": "npm:camelcase",
|
|
2046
|
+
"name": "npm:camelcase@6.3.0",
|
|
2048
2047
|
"data": {
|
|
2049
2048
|
"version": "6.3.0",
|
|
2050
2049
|
"packageName": "camelcase",
|
|
@@ -2087,9 +2086,9 @@
|
|
|
2087
2086
|
"hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
|
|
2088
2087
|
}
|
|
2089
2088
|
},
|
|
2090
|
-
"npm:chalk": {
|
|
2089
|
+
"npm:chalk@5.6.2": {
|
|
2091
2090
|
"type": "npm",
|
|
2092
|
-
"name": "npm:chalk",
|
|
2091
|
+
"name": "npm:chalk@5.6.2",
|
|
2093
2092
|
"data": {
|
|
2094
2093
|
"version": "5.6.2",
|
|
2095
2094
|
"packageName": "chalk",
|
|
@@ -2141,9 +2140,9 @@
|
|
|
2141
2140
|
"hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="
|
|
2142
2141
|
}
|
|
2143
2142
|
},
|
|
2144
|
-
"npm:chokidar": {
|
|
2143
|
+
"npm:chokidar@4.0.3": {
|
|
2145
2144
|
"type": "npm",
|
|
2146
|
-
"name": "npm:chokidar",
|
|
2145
|
+
"name": "npm:chokidar@4.0.3",
|
|
2147
2146
|
"data": {
|
|
2148
2147
|
"version": "4.0.3",
|
|
2149
2148
|
"packageName": "chokidar",
|
|
@@ -2231,9 +2230,9 @@
|
|
|
2231
2230
|
"hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="
|
|
2232
2231
|
}
|
|
2233
2232
|
},
|
|
2234
|
-
"npm:cliui": {
|
|
2233
|
+
"npm:cliui@8.0.1": {
|
|
2235
2234
|
"type": "npm",
|
|
2236
|
-
"name": "npm:cliui",
|
|
2235
|
+
"name": "npm:cliui@8.0.1",
|
|
2237
2236
|
"data": {
|
|
2238
2237
|
"version": "8.0.1",
|
|
2239
2238
|
"packageName": "cliui",
|
|
@@ -2483,9 +2482,9 @@
|
|
|
2483
2482
|
"hash": "sha512-7DYm8qe+gPx/h77QlCyFmX80+fGaE/6A/Ekl0zaszYOubvySO2saYFdQ78P29D0UsULxFKCetDGNaNRUdSF+2A=="
|
|
2484
2483
|
}
|
|
2485
2484
|
},
|
|
2486
|
-
"npm:data-uri-to-buffer": {
|
|
2485
|
+
"npm:data-uri-to-buffer@4.0.1": {
|
|
2487
2486
|
"type": "npm",
|
|
2488
|
-
"name": "npm:data-uri-to-buffer",
|
|
2487
|
+
"name": "npm:data-uri-to-buffer@4.0.1",
|
|
2489
2488
|
"data": {
|
|
2490
2489
|
"version": "4.0.1",
|
|
2491
2490
|
"packageName": "data-uri-to-buffer",
|
|
@@ -2519,9 +2518,9 @@
|
|
|
2519
2518
|
"hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
|
|
2520
2519
|
}
|
|
2521
2520
|
},
|
|
2522
|
-
"npm:debug": {
|
|
2521
|
+
"npm:debug@4.4.3": {
|
|
2523
2522
|
"type": "npm",
|
|
2524
|
-
"name": "npm:debug",
|
|
2523
|
+
"name": "npm:debug@4.4.3",
|
|
2525
2524
|
"data": {
|
|
2526
2525
|
"version": "4.4.3",
|
|
2527
2526
|
"packageName": "debug",
|
|
@@ -2537,9 +2536,9 @@
|
|
|
2537
2536
|
"hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ=="
|
|
2538
2537
|
}
|
|
2539
2538
|
},
|
|
2540
|
-
"npm:decamelize": {
|
|
2539
|
+
"npm:decamelize@6.0.1": {
|
|
2541
2540
|
"type": "npm",
|
|
2542
|
-
"name": "npm:decamelize",
|
|
2541
|
+
"name": "npm:decamelize@6.0.1",
|
|
2543
2542
|
"data": {
|
|
2544
2543
|
"version": "6.0.1",
|
|
2545
2544
|
"packageName": "decamelize",
|
|
@@ -2555,9 +2554,9 @@
|
|
|
2555
2554
|
"hash": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA=="
|
|
2556
2555
|
}
|
|
2557
2556
|
},
|
|
2558
|
-
"npm:decompress-response": {
|
|
2557
|
+
"npm:decompress-response@6.0.0": {
|
|
2559
2558
|
"type": "npm",
|
|
2560
|
-
"name": "npm:decompress-response",
|
|
2559
|
+
"name": "npm:decompress-response@6.0.0",
|
|
2561
2560
|
"data": {
|
|
2562
2561
|
"version": "6.0.0",
|
|
2563
2562
|
"packageName": "decompress-response",
|
|
@@ -2618,9 +2617,9 @@
|
|
|
2618
2617
|
"hash": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ=="
|
|
2619
2618
|
}
|
|
2620
2619
|
},
|
|
2621
|
-
"npm:defer-to-connect": {
|
|
2620
|
+
"npm:defer-to-connect@2.0.1": {
|
|
2622
2621
|
"type": "npm",
|
|
2623
|
-
"name": "npm:defer-to-connect",
|
|
2622
|
+
"name": "npm:defer-to-connect@2.0.1",
|
|
2624
2623
|
"data": {
|
|
2625
2624
|
"version": "2.0.1",
|
|
2626
2625
|
"packageName": "defer-to-connect",
|
|
@@ -2663,9 +2662,9 @@
|
|
|
2663
2662
|
"hash": "sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg=="
|
|
2664
2663
|
}
|
|
2665
2664
|
},
|
|
2666
|
-
"npm:devtools-protocol": {
|
|
2665
|
+
"npm:devtools-protocol@0.0.1400418": {
|
|
2667
2666
|
"type": "npm",
|
|
2668
|
-
"name": "npm:devtools-protocol",
|
|
2667
|
+
"name": "npm:devtools-protocol@0.0.1400418",
|
|
2669
2668
|
"data": {
|
|
2670
2669
|
"version": "0.0.1400418",
|
|
2671
2670
|
"packageName": "devtools-protocol",
|
|
@@ -2843,9 +2842,9 @@
|
|
|
2843
2842
|
"hash": "sha512-3Ve9cd5ziLByUdigw6zovVeWJjVs8QHVmqOB0sJ0WNeVPcwf4p18GnxMmVvlFmYRloUwf5suNuorea4QzwBIOA=="
|
|
2844
2843
|
}
|
|
2845
2844
|
},
|
|
2846
|
-
"npm:edgedriver": {
|
|
2845
|
+
"npm:edgedriver@6.3.0": {
|
|
2847
2846
|
"type": "npm",
|
|
2848
|
-
"name": "npm:edgedriver",
|
|
2847
|
+
"name": "npm:edgedriver@6.3.0",
|
|
2849
2848
|
"data": {
|
|
2850
2849
|
"version": "6.3.0",
|
|
2851
2850
|
"packageName": "edgedriver",
|
|
@@ -2870,9 +2869,9 @@
|
|
|
2870
2869
|
"hash": "sha512-UvA/32XqrLDdZSn7Jllo1AYNcWji/G0d5M0GTViE7KoGBiMunw3a34Sb2KO4ZZyrSEhqsxFoVhWWJshdyfKqJA=="
|
|
2871
2870
|
}
|
|
2872
2871
|
},
|
|
2873
|
-
"npm:emoji-regex": {
|
|
2872
|
+
"npm:emoji-regex@8.0.0": {
|
|
2874
2873
|
"type": "npm",
|
|
2875
|
-
"name": "npm:emoji-regex",
|
|
2874
|
+
"name": "npm:emoji-regex@8.0.0",
|
|
2876
2875
|
"data": {
|
|
2877
2876
|
"version": "8.0.0",
|
|
2878
2877
|
"packageName": "emoji-regex",
|
|
@@ -2906,9 +2905,9 @@
|
|
|
2906
2905
|
"hash": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg=="
|
|
2907
2906
|
}
|
|
2908
2907
|
},
|
|
2909
|
-
"npm:enquirer": {
|
|
2908
|
+
"npm:enquirer@2.3.6": {
|
|
2910
2909
|
"type": "npm",
|
|
2911
|
-
"name": "npm:enquirer",
|
|
2910
|
+
"name": "npm:enquirer@2.3.6",
|
|
2912
2911
|
"data": {
|
|
2913
2912
|
"version": "2.3.6",
|
|
2914
2913
|
"packageName": "enquirer",
|
|
@@ -3023,9 +3022,9 @@
|
|
|
3023
3022
|
"hash": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="
|
|
3024
3023
|
}
|
|
3025
3024
|
},
|
|
3026
|
-
"npm:escape-string-regexp": {
|
|
3025
|
+
"npm:escape-string-regexp@1.0.5": {
|
|
3027
3026
|
"type": "npm",
|
|
3028
|
-
"name": "npm:escape-string-regexp",
|
|
3027
|
+
"name": "npm:escape-string-regexp@1.0.5",
|
|
3029
3028
|
"data": {
|
|
3030
3029
|
"version": "1.0.5",
|
|
3031
3030
|
"packageName": "escape-string-regexp",
|
|
@@ -3221,9 +3220,9 @@
|
|
|
3221
3220
|
"hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ=="
|
|
3222
3221
|
}
|
|
3223
3222
|
},
|
|
3224
|
-
"npm:figures": {
|
|
3223
|
+
"npm:figures@3.2.0": {
|
|
3225
3224
|
"type": "npm",
|
|
3226
|
-
"name": "npm:figures",
|
|
3225
|
+
"name": "npm:figures@3.2.0",
|
|
3227
3226
|
"data": {
|
|
3228
3227
|
"version": "3.2.0",
|
|
3229
3228
|
"packageName": "figures",
|
|
@@ -3266,9 +3265,9 @@
|
|
|
3266
3265
|
"hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="
|
|
3267
3266
|
}
|
|
3268
3267
|
},
|
|
3269
|
-
"npm:find-up": {
|
|
3268
|
+
"npm:find-up@5.0.0": {
|
|
3270
3269
|
"type": "npm",
|
|
3271
|
-
"name": "npm:find-up",
|
|
3270
|
+
"name": "npm:find-up@5.0.0",
|
|
3272
3271
|
"data": {
|
|
3273
3272
|
"version": "5.0.0",
|
|
3274
3273
|
"packageName": "find-up",
|
|
@@ -3401,9 +3400,9 @@
|
|
|
3401
3400
|
"hash": "sha512-4m/CRk0OI8MaANRuFIahvOxYTSjlNAO2p9JmE14zxueknq6cdtB5M9UGRQ8R9aMV0bLGNVHHDnDXmoXdOwJfWg=="
|
|
3402
3401
|
}
|
|
3403
3402
|
},
|
|
3404
|
-
"npm:geckodriver": {
|
|
3403
|
+
"npm:geckodriver@6.1.1": {
|
|
3405
3404
|
"type": "npm",
|
|
3406
|
-
"name": "npm:geckodriver",
|
|
3405
|
+
"name": "npm:geckodriver@6.1.1",
|
|
3407
3406
|
"data": {
|
|
3408
3407
|
"version": "6.1.1",
|
|
3409
3408
|
"packageName": "geckodriver",
|
|
@@ -3482,9 +3481,9 @@
|
|
|
3482
3481
|
"hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="
|
|
3483
3482
|
}
|
|
3484
3483
|
},
|
|
3485
|
-
"npm:get-stream": {
|
|
3484
|
+
"npm:get-stream@6.0.1": {
|
|
3486
3485
|
"type": "npm",
|
|
3487
|
-
"name": "npm:get-stream",
|
|
3486
|
+
"name": "npm:get-stream@6.0.1",
|
|
3488
3487
|
"data": {
|
|
3489
3488
|
"version": "6.0.1",
|
|
3490
3489
|
"packageName": "get-stream",
|
|
@@ -3563,9 +3562,9 @@
|
|
|
3563
3562
|
"hash": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
|
|
3564
3563
|
}
|
|
3565
3564
|
},
|
|
3566
|
-
"npm:got": {
|
|
3565
|
+
"npm:got@12.6.1": {
|
|
3567
3566
|
"type": "npm",
|
|
3568
|
-
"name": "npm:got",
|
|
3567
|
+
"name": "npm:got@12.6.1",
|
|
3569
3568
|
"data": {
|
|
3570
3569
|
"version": "12.6.1",
|
|
3571
3570
|
"packageName": "got",
|
|
@@ -3734,9 +3733,9 @@
|
|
|
3734
3733
|
"hash": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ=="
|
|
3735
3734
|
}
|
|
3736
3735
|
},
|
|
3737
|
-
"npm:https-proxy-agent": {
|
|
3736
|
+
"npm:https-proxy-agent@5.0.1": {
|
|
3738
3737
|
"type": "npm",
|
|
3739
|
-
"name": "npm:https-proxy-agent",
|
|
3738
|
+
"name": "npm:https-proxy-agent@5.0.1",
|
|
3740
3739
|
"data": {
|
|
3741
3740
|
"version": "5.0.1",
|
|
3742
3741
|
"packageName": "https-proxy-agent",
|
|
@@ -3761,9 +3760,9 @@
|
|
|
3761
3760
|
"hash": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ=="
|
|
3762
3761
|
}
|
|
3763
3762
|
},
|
|
3764
|
-
"npm:iconv-lite": {
|
|
3763
|
+
"npm:iconv-lite@0.6.3": {
|
|
3765
3764
|
"type": "npm",
|
|
3766
|
-
"name": "npm:iconv-lite",
|
|
3765
|
+
"name": "npm:iconv-lite@0.6.3",
|
|
3767
3766
|
"data": {
|
|
3768
3767
|
"version": "0.6.3",
|
|
3769
3768
|
"packageName": "iconv-lite",
|
|
@@ -3869,9 +3868,9 @@
|
|
|
3869
3868
|
"hash": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ=="
|
|
3870
3869
|
}
|
|
3871
3870
|
},
|
|
3872
|
-
"npm:ini": {
|
|
3871
|
+
"npm:ini@1.3.8": {
|
|
3873
3872
|
"type": "npm",
|
|
3874
|
-
"name": "npm:ini",
|
|
3873
|
+
"name": "npm:ini@1.3.8",
|
|
3875
3874
|
"data": {
|
|
3876
3875
|
"version": "1.3.8",
|
|
3877
3876
|
"packageName": "ini",
|
|
@@ -4049,18 +4048,18 @@
|
|
|
4049
4048
|
"hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="
|
|
4050
4049
|
}
|
|
4051
4050
|
},
|
|
4052
|
-
"npm:is-plain-obj": {
|
|
4051
|
+
"npm:is-plain-obj@4.1.0": {
|
|
4053
4052
|
"type": "npm",
|
|
4054
|
-
"name": "npm:is-plain-obj",
|
|
4053
|
+
"name": "npm:is-plain-obj@4.1.0",
|
|
4055
4054
|
"data": {
|
|
4056
4055
|
"version": "4.1.0",
|
|
4057
4056
|
"packageName": "is-plain-obj",
|
|
4058
4057
|
"hash": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg=="
|
|
4059
4058
|
}
|
|
4060
4059
|
},
|
|
4061
|
-
"npm:is-stream": {
|
|
4060
|
+
"npm:is-stream@2.0.1": {
|
|
4062
4061
|
"type": "npm",
|
|
4063
|
-
"name": "npm:is-stream",
|
|
4062
|
+
"name": "npm:is-stream@2.0.1",
|
|
4064
4063
|
"data": {
|
|
4065
4064
|
"version": "2.0.1",
|
|
4066
4065
|
"packageName": "is-stream",
|
|
@@ -4094,9 +4093,9 @@
|
|
|
4094
4093
|
"hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="
|
|
4095
4094
|
}
|
|
4096
4095
|
},
|
|
4097
|
-
"npm:is-unicode-supported": {
|
|
4096
|
+
"npm:is-unicode-supported@2.1.0": {
|
|
4098
4097
|
"type": "npm",
|
|
4099
|
-
"name": "npm:is-unicode-supported",
|
|
4098
|
+
"name": "npm:is-unicode-supported@2.1.0",
|
|
4100
4099
|
"data": {
|
|
4101
4100
|
"version": "2.1.0",
|
|
4102
4101
|
"packageName": "is-unicode-supported",
|
|
@@ -4121,9 +4120,9 @@
|
|
|
4121
4120
|
"hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw=="
|
|
4122
4121
|
}
|
|
4123
4122
|
},
|
|
4124
|
-
"npm:is-wsl": {
|
|
4123
|
+
"npm:is-wsl@2.2.0": {
|
|
4125
4124
|
"type": "npm",
|
|
4126
|
-
"name": "npm:is-wsl",
|
|
4125
|
+
"name": "npm:is-wsl@2.2.0",
|
|
4127
4126
|
"data": {
|
|
4128
4127
|
"version": "2.2.0",
|
|
4129
4128
|
"packageName": "is-wsl",
|
|
@@ -4166,9 +4165,9 @@
|
|
|
4166
4165
|
"hash": "sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w=="
|
|
4167
4166
|
}
|
|
4168
4167
|
},
|
|
4169
|
-
"npm:isexe": {
|
|
4168
|
+
"npm:isexe@4.0.0": {
|
|
4170
4169
|
"type": "npm",
|
|
4171
|
-
"name": "npm:isexe",
|
|
4170
|
+
"name": "npm:isexe@4.0.0",
|
|
4172
4171
|
"data": {
|
|
4173
4172
|
"version": "4.0.0",
|
|
4174
4173
|
"packageName": "isexe",
|
|
@@ -4229,9 +4228,9 @@
|
|
|
4229
4228
|
"hash": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA=="
|
|
4230
4229
|
}
|
|
4231
4230
|
},
|
|
4232
|
-
"npm:jest-diff": {
|
|
4231
|
+
"npm:jest-diff@29.7.0": {
|
|
4233
4232
|
"type": "npm",
|
|
4234
|
-
"name": "npm:jest-diff",
|
|
4233
|
+
"name": "npm:jest-diff@29.7.0",
|
|
4235
4234
|
"data": {
|
|
4236
4235
|
"version": "29.7.0",
|
|
4237
4236
|
"packageName": "jest-diff",
|
|
@@ -4373,9 +4372,9 @@
|
|
|
4373
4372
|
"hash": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ=="
|
|
4374
4373
|
}
|
|
4375
4374
|
},
|
|
4376
|
-
"npm:json-buffer": {
|
|
4375
|
+
"npm:json-buffer@3.0.1": {
|
|
4377
4376
|
"type": "npm",
|
|
4378
|
-
"name": "npm:json-buffer",
|
|
4377
|
+
"name": "npm:json-buffer@3.0.1",
|
|
4379
4378
|
"data": {
|
|
4380
4379
|
"version": "3.0.1",
|
|
4381
4380
|
"packageName": "json-buffer",
|
|
@@ -4427,9 +4426,9 @@
|
|
|
4427
4426
|
"hash": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="
|
|
4428
4427
|
}
|
|
4429
4428
|
},
|
|
4430
|
-
"npm:keyv": {
|
|
4429
|
+
"npm:keyv@4.5.4": {
|
|
4431
4430
|
"type": "npm",
|
|
4432
|
-
"name": "npm:keyv",
|
|
4431
|
+
"name": "npm:keyv@4.5.4",
|
|
4433
4432
|
"data": {
|
|
4434
4433
|
"version": "4.5.4",
|
|
4435
4434
|
"packageName": "keyv",
|
|
@@ -4499,9 +4498,9 @@
|
|
|
4499
4498
|
"hash": "sha512-/H7aDL3//Gr0M1v8GGq6k0OTNty7nDVuU/o1cg6opYkfHRz1V3Nhydqz6aBzfXhUQx6iJRnxgRCPya+ZLA2vbg=="
|
|
4500
4499
|
}
|
|
4501
4500
|
},
|
|
4502
|
-
"npm:lines-and-columns": {
|
|
4501
|
+
"npm:lines-and-columns@2.0.3": {
|
|
4503
4502
|
"type": "npm",
|
|
4504
|
-
"name": "npm:lines-and-columns",
|
|
4503
|
+
"name": "npm:lines-and-columns@2.0.3",
|
|
4505
4504
|
"data": {
|
|
4506
4505
|
"version": "2.0.3",
|
|
4507
4506
|
"packageName": "lines-and-columns",
|
|
@@ -4544,9 +4543,9 @@
|
|
|
4544
4543
|
"hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="
|
|
4545
4544
|
}
|
|
4546
4545
|
},
|
|
4547
|
-
"npm:locate-path": {
|
|
4546
|
+
"npm:locate-path@6.0.0": {
|
|
4548
4547
|
"type": "npm",
|
|
4549
|
-
"name": "npm:locate-path",
|
|
4548
|
+
"name": "npm:locate-path@6.0.0",
|
|
4550
4549
|
"data": {
|
|
4551
4550
|
"version": "6.0.0",
|
|
4552
4551
|
"packageName": "locate-path",
|
|
@@ -4697,9 +4696,9 @@
|
|
|
4697
4696
|
"hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="
|
|
4698
4697
|
}
|
|
4699
4698
|
},
|
|
4700
|
-
"npm:lowercase-keys": {
|
|
4699
|
+
"npm:lowercase-keys@3.0.0": {
|
|
4701
4700
|
"type": "npm",
|
|
4702
|
-
"name": "npm:lowercase-keys",
|
|
4701
|
+
"name": "npm:lowercase-keys@3.0.0",
|
|
4703
4702
|
"data": {
|
|
4704
4703
|
"version": "3.0.0",
|
|
4705
4704
|
"packageName": "lowercase-keys",
|
|
@@ -4751,9 +4750,9 @@
|
|
|
4751
4750
|
"hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="
|
|
4752
4751
|
}
|
|
4753
4752
|
},
|
|
4754
|
-
"npm:make-dir": {
|
|
4753
|
+
"npm:make-dir@4.0.0": {
|
|
4755
4754
|
"type": "npm",
|
|
4756
|
-
"name": "npm:make-dir",
|
|
4755
|
+
"name": "npm:make-dir@4.0.0",
|
|
4757
4756
|
"data": {
|
|
4758
4757
|
"version": "4.0.0",
|
|
4759
4758
|
"packageName": "make-dir",
|
|
@@ -4841,9 +4840,9 @@
|
|
|
4841
4840
|
"hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="
|
|
4842
4841
|
}
|
|
4843
4842
|
},
|
|
4844
|
-
"npm:mimic-response": {
|
|
4843
|
+
"npm:mimic-response@4.0.0": {
|
|
4845
4844
|
"type": "npm",
|
|
4846
|
-
"name": "npm:mimic-response",
|
|
4845
|
+
"name": "npm:mimic-response@4.0.0",
|
|
4847
4846
|
"data": {
|
|
4848
4847
|
"version": "4.0.0",
|
|
4849
4848
|
"packageName": "mimic-response",
|
|
@@ -4967,9 +4966,9 @@
|
|
|
4967
4966
|
"hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
|
4968
4967
|
}
|
|
4969
4968
|
},
|
|
4970
|
-
"npm:ms": {
|
|
4969
|
+
"npm:ms@2.1.3": {
|
|
4971
4970
|
"type": "npm",
|
|
4972
|
-
"name": "npm:ms",
|
|
4971
|
+
"name": "npm:ms@2.1.3",
|
|
4973
4972
|
"data": {
|
|
4974
4973
|
"version": "2.1.3",
|
|
4975
4974
|
"packageName": "ms",
|
|
@@ -5003,9 +5002,9 @@
|
|
|
5003
5002
|
"hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ=="
|
|
5004
5003
|
}
|
|
5005
5004
|
},
|
|
5006
|
-
"npm:node-fetch": {
|
|
5005
|
+
"npm:node-fetch@2.7.0": {
|
|
5007
5006
|
"type": "npm",
|
|
5008
|
-
"name": "npm:node-fetch",
|
|
5007
|
+
"name": "npm:node-fetch@2.7.0",
|
|
5009
5008
|
"data": {
|
|
5010
5009
|
"version": "2.7.0",
|
|
5011
5010
|
"packageName": "node-fetch",
|
|
@@ -5048,9 +5047,9 @@
|
|
|
5048
5047
|
"hash": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g=="
|
|
5049
5048
|
}
|
|
5050
5049
|
},
|
|
5051
|
-
"npm:normalize-package-data": {
|
|
5050
|
+
"npm:normalize-package-data@7.0.1": {
|
|
5052
5051
|
"type": "npm",
|
|
5053
|
-
"name": "npm:normalize-package-data",
|
|
5052
|
+
"name": "npm:normalize-package-data@7.0.1",
|
|
5054
5053
|
"data": {
|
|
5055
5054
|
"version": "7.0.1",
|
|
5056
5055
|
"packageName": "normalize-package-data",
|
|
@@ -5075,18 +5074,18 @@
|
|
|
5075
5074
|
"hash": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="
|
|
5076
5075
|
}
|
|
5077
5076
|
},
|
|
5078
|
-
"npm:normalize-url": {
|
|
5077
|
+
"npm:normalize-url@8.1.1": {
|
|
5079
5078
|
"type": "npm",
|
|
5080
|
-
"name": "npm:normalize-url",
|
|
5079
|
+
"name": "npm:normalize-url@8.1.1",
|
|
5081
5080
|
"data": {
|
|
5082
5081
|
"version": "8.1.1",
|
|
5083
5082
|
"packageName": "normalize-url",
|
|
5084
5083
|
"hash": "sha512-JYc0DPlpGWB40kH5g07gGTrYuMqV653k3uBKY6uITPWds3M0ov3GaWGp9lbE3Bzngx8+XkfzgvASb9vk9JDFXQ=="
|
|
5085
5084
|
}
|
|
5086
5085
|
},
|
|
5087
|
-
"npm:npm-run-path": {
|
|
5086
|
+
"npm:npm-run-path@4.0.1": {
|
|
5088
5087
|
"type": "npm",
|
|
5089
|
-
"name": "npm:npm-run-path",
|
|
5088
|
+
"name": "npm:npm-run-path@4.0.1",
|
|
5090
5089
|
"data": {
|
|
5091
5090
|
"version": "4.0.1",
|
|
5092
5091
|
"packageName": "npm-run-path",
|
|
@@ -5156,9 +5155,9 @@
|
|
|
5156
5155
|
"hash": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg=="
|
|
5157
5156
|
}
|
|
5158
5157
|
},
|
|
5159
|
-
"npm:open": {
|
|
5158
|
+
"npm:open@8.4.2": {
|
|
5160
5159
|
"type": "npm",
|
|
5161
|
-
"name": "npm:open",
|
|
5160
|
+
"name": "npm:open@8.4.2",
|
|
5162
5161
|
"data": {
|
|
5163
5162
|
"version": "8.4.2",
|
|
5164
5163
|
"packageName": "open",
|
|
@@ -5183,9 +5182,9 @@
|
|
|
5183
5182
|
"hash": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="
|
|
5184
5183
|
}
|
|
5185
5184
|
},
|
|
5186
|
-
"npm:p-cancelable": {
|
|
5185
|
+
"npm:p-cancelable@3.0.0": {
|
|
5187
5186
|
"type": "npm",
|
|
5188
|
-
"name": "npm:p-cancelable",
|
|
5187
|
+
"name": "npm:p-cancelable@3.0.0",
|
|
5189
5188
|
"data": {
|
|
5190
5189
|
"version": "3.0.0",
|
|
5191
5190
|
"packageName": "p-cancelable",
|
|
@@ -5201,9 +5200,9 @@
|
|
|
5201
5200
|
"hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="
|
|
5202
5201
|
}
|
|
5203
5202
|
},
|
|
5204
|
-
"npm:p-limit": {
|
|
5203
|
+
"npm:p-limit@3.1.0": {
|
|
5205
5204
|
"type": "npm",
|
|
5206
|
-
"name": "npm:p-limit",
|
|
5205
|
+
"name": "npm:p-limit@3.1.0",
|
|
5207
5206
|
"data": {
|
|
5208
5207
|
"version": "3.1.0",
|
|
5209
5208
|
"packageName": "p-limit",
|
|
@@ -5228,9 +5227,9 @@
|
|
|
5228
5227
|
"hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="
|
|
5229
5228
|
}
|
|
5230
5229
|
},
|
|
5231
|
-
"npm:p-locate": {
|
|
5230
|
+
"npm:p-locate@5.0.0": {
|
|
5232
5231
|
"type": "npm",
|
|
5233
|
-
"name": "npm:p-locate",
|
|
5232
|
+
"name": "npm:p-locate@5.0.0",
|
|
5234
5233
|
"data": {
|
|
5235
5234
|
"version": "5.0.0",
|
|
5236
5235
|
"packageName": "p-locate",
|
|
@@ -5354,9 +5353,9 @@
|
|
|
5354
5353
|
"hash": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw=="
|
|
5355
5354
|
}
|
|
5356
5355
|
},
|
|
5357
|
-
"npm:path-exists": {
|
|
5356
|
+
"npm:path-exists@4.0.0": {
|
|
5358
5357
|
"type": "npm",
|
|
5359
|
-
"name": "npm:path-exists",
|
|
5358
|
+
"name": "npm:path-exists@4.0.0",
|
|
5360
5359
|
"data": {
|
|
5361
5360
|
"version": "4.0.0",
|
|
5362
5361
|
"packageName": "path-exists",
|
|
@@ -5390,9 +5389,9 @@
|
|
|
5390
5389
|
"hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
|
|
5391
5390
|
}
|
|
5392
5391
|
},
|
|
5393
|
-
"npm:path-key": {
|
|
5392
|
+
"npm:path-key@3.1.1": {
|
|
5394
5393
|
"type": "npm",
|
|
5395
|
-
"name": "npm:path-key",
|
|
5394
|
+
"name": "npm:path-key@3.1.1",
|
|
5396
5395
|
"data": {
|
|
5397
5396
|
"version": "3.1.1",
|
|
5398
5397
|
"packageName": "path-key",
|
|
@@ -5417,9 +5416,9 @@
|
|
|
5417
5416
|
"hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="
|
|
5418
5417
|
}
|
|
5419
5418
|
},
|
|
5420
|
-
"npm:pathe": {
|
|
5419
|
+
"npm:pathe@1.1.2": {
|
|
5421
5420
|
"type": "npm",
|
|
5422
|
-
"name": "npm:pathe",
|
|
5421
|
+
"name": "npm:pathe@1.1.2",
|
|
5423
5422
|
"data": {
|
|
5424
5423
|
"version": "1.1.2",
|
|
5425
5424
|
"packageName": "pathe",
|
|
@@ -5480,9 +5479,9 @@
|
|
|
5480
5479
|
"hash": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA=="
|
|
5481
5480
|
}
|
|
5482
5481
|
},
|
|
5483
|
-
"npm:pretty-format": {
|
|
5482
|
+
"npm:pretty-format@29.7.0": {
|
|
5484
5483
|
"type": "npm",
|
|
5485
|
-
"name": "npm:pretty-format",
|
|
5484
|
+
"name": "npm:pretty-format@29.7.0",
|
|
5486
5485
|
"data": {
|
|
5487
5486
|
"version": "29.7.0",
|
|
5488
5487
|
"packageName": "pretty-format",
|
|
@@ -5534,9 +5533,9 @@
|
|
|
5534
5533
|
"hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
|
|
5535
5534
|
}
|
|
5536
5535
|
},
|
|
5537
|
-
"npm:proxy-agent": {
|
|
5536
|
+
"npm:proxy-agent@6.3.1": {
|
|
5538
5537
|
"type": "npm",
|
|
5539
|
-
"name": "npm:proxy-agent",
|
|
5538
|
+
"name": "npm:proxy-agent@6.3.1",
|
|
5540
5539
|
"data": {
|
|
5541
5540
|
"version": "6.3.1",
|
|
5542
5541
|
"packageName": "proxy-agent",
|
|
@@ -5561,9 +5560,9 @@
|
|
|
5561
5560
|
"hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
|
|
5562
5561
|
}
|
|
5563
5562
|
},
|
|
5564
|
-
"npm:proxy-from-env": {
|
|
5563
|
+
"npm:proxy-from-env@2.1.0": {
|
|
5565
5564
|
"type": "npm",
|
|
5566
|
-
"name": "npm:proxy-from-env",
|
|
5565
|
+
"name": "npm:proxy-from-env@2.1.0",
|
|
5567
5566
|
"data": {
|
|
5568
5567
|
"version": "2.1.0",
|
|
5569
5568
|
"packageName": "proxy-from-env",
|
|
@@ -5651,9 +5650,9 @@
|
|
|
5651
5650
|
"hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="
|
|
5652
5651
|
}
|
|
5653
5652
|
},
|
|
5654
|
-
"npm:react-is": {
|
|
5653
|
+
"npm:react-is@18.3.1": {
|
|
5655
5654
|
"type": "npm",
|
|
5656
|
-
"name": "npm:react-is",
|
|
5655
|
+
"name": "npm:react-is@18.3.1",
|
|
5657
5656
|
"data": {
|
|
5658
5657
|
"version": "18.3.1",
|
|
5659
5658
|
"packageName": "react-is",
|
|
@@ -5723,9 +5722,9 @@
|
|
|
5723
5722
|
"hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="
|
|
5724
5723
|
}
|
|
5725
5724
|
},
|
|
5726
|
-
"npm:readable-stream": {
|
|
5725
|
+
"npm:readable-stream@4.7.0": {
|
|
5727
5726
|
"type": "npm",
|
|
5728
|
-
"name": "npm:readable-stream",
|
|
5727
|
+
"name": "npm:readable-stream@4.7.0",
|
|
5729
5728
|
"data": {
|
|
5730
5729
|
"version": "4.7.0",
|
|
5731
5730
|
"packageName": "readable-stream",
|
|
@@ -5750,9 +5749,9 @@
|
|
|
5750
5749
|
"hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="
|
|
5751
5750
|
}
|
|
5752
5751
|
},
|
|
5753
|
-
"npm:readdirp": {
|
|
5752
|
+
"npm:readdirp@4.1.2": {
|
|
5754
5753
|
"type": "npm",
|
|
5755
|
-
"name": "npm:readdirp",
|
|
5754
|
+
"name": "npm:readdirp@4.1.2",
|
|
5756
5755
|
"data": {
|
|
5757
5756
|
"version": "4.1.2",
|
|
5758
5757
|
"packageName": "readdirp",
|
|
@@ -5822,9 +5821,9 @@
|
|
|
5822
5821
|
"hash": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ=="
|
|
5823
5822
|
}
|
|
5824
5823
|
},
|
|
5825
|
-
"npm:responselike": {
|
|
5824
|
+
"npm:responselike@3.0.0": {
|
|
5826
5825
|
"type": "npm",
|
|
5827
|
-
"name": "npm:responselike",
|
|
5826
|
+
"name": "npm:responselike@3.0.0",
|
|
5828
5827
|
"data": {
|
|
5829
5828
|
"version": "3.0.0",
|
|
5830
5829
|
"packageName": "responselike",
|
|
@@ -5912,9 +5911,9 @@
|
|
|
5912
5911
|
"hash": "sha512-4R309+gWflJktzPXBQCobbWEHlzC4aK3a+Ov3tz2Ib2aBxiwd11phkdIBH1l0EO22x24CJMUQkpKFumRriCSRg=="
|
|
5913
5912
|
}
|
|
5914
5913
|
},
|
|
5915
|
-
"npm:safaridriver": {
|
|
5914
|
+
"npm:safaridriver@1.0.1": {
|
|
5916
5915
|
"type": "npm",
|
|
5917
|
-
"name": "npm:safaridriver",
|
|
5916
|
+
"name": "npm:safaridriver@1.0.1",
|
|
5918
5917
|
"data": {
|
|
5919
5918
|
"version": "1.0.1",
|
|
5920
5919
|
"packageName": "safaridriver",
|
|
@@ -5930,9 +5929,9 @@
|
|
|
5930
5929
|
"hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
|
5931
5930
|
}
|
|
5932
5931
|
},
|
|
5933
|
-
"npm:safe-buffer": {
|
|
5932
|
+
"npm:safe-buffer@5.2.1": {
|
|
5934
5933
|
"type": "npm",
|
|
5935
|
-
"name": "npm:safe-buffer",
|
|
5934
|
+
"name": "npm:safe-buffer@5.2.1",
|
|
5936
5935
|
"data": {
|
|
5937
5936
|
"version": "5.2.1",
|
|
5938
5937
|
"packageName": "safe-buffer",
|
|
@@ -5984,9 +5983,9 @@
|
|
|
5984
5983
|
"hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
5985
5984
|
}
|
|
5986
5985
|
},
|
|
5987
|
-
"npm:semver": {
|
|
5986
|
+
"npm:semver@7.8.5": {
|
|
5988
5987
|
"type": "npm",
|
|
5989
|
-
"name": "npm:semver",
|
|
5988
|
+
"name": "npm:semver@7.8.5",
|
|
5990
5989
|
"data": {
|
|
5991
5990
|
"version": "7.8.5",
|
|
5992
5991
|
"packageName": "semver",
|
|
@@ -6002,9 +6001,9 @@
|
|
|
6002
6001
|
"hash": "sha512-2G2y++21dhj2R7iHAdd0FIzjGwuKZld+7Pl/bTU6YIkrC2ZMbVUjm+luj6A6V34Rv9XfKJDKpTWu9W4Gse1D9g=="
|
|
6003
6002
|
}
|
|
6004
6003
|
},
|
|
6005
|
-
"npm:serialize-error": {
|
|
6004
|
+
"npm:serialize-error@12.0.0": {
|
|
6006
6005
|
"type": "npm",
|
|
6007
|
-
"name": "npm:serialize-error",
|
|
6006
|
+
"name": "npm:serialize-error@12.0.0",
|
|
6008
6007
|
"data": {
|
|
6009
6008
|
"version": "12.0.0",
|
|
6010
6009
|
"packageName": "serialize-error",
|
|
@@ -6047,9 +6046,9 @@
|
|
|
6047
6046
|
"hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
|
|
6048
6047
|
}
|
|
6049
6048
|
},
|
|
6050
|
-
"npm:signal-exit": {
|
|
6049
|
+
"npm:signal-exit@3.0.7": {
|
|
6051
6050
|
"type": "npm",
|
|
6052
|
-
"name": "npm:signal-exit",
|
|
6051
|
+
"name": "npm:signal-exit@3.0.7",
|
|
6053
6052
|
"data": {
|
|
6054
6053
|
"version": "3.0.7",
|
|
6055
6054
|
"packageName": "signal-exit",
|
|
@@ -6218,9 +6217,9 @@
|
|
|
6218
6217
|
"hash": "sha512-zEzXb0s5Cds7tqMH6rhZ05lcJydCWiQPEwiNngVqzsxCc962vLY4Uw+mW7od8kDH258k2Uz/JrOkdIAAhSh9VA=="
|
|
6219
6218
|
}
|
|
6220
6219
|
},
|
|
6221
|
-
"npm:string-width": {
|
|
6220
|
+
"npm:string-width@4.2.3": {
|
|
6222
6221
|
"type": "npm",
|
|
6223
|
-
"name": "npm:string-width",
|
|
6222
|
+
"name": "npm:string-width@4.2.3",
|
|
6224
6223
|
"data": {
|
|
6225
6224
|
"version": "4.2.3",
|
|
6226
6225
|
"packageName": "string-width",
|
|
@@ -6245,9 +6244,9 @@
|
|
|
6245
6244
|
"hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="
|
|
6246
6245
|
}
|
|
6247
6246
|
},
|
|
6248
|
-
"npm:string_decoder": {
|
|
6247
|
+
"npm:string_decoder@1.1.1": {
|
|
6249
6248
|
"type": "npm",
|
|
6250
|
-
"name": "npm:string_decoder",
|
|
6249
|
+
"name": "npm:string_decoder@1.1.1",
|
|
6251
6250
|
"data": {
|
|
6252
6251
|
"version": "1.1.1",
|
|
6253
6252
|
"packageName": "string_decoder",
|
|
@@ -6272,9 +6271,9 @@
|
|
|
6272
6271
|
"hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="
|
|
6273
6272
|
}
|
|
6274
6273
|
},
|
|
6275
|
-
"npm:strip-ansi": {
|
|
6274
|
+
"npm:strip-ansi@7.2.0": {
|
|
6276
6275
|
"type": "npm",
|
|
6277
|
-
"name": "npm:strip-ansi",
|
|
6276
|
+
"name": "npm:strip-ansi@7.2.0",
|
|
6278
6277
|
"data": {
|
|
6279
6278
|
"version": "7.2.0",
|
|
6280
6279
|
"packageName": "strip-ansi",
|
|
@@ -6317,9 +6316,9 @@
|
|
|
6317
6316
|
"hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="
|
|
6318
6317
|
}
|
|
6319
6318
|
},
|
|
6320
|
-
"npm:strip-json-comments": {
|
|
6319
|
+
"npm:strip-json-comments@3.1.1": {
|
|
6321
6320
|
"type": "npm",
|
|
6322
|
-
"name": "npm:strip-json-comments",
|
|
6321
|
+
"name": "npm:strip-json-comments@3.1.1",
|
|
6323
6322
|
"data": {
|
|
6324
6323
|
"version": "3.1.1",
|
|
6325
6324
|
"packageName": "strip-json-comments",
|
|
@@ -6353,9 +6352,9 @@
|
|
|
6353
6352
|
"hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA=="
|
|
6354
6353
|
}
|
|
6355
6354
|
},
|
|
6356
|
-
"npm:supports-color": {
|
|
6355
|
+
"npm:supports-color@7.2.0": {
|
|
6357
6356
|
"type": "npm",
|
|
6358
|
-
"name": "npm:supports-color",
|
|
6357
|
+
"name": "npm:supports-color@7.2.0",
|
|
6359
6358
|
"data": {
|
|
6360
6359
|
"version": "7.2.0",
|
|
6361
6360
|
"packageName": "supports-color",
|
|
@@ -6371,9 +6370,9 @@
|
|
|
6371
6370
|
"hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="
|
|
6372
6371
|
}
|
|
6373
6372
|
},
|
|
6374
|
-
"npm:tar-fs": {
|
|
6373
|
+
"npm:tar-fs@3.0.4": {
|
|
6375
6374
|
"type": "npm",
|
|
6376
|
-
"name": "npm:tar-fs",
|
|
6375
|
+
"name": "npm:tar-fs@3.0.4",
|
|
6377
6376
|
"data": {
|
|
6378
6377
|
"version": "3.0.4",
|
|
6379
6378
|
"packageName": "tar-fs",
|
|
@@ -6389,9 +6388,9 @@
|
|
|
6389
6388
|
"hash": "sha512-/hU4AXnIdZu+Gvl1pk0oI5f5HxWsCJRtY2aFaJdk9VvyL48DWU6iU5WAIPG+wIi1YvWA6eTJvIviP/tMAZZNwQ=="
|
|
6390
6389
|
}
|
|
6391
6390
|
},
|
|
6392
|
-
"npm:tar-stream": {
|
|
6391
|
+
"npm:tar-stream@2.2.0": {
|
|
6393
6392
|
"type": "npm",
|
|
6394
|
-
"name": "npm:tar-stream",
|
|
6393
|
+
"name": "npm:tar-stream@2.2.0",
|
|
6395
6394
|
"data": {
|
|
6396
6395
|
"version": "2.2.0",
|
|
6397
6396
|
"packageName": "tar-stream",
|
|
@@ -6470,9 +6469,9 @@
|
|
|
6470
6469
|
"hash": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA=="
|
|
6471
6470
|
}
|
|
6472
6471
|
},
|
|
6473
|
-
"npm:tinyrainbow": {
|
|
6472
|
+
"npm:tinyrainbow@1.2.0": {
|
|
6474
6473
|
"type": "npm",
|
|
6475
|
-
"name": "npm:tinyrainbow",
|
|
6474
|
+
"name": "npm:tinyrainbow@1.2.0",
|
|
6476
6475
|
"data": {
|
|
6477
6476
|
"version": "1.2.0",
|
|
6478
6477
|
"packageName": "tinyrainbow",
|
|
@@ -6596,9 +6595,9 @@
|
|
|
6596
6595
|
"hash": "sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw=="
|
|
6597
6596
|
}
|
|
6598
6597
|
},
|
|
6599
|
-
"npm:type-fest": {
|
|
6598
|
+
"npm:type-fest@4.41.0": {
|
|
6600
6599
|
"type": "npm",
|
|
6601
|
-
"name": "npm:type-fest",
|
|
6600
|
+
"name": "npm:type-fest@4.41.0",
|
|
6602
6601
|
"data": {
|
|
6603
6602
|
"version": "4.41.0",
|
|
6604
6603
|
"packageName": "type-fest",
|
|
@@ -6722,9 +6721,9 @@
|
|
|
6722
6721
|
"hash": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg=="
|
|
6723
6722
|
}
|
|
6724
6723
|
},
|
|
6725
|
-
"npm:urlpattern-polyfill": {
|
|
6724
|
+
"npm:urlpattern-polyfill@10.1.0": {
|
|
6726
6725
|
"type": "npm",
|
|
6727
|
-
"name": "npm:urlpattern-polyfill",
|
|
6726
|
+
"name": "npm:urlpattern-polyfill@10.1.0",
|
|
6728
6727
|
"data": {
|
|
6729
6728
|
"version": "10.1.0",
|
|
6730
6729
|
"packageName": "urlpattern-polyfill",
|
|
@@ -6884,9 +6883,9 @@
|
|
|
6884
6883
|
"hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="
|
|
6885
6884
|
}
|
|
6886
6885
|
},
|
|
6887
|
-
"npm:which": {
|
|
6886
|
+
"npm:which@6.0.1": {
|
|
6888
6887
|
"type": "npm",
|
|
6889
|
-
"name": "npm:which",
|
|
6888
|
+
"name": "npm:which@6.0.1",
|
|
6890
6889
|
"data": {
|
|
6891
6890
|
"version": "6.0.1",
|
|
6892
6891
|
"packageName": "which",
|
|
@@ -6920,9 +6919,9 @@
|
|
|
6920
6919
|
"hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="
|
|
6921
6920
|
}
|
|
6922
6921
|
},
|
|
6923
|
-
"npm:wrap-ansi": {
|
|
6922
|
+
"npm:wrap-ansi@7.0.0": {
|
|
6924
6923
|
"type": "npm",
|
|
6925
|
-
"name": "npm:wrap-ansi",
|
|
6924
|
+
"name": "npm:wrap-ansi@7.0.0",
|
|
6926
6925
|
"data": {
|
|
6927
6926
|
"version": "7.0.0",
|
|
6928
6927
|
"packageName": "wrap-ansi",
|
|
@@ -7037,9 +7036,9 @@
|
|
|
7037
7036
|
"hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
|
|
7038
7037
|
}
|
|
7039
7038
|
},
|
|
7040
|
-
"npm:yargs-parser": {
|
|
7039
|
+
"npm:yargs-parser@21.1.1": {
|
|
7041
7040
|
"type": "npm",
|
|
7042
|
-
"name": "npm:yargs-parser",
|
|
7041
|
+
"name": "npm:yargs-parser@21.1.1",
|
|
7043
7042
|
"data": {
|
|
7044
7043
|
"version": "21.1.1",
|
|
7045
7044
|
"packageName": "yargs-parser",
|
|
@@ -7073,9 +7072,9 @@
|
|
|
7073
7072
|
"hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="
|
|
7074
7073
|
}
|
|
7075
7074
|
},
|
|
7076
|
-
"npm:yargs": {
|
|
7075
|
+
"npm:yargs@17.7.3": {
|
|
7077
7076
|
"type": "npm",
|
|
7078
|
-
"name": "npm:yargs",
|
|
7077
|
+
"name": "npm:yargs@17.7.3",
|
|
7079
7078
|
"data": {
|
|
7080
7079
|
"version": "17.7.3",
|
|
7081
7080
|
"packageName": "yargs",
|
|
@@ -7091,9 +7090,9 @@
|
|
|
7091
7090
|
"hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g=="
|
|
7092
7091
|
}
|
|
7093
7092
|
},
|
|
7094
|
-
"npm:yocto-queue": {
|
|
7093
|
+
"npm:yocto-queue@0.1.0": {
|
|
7095
7094
|
"type": "npm",
|
|
7096
|
-
"name": "npm:yocto-queue",
|
|
7095
|
+
"name": "npm:yocto-queue@0.1.0",
|
|
7097
7096
|
"data": {
|
|
7098
7097
|
"version": "0.1.0",
|
|
7099
7098
|
"packageName": "yocto-queue",
|
|
@@ -7216,7 +7215,7 @@
|
|
|
7216
7215
|
},
|
|
7217
7216
|
{
|
|
7218
7217
|
"source": "npm:@babel/core",
|
|
7219
|
-
"target": "npm:debug",
|
|
7218
|
+
"target": "npm:debug@4.4.3",
|
|
7220
7219
|
"type": "static"
|
|
7221
7220
|
},
|
|
7222
7221
|
{
|
|
@@ -7392,7 +7391,7 @@
|
|
|
7392
7391
|
},
|
|
7393
7392
|
{
|
|
7394
7393
|
"source": "npm:@babel/traverse",
|
|
7395
|
-
"target": "npm:debug",
|
|
7394
|
+
"target": "npm:debug@4.4.3",
|
|
7396
7395
|
"type": "static"
|
|
7397
7396
|
}
|
|
7398
7397
|
],
|
|
@@ -7805,7 +7804,7 @@
|
|
|
7805
7804
|
},
|
|
7806
7805
|
{
|
|
7807
7806
|
"source": "npm:@isaacs/cliui",
|
|
7808
|
-
"target": "npm:strip-ansi",
|
|
7807
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
7809
7808
|
"type": "static"
|
|
7810
7809
|
},
|
|
7811
7810
|
{
|
|
@@ -7870,10 +7869,10 @@
|
|
|
7870
7869
|
"type": "static"
|
|
7871
7870
|
}
|
|
7872
7871
|
],
|
|
7873
|
-
"npm:@jest/schemas": [
|
|
7872
|
+
"npm:@jest/schemas@29.6.3": [
|
|
7874
7873
|
{
|
|
7875
|
-
"source": "npm:@jest/schemas",
|
|
7876
|
-
"target": "npm:@sinclair/typebox",
|
|
7874
|
+
"source": "npm:@jest/schemas@29.6.3",
|
|
7875
|
+
"target": "npm:@sinclair/typebox@0.27.12",
|
|
7877
7876
|
"type": "static"
|
|
7878
7877
|
}
|
|
7879
7878
|
],
|
|
@@ -8011,12 +8010,12 @@
|
|
|
8011
8010
|
},
|
|
8012
8011
|
{
|
|
8013
8012
|
"source": "npm:@puppeteer/browsers@1.9.1",
|
|
8014
|
-
"target": "npm:proxy-agent",
|
|
8013
|
+
"target": "npm:proxy-agent@6.3.1",
|
|
8015
8014
|
"type": "static"
|
|
8016
8015
|
},
|
|
8017
8016
|
{
|
|
8018
8017
|
"source": "npm:@puppeteer/browsers@1.9.1",
|
|
8019
|
-
"target": "npm:tar-fs",
|
|
8018
|
+
"target": "npm:tar-fs@3.0.4",
|
|
8020
8019
|
"type": "static"
|
|
8021
8020
|
},
|
|
8022
8021
|
{
|
|
@@ -8030,40 +8029,40 @@
|
|
|
8030
8029
|
"type": "static"
|
|
8031
8030
|
}
|
|
8032
8031
|
],
|
|
8033
|
-
"npm:@puppeteer/browsers": [
|
|
8032
|
+
"npm:@puppeteer/browsers@2.13.2": [
|
|
8034
8033
|
{
|
|
8035
|
-
"source": "npm:@puppeteer/browsers",
|
|
8036
|
-
"target": "npm:debug",
|
|
8034
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
8035
|
+
"target": "npm:debug@4.4.3",
|
|
8037
8036
|
"type": "static"
|
|
8038
8037
|
},
|
|
8039
8038
|
{
|
|
8040
|
-
"source": "npm:@puppeteer/browsers",
|
|
8039
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
8041
8040
|
"target": "npm:extract-zip",
|
|
8042
8041
|
"type": "static"
|
|
8043
8042
|
},
|
|
8044
8043
|
{
|
|
8045
|
-
"source": "npm:@puppeteer/browsers",
|
|
8044
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
8046
8045
|
"target": "npm:progress",
|
|
8047
8046
|
"type": "static"
|
|
8048
8047
|
},
|
|
8049
8048
|
{
|
|
8050
|
-
"source": "npm:@puppeteer/browsers",
|
|
8049
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
8051
8050
|
"target": "npm:proxy-agent@6.5.0",
|
|
8052
8051
|
"type": "static"
|
|
8053
8052
|
},
|
|
8054
8053
|
{
|
|
8055
|
-
"source": "npm:@puppeteer/browsers",
|
|
8056
|
-
"target": "npm:semver",
|
|
8054
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
8055
|
+
"target": "npm:semver@7.8.5",
|
|
8057
8056
|
"type": "static"
|
|
8058
8057
|
},
|
|
8059
8058
|
{
|
|
8060
|
-
"source": "npm:@puppeteer/browsers",
|
|
8059
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
8061
8060
|
"target": "npm:tar-fs@3.1.3",
|
|
8062
8061
|
"type": "static"
|
|
8063
8062
|
},
|
|
8064
8063
|
{
|
|
8065
|
-
"source": "npm:@puppeteer/browsers",
|
|
8066
|
-
"target": "npm:yargs",
|
|
8064
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
8065
|
+
"target": "npm:yargs@17.7.3",
|
|
8067
8066
|
"type": "static"
|
|
8068
8067
|
}
|
|
8069
8068
|
],
|
|
@@ -8074,10 +8073,10 @@
|
|
|
8074
8073
|
"type": "static"
|
|
8075
8074
|
}
|
|
8076
8075
|
],
|
|
8077
|
-
"npm:@szmarczak/http-timer": [
|
|
8076
|
+
"npm:@szmarczak/http-timer@5.0.1": [
|
|
8078
8077
|
{
|
|
8079
|
-
"source": "npm:@szmarczak/http-timer",
|
|
8080
|
-
"target": "npm:defer-to-connect",
|
|
8078
|
+
"source": "npm:@szmarczak/http-timer@5.0.1",
|
|
8079
|
+
"target": "npm:defer-to-connect@2.0.1",
|
|
8081
8080
|
"type": "static"
|
|
8082
8081
|
}
|
|
8083
8082
|
],
|
|
@@ -8151,10 +8150,10 @@
|
|
|
8151
8150
|
"type": "static"
|
|
8152
8151
|
}
|
|
8153
8152
|
],
|
|
8154
|
-
"npm:@vitest/pretty-format": [
|
|
8153
|
+
"npm:@vitest/pretty-format@2.1.9": [
|
|
8155
8154
|
{
|
|
8156
|
-
"source": "npm:@vitest/pretty-format",
|
|
8157
|
-
"target": "npm:tinyrainbow",
|
|
8155
|
+
"source": "npm:@vitest/pretty-format@2.1.9",
|
|
8156
|
+
"target": "npm:tinyrainbow@1.2.0",
|
|
8158
8157
|
"type": "static"
|
|
8159
8158
|
}
|
|
8160
8159
|
],
|
|
@@ -8165,20 +8164,20 @@
|
|
|
8165
8164
|
"type": "static"
|
|
8166
8165
|
}
|
|
8167
8166
|
],
|
|
8168
|
-
"npm:@vitest/snapshot": [
|
|
8167
|
+
"npm:@vitest/snapshot@2.1.9": [
|
|
8169
8168
|
{
|
|
8170
|
-
"source": "npm:@vitest/snapshot",
|
|
8171
|
-
"target": "npm:@vitest/pretty-format",
|
|
8169
|
+
"source": "npm:@vitest/snapshot@2.1.9",
|
|
8170
|
+
"target": "npm:@vitest/pretty-format@2.1.9",
|
|
8172
8171
|
"type": "static"
|
|
8173
8172
|
},
|
|
8174
8173
|
{
|
|
8175
|
-
"source": "npm:@vitest/snapshot",
|
|
8174
|
+
"source": "npm:@vitest/snapshot@2.1.9",
|
|
8176
8175
|
"target": "npm:magic-string",
|
|
8177
8176
|
"type": "static"
|
|
8178
8177
|
},
|
|
8179
8178
|
{
|
|
8180
|
-
"source": "npm:@vitest/snapshot",
|
|
8181
|
-
"target": "npm:pathe",
|
|
8179
|
+
"source": "npm:@vitest/snapshot@2.1.9",
|
|
8180
|
+
"target": "npm:pathe@1.1.2",
|
|
8182
8181
|
"type": "static"
|
|
8183
8182
|
}
|
|
8184
8183
|
],
|
|
@@ -8224,7 +8223,7 @@
|
|
|
8224
8223
|
"npm:@wdio/cli": [
|
|
8225
8224
|
{
|
|
8226
8225
|
"source": "npm:@wdio/cli",
|
|
8227
|
-
"target": "npm:@vitest/snapshot",
|
|
8226
|
+
"target": "npm:@vitest/snapshot@2.1.9",
|
|
8228
8227
|
"type": "static"
|
|
8229
8228
|
},
|
|
8230
8229
|
{
|
|
@@ -8239,12 +8238,12 @@
|
|
|
8239
8238
|
},
|
|
8240
8239
|
{
|
|
8241
8240
|
"source": "npm:@wdio/cli",
|
|
8242
|
-
"target": "npm:@wdio/logger",
|
|
8241
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8243
8242
|
"type": "static"
|
|
8244
8243
|
},
|
|
8245
8244
|
{
|
|
8246
8245
|
"source": "npm:@wdio/cli",
|
|
8247
|
-
"target": "npm:@wdio/protocols",
|
|
8246
|
+
"target": "npm:@wdio/protocols@9.31.5",
|
|
8248
8247
|
"type": "static"
|
|
8249
8248
|
},
|
|
8250
8249
|
{
|
|
@@ -8264,12 +8263,12 @@
|
|
|
8264
8263
|
},
|
|
8265
8264
|
{
|
|
8266
8265
|
"source": "npm:@wdio/cli",
|
|
8267
|
-
"target": "npm:chalk",
|
|
8266
|
+
"target": "npm:chalk@5.6.2",
|
|
8268
8267
|
"type": "static"
|
|
8269
8268
|
},
|
|
8270
8269
|
{
|
|
8271
8270
|
"source": "npm:@wdio/cli",
|
|
8272
|
-
"target": "npm:chokidar",
|
|
8271
|
+
"target": "npm:chokidar@4.0.3",
|
|
8273
8272
|
"type": "static"
|
|
8274
8273
|
},
|
|
8275
8274
|
{
|
|
@@ -8319,7 +8318,7 @@
|
|
|
8319
8318
|
},
|
|
8320
8319
|
{
|
|
8321
8320
|
"source": "npm:@wdio/cli",
|
|
8322
|
-
"target": "npm:yargs",
|
|
8321
|
+
"target": "npm:yargs@17.7.3",
|
|
8323
8322
|
"type": "static"
|
|
8324
8323
|
}
|
|
8325
8324
|
],
|
|
@@ -8341,7 +8340,7 @@
|
|
|
8341
8340
|
},
|
|
8342
8341
|
{
|
|
8343
8342
|
"source": "npm:@wdio/config@8.46.0",
|
|
8344
|
-
"target": "npm:decamelize",
|
|
8343
|
+
"target": "npm:decamelize@6.0.1",
|
|
8345
8344
|
"type": "static"
|
|
8346
8345
|
},
|
|
8347
8346
|
{
|
|
@@ -8363,7 +8362,7 @@
|
|
|
8363
8362
|
"npm:@wdio/config@9.31.6": [
|
|
8364
8363
|
{
|
|
8365
8364
|
"source": "npm:@wdio/config@9.31.6",
|
|
8366
|
-
"target": "npm:@wdio/logger",
|
|
8365
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8367
8366
|
"type": "static"
|
|
8368
8367
|
},
|
|
8369
8368
|
{
|
|
@@ -8430,7 +8429,7 @@
|
|
|
8430
8429
|
},
|
|
8431
8430
|
{
|
|
8432
8431
|
"source": "npm:@wdio/devtools-service",
|
|
8433
|
-
"target": "npm:devtools-protocol",
|
|
8432
|
+
"target": "npm:devtools-protocol@0.0.1400418",
|
|
8434
8433
|
"type": "static"
|
|
8435
8434
|
},
|
|
8436
8435
|
{
|
|
@@ -8477,7 +8476,7 @@
|
|
|
8477
8476
|
},
|
|
8478
8477
|
{
|
|
8479
8478
|
"source": "npm:@wdio/dot-reporter",
|
|
8480
|
-
"target": "npm:chalk",
|
|
8479
|
+
"target": "npm:chalk@5.6.2",
|
|
8481
8480
|
"type": "static"
|
|
8482
8481
|
}
|
|
8483
8482
|
],
|
|
@@ -8501,12 +8500,12 @@
|
|
|
8501
8500
|
},
|
|
8502
8501
|
{
|
|
8503
8502
|
"source": "npm:@wdio/local-runner",
|
|
8504
|
-
"target": "npm:@wdio/logger",
|
|
8503
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8505
8504
|
"type": "static"
|
|
8506
8505
|
},
|
|
8507
8506
|
{
|
|
8508
8507
|
"source": "npm:@wdio/local-runner",
|
|
8509
|
-
"target": "npm:@wdio/repl",
|
|
8508
|
+
"target": "npm:@wdio/repl@9.16.2",
|
|
8510
8509
|
"type": "static"
|
|
8511
8510
|
},
|
|
8512
8511
|
{
|
|
@@ -8548,7 +8547,7 @@
|
|
|
8548
8547
|
"npm:@wdio/logger@8.38.0": [
|
|
8549
8548
|
{
|
|
8550
8549
|
"source": "npm:@wdio/logger@8.38.0",
|
|
8551
|
-
"target": "npm:chalk",
|
|
8550
|
+
"target": "npm:chalk@5.6.2",
|
|
8552
8551
|
"type": "static"
|
|
8553
8552
|
},
|
|
8554
8553
|
{
|
|
@@ -8563,34 +8562,34 @@
|
|
|
8563
8562
|
},
|
|
8564
8563
|
{
|
|
8565
8564
|
"source": "npm:@wdio/logger@8.38.0",
|
|
8566
|
-
"target": "npm:strip-ansi",
|
|
8565
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
8567
8566
|
"type": "static"
|
|
8568
8567
|
}
|
|
8569
8568
|
],
|
|
8570
|
-
"npm:@wdio/logger": [
|
|
8569
|
+
"npm:@wdio/logger@9.29.1": [
|
|
8571
8570
|
{
|
|
8572
|
-
"source": "npm:@wdio/logger",
|
|
8573
|
-
"target": "npm:chalk",
|
|
8571
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8572
|
+
"target": "npm:chalk@5.6.2",
|
|
8574
8573
|
"type": "static"
|
|
8575
8574
|
},
|
|
8576
8575
|
{
|
|
8577
|
-
"source": "npm:@wdio/logger",
|
|
8576
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8578
8577
|
"target": "npm:loglevel",
|
|
8579
8578
|
"type": "static"
|
|
8580
8579
|
},
|
|
8581
8580
|
{
|
|
8582
|
-
"source": "npm:@wdio/logger",
|
|
8581
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8583
8582
|
"target": "npm:loglevel-plugin-prefix",
|
|
8584
8583
|
"type": "static"
|
|
8585
8584
|
},
|
|
8586
8585
|
{
|
|
8587
|
-
"source": "npm:@wdio/logger",
|
|
8586
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8588
8587
|
"target": "npm:safe-regex2",
|
|
8589
8588
|
"type": "static"
|
|
8590
8589
|
},
|
|
8591
8590
|
{
|
|
8592
|
-
"source": "npm:@wdio/logger",
|
|
8593
|
-
"target": "npm:strip-ansi",
|
|
8591
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8592
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
8594
8593
|
"type": "static"
|
|
8595
8594
|
}
|
|
8596
8595
|
],
|
|
@@ -8607,7 +8606,7 @@
|
|
|
8607
8606
|
},
|
|
8608
8607
|
{
|
|
8609
8608
|
"source": "npm:@wdio/mocha-framework",
|
|
8610
|
-
"target": "npm:@wdio/logger",
|
|
8609
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8611
8610
|
"type": "static"
|
|
8612
8611
|
},
|
|
8613
8612
|
{
|
|
@@ -8633,9 +8632,9 @@
|
|
|
8633
8632
|
"type": "static"
|
|
8634
8633
|
}
|
|
8635
8634
|
],
|
|
8636
|
-
"npm:@wdio/repl": [
|
|
8635
|
+
"npm:@wdio/repl@9.16.2": [
|
|
8637
8636
|
{
|
|
8638
|
-
"source": "npm:@wdio/repl",
|
|
8637
|
+
"source": "npm:@wdio/repl@9.16.2",
|
|
8639
8638
|
"target": "npm:@types/node",
|
|
8640
8639
|
"type": "static"
|
|
8641
8640
|
}
|
|
@@ -8648,7 +8647,7 @@
|
|
|
8648
8647
|
},
|
|
8649
8648
|
{
|
|
8650
8649
|
"source": "npm:@wdio/reporter",
|
|
8651
|
-
"target": "npm:@wdio/logger",
|
|
8650
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8652
8651
|
"type": "static"
|
|
8653
8652
|
},
|
|
8654
8653
|
{
|
|
@@ -8690,7 +8689,7 @@
|
|
|
8690
8689
|
},
|
|
8691
8690
|
{
|
|
8692
8691
|
"source": "npm:@wdio/runner",
|
|
8693
|
-
"target": "npm:@wdio/logger",
|
|
8692
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8694
8693
|
"type": "static"
|
|
8695
8694
|
},
|
|
8696
8695
|
{
|
|
@@ -8737,7 +8736,7 @@
|
|
|
8737
8736
|
},
|
|
8738
8737
|
{
|
|
8739
8738
|
"source": "npm:@wdio/spec-reporter",
|
|
8740
|
-
"target": "npm:chalk",
|
|
8739
|
+
"target": "npm:chalk@5.6.2",
|
|
8741
8740
|
"type": "static"
|
|
8742
8741
|
},
|
|
8743
8742
|
{
|
|
@@ -8783,7 +8782,7 @@
|
|
|
8783
8782
|
},
|
|
8784
8783
|
{
|
|
8785
8784
|
"source": "npm:@wdio/utils@8.46.0",
|
|
8786
|
-
"target": "npm:decamelize",
|
|
8785
|
+
"target": "npm:decamelize@6.0.1",
|
|
8787
8786
|
"type": "static"
|
|
8788
8787
|
},
|
|
8789
8788
|
{
|
|
@@ -8835,12 +8834,12 @@
|
|
|
8835
8834
|
"npm:@wdio/utils@9.31.6": [
|
|
8836
8835
|
{
|
|
8837
8836
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8838
|
-
"target": "npm:@puppeteer/browsers",
|
|
8837
|
+
"target": "npm:@puppeteer/browsers@2.13.2",
|
|
8839
8838
|
"type": "static"
|
|
8840
8839
|
},
|
|
8841
8840
|
{
|
|
8842
8841
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8843
|
-
"target": "npm:@wdio/logger",
|
|
8842
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8844
8843
|
"type": "static"
|
|
8845
8844
|
},
|
|
8846
8845
|
{
|
|
@@ -8850,7 +8849,7 @@
|
|
|
8850
8849
|
},
|
|
8851
8850
|
{
|
|
8852
8851
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8853
|
-
"target": "npm:decamelize",
|
|
8852
|
+
"target": "npm:decamelize@6.0.1",
|
|
8854
8853
|
"type": "static"
|
|
8855
8854
|
},
|
|
8856
8855
|
{
|
|
@@ -8860,12 +8859,12 @@
|
|
|
8860
8859
|
},
|
|
8861
8860
|
{
|
|
8862
8861
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8863
|
-
"target": "npm:edgedriver",
|
|
8862
|
+
"target": "npm:edgedriver@6.3.0",
|
|
8864
8863
|
"type": "static"
|
|
8865
8864
|
},
|
|
8866
8865
|
{
|
|
8867
8866
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8868
|
-
"target": "npm:geckodriver",
|
|
8867
|
+
"target": "npm:geckodriver@6.1.1",
|
|
8869
8868
|
"type": "static"
|
|
8870
8869
|
},
|
|
8871
8870
|
{
|
|
@@ -8890,7 +8889,7 @@
|
|
|
8890
8889
|
},
|
|
8891
8890
|
{
|
|
8892
8891
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8893
|
-
"target": "npm:safaridriver",
|
|
8892
|
+
"target": "npm:safaridriver@1.0.1",
|
|
8894
8893
|
"type": "static"
|
|
8895
8894
|
},
|
|
8896
8895
|
{
|
|
@@ -8907,7 +8906,7 @@
|
|
|
8907
8906
|
"npm:@wdio/xvfb": [
|
|
8908
8907
|
{
|
|
8909
8908
|
"source": "npm:@wdio/xvfb",
|
|
8910
|
-
"target": "npm:@wdio/logger",
|
|
8909
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8911
8910
|
"type": "static"
|
|
8912
8911
|
}
|
|
8913
8912
|
],
|
|
@@ -8926,7 +8925,7 @@
|
|
|
8926
8925
|
"npm:@zkochan/js-yaml": [
|
|
8927
8926
|
{
|
|
8928
8927
|
"source": "npm:@zkochan/js-yaml",
|
|
8929
|
-
"target": "npm:argparse",
|
|
8928
|
+
"target": "npm:argparse@2.0.1",
|
|
8930
8929
|
"type": "static"
|
|
8931
8930
|
}
|
|
8932
8931
|
],
|
|
@@ -8937,23 +8936,23 @@
|
|
|
8937
8936
|
"type": "static"
|
|
8938
8937
|
}
|
|
8939
8938
|
],
|
|
8940
|
-
"npm:agent-base": [
|
|
8939
|
+
"npm:agent-base@6.0.2": [
|
|
8941
8940
|
{
|
|
8942
|
-
"source": "npm:agent-base",
|
|
8943
|
-
"target": "npm:debug",
|
|
8941
|
+
"source": "npm:agent-base@6.0.2",
|
|
8942
|
+
"target": "npm:debug@4.4.3",
|
|
8944
8943
|
"type": "static"
|
|
8945
8944
|
}
|
|
8946
8945
|
],
|
|
8947
8946
|
"npm:ansi-align": [
|
|
8948
8947
|
{
|
|
8949
8948
|
"source": "npm:ansi-align",
|
|
8950
|
-
"target": "npm:string-width",
|
|
8949
|
+
"target": "npm:string-width@4.2.3",
|
|
8951
8950
|
"type": "static"
|
|
8952
8951
|
}
|
|
8953
8952
|
],
|
|
8954
|
-
"npm:ansi-styles": [
|
|
8953
|
+
"npm:ansi-styles@4.3.0": [
|
|
8955
8954
|
{
|
|
8956
|
-
"source": "npm:ansi-styles",
|
|
8955
|
+
"source": "npm:ansi-styles@4.3.0",
|
|
8957
8956
|
"target": "npm:color-convert",
|
|
8958
8957
|
"type": "static"
|
|
8959
8958
|
}
|
|
@@ -8983,7 +8982,7 @@
|
|
|
8983
8982
|
},
|
|
8984
8983
|
{
|
|
8985
8984
|
"source": "npm:archiver-utils",
|
|
8986
|
-
"target": "npm:is-stream",
|
|
8985
|
+
"target": "npm:is-stream@2.0.1",
|
|
8987
8986
|
"type": "static"
|
|
8988
8987
|
},
|
|
8989
8988
|
{
|
|
@@ -9003,7 +9002,7 @@
|
|
|
9003
9002
|
},
|
|
9004
9003
|
{
|
|
9005
9004
|
"source": "npm:archiver-utils",
|
|
9006
|
-
"target": "npm:readable-stream",
|
|
9005
|
+
"target": "npm:readable-stream@4.7.0",
|
|
9007
9006
|
"type": "static"
|
|
9008
9007
|
}
|
|
9009
9008
|
],
|
|
@@ -9020,12 +9019,12 @@
|
|
|
9020
9019
|
},
|
|
9021
9020
|
{
|
|
9022
9021
|
"source": "npm:archiver",
|
|
9023
|
-
"target": "npm:buffer-crc32",
|
|
9022
|
+
"target": "npm:buffer-crc32@1.0.0",
|
|
9024
9023
|
"type": "static"
|
|
9025
9024
|
},
|
|
9026
9025
|
{
|
|
9027
9026
|
"source": "npm:archiver",
|
|
9028
|
-
"target": "npm:readable-stream",
|
|
9027
|
+
"target": "npm:readable-stream@4.7.0",
|
|
9029
9028
|
"type": "static"
|
|
9030
9029
|
},
|
|
9031
9030
|
{
|
|
@@ -9071,12 +9070,12 @@
|
|
|
9071
9070
|
},
|
|
9072
9071
|
{
|
|
9073
9072
|
"source": "npm:axios",
|
|
9074
|
-
"target": "npm:https-proxy-agent",
|
|
9073
|
+
"target": "npm:https-proxy-agent@5.0.1",
|
|
9075
9074
|
"type": "static"
|
|
9076
9075
|
},
|
|
9077
9076
|
{
|
|
9078
9077
|
"source": "npm:axios",
|
|
9079
|
-
"target": "npm:proxy-from-env",
|
|
9078
|
+
"target": "npm:proxy-from-env@2.1.0",
|
|
9080
9079
|
"type": "static"
|
|
9081
9080
|
}
|
|
9082
9081
|
],
|
|
@@ -9178,7 +9177,7 @@
|
|
|
9178
9177
|
"npm:bl": [
|
|
9179
9178
|
{
|
|
9180
9179
|
"source": "npm:bl",
|
|
9181
|
-
"target": "npm:buffer",
|
|
9180
|
+
"target": "npm:buffer@5.7.1",
|
|
9182
9181
|
"type": "static"
|
|
9183
9182
|
},
|
|
9184
9183
|
{
|
|
@@ -9215,7 +9214,7 @@
|
|
|
9215
9214
|
},
|
|
9216
9215
|
{
|
|
9217
9216
|
"source": "npm:boxen",
|
|
9218
|
-
"target": "npm:string-width",
|
|
9217
|
+
"target": "npm:string-width@4.2.3",
|
|
9219
9218
|
"type": "static"
|
|
9220
9219
|
},
|
|
9221
9220
|
{
|
|
@@ -9287,14 +9286,14 @@
|
|
|
9287
9286
|
"type": "static"
|
|
9288
9287
|
}
|
|
9289
9288
|
],
|
|
9290
|
-
"npm:buffer": [
|
|
9289
|
+
"npm:buffer@5.7.1": [
|
|
9291
9290
|
{
|
|
9292
|
-
"source": "npm:buffer",
|
|
9291
|
+
"source": "npm:buffer@5.7.1",
|
|
9293
9292
|
"target": "npm:base64-js",
|
|
9294
9293
|
"type": "static"
|
|
9295
9294
|
},
|
|
9296
9295
|
{
|
|
9297
|
-
"source": "npm:buffer",
|
|
9296
|
+
"source": "npm:buffer@5.7.1",
|
|
9298
9297
|
"target": "npm:ieee754",
|
|
9299
9298
|
"type": "static"
|
|
9300
9299
|
}
|
|
@@ -9311,40 +9310,40 @@
|
|
|
9311
9310
|
"type": "static"
|
|
9312
9311
|
}
|
|
9313
9312
|
],
|
|
9314
|
-
"npm:cacheable-request": [
|
|
9313
|
+
"npm:cacheable-request@10.2.14": [
|
|
9315
9314
|
{
|
|
9316
|
-
"source": "npm:cacheable-request",
|
|
9315
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
9317
9316
|
"target": "npm:@types/http-cache-semantics",
|
|
9318
9317
|
"type": "static"
|
|
9319
9318
|
},
|
|
9320
9319
|
{
|
|
9321
|
-
"source": "npm:cacheable-request",
|
|
9322
|
-
"target": "npm:get-stream",
|
|
9320
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
9321
|
+
"target": "npm:get-stream@6.0.1",
|
|
9323
9322
|
"type": "static"
|
|
9324
9323
|
},
|
|
9325
9324
|
{
|
|
9326
|
-
"source": "npm:cacheable-request",
|
|
9325
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
9327
9326
|
"target": "npm:http-cache-semantics",
|
|
9328
9327
|
"type": "static"
|
|
9329
9328
|
},
|
|
9330
9329
|
{
|
|
9331
|
-
"source": "npm:cacheable-request",
|
|
9332
|
-
"target": "npm:keyv",
|
|
9330
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
9331
|
+
"target": "npm:keyv@4.5.4",
|
|
9333
9332
|
"type": "static"
|
|
9334
9333
|
},
|
|
9335
9334
|
{
|
|
9336
|
-
"source": "npm:cacheable-request",
|
|
9337
|
-
"target": "npm:mimic-response",
|
|
9335
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
9336
|
+
"target": "npm:mimic-response@4.0.0",
|
|
9338
9337
|
"type": "static"
|
|
9339
9338
|
},
|
|
9340
9339
|
{
|
|
9341
|
-
"source": "npm:cacheable-request",
|
|
9342
|
-
"target": "npm:normalize-url",
|
|
9340
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
9341
|
+
"target": "npm:normalize-url@8.1.1",
|
|
9343
9342
|
"type": "static"
|
|
9344
9343
|
},
|
|
9345
9344
|
{
|
|
9346
|
-
"source": "npm:cacheable-request",
|
|
9347
|
-
"target": "npm:responselike",
|
|
9345
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
9346
|
+
"target": "npm:responselike@3.0.0",
|
|
9348
9347
|
"type": "static"
|
|
9349
9348
|
}
|
|
9350
9349
|
],
|
|
@@ -9407,24 +9406,24 @@
|
|
|
9407
9406
|
"npm:chalk@3.0.0": [
|
|
9408
9407
|
{
|
|
9409
9408
|
"source": "npm:chalk@3.0.0",
|
|
9410
|
-
"target": "npm:ansi-styles",
|
|
9409
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
9411
9410
|
"type": "static"
|
|
9412
9411
|
},
|
|
9413
9412
|
{
|
|
9414
9413
|
"source": "npm:chalk@3.0.0",
|
|
9415
|
-
"target": "npm:supports-color",
|
|
9414
|
+
"target": "npm:supports-color@7.2.0",
|
|
9416
9415
|
"type": "static"
|
|
9417
9416
|
}
|
|
9418
9417
|
],
|
|
9419
9418
|
"npm:chalk@4.1.2": [
|
|
9420
9419
|
{
|
|
9421
9420
|
"source": "npm:chalk@4.1.2",
|
|
9422
|
-
"target": "npm:ansi-styles",
|
|
9421
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
9423
9422
|
"type": "static"
|
|
9424
9423
|
},
|
|
9425
9424
|
{
|
|
9426
9425
|
"source": "npm:chalk@4.1.2",
|
|
9427
|
-
"target": "npm:supports-color",
|
|
9426
|
+
"target": "npm:supports-color@7.2.0",
|
|
9428
9427
|
"type": "static"
|
|
9429
9428
|
}
|
|
9430
9429
|
],
|
|
@@ -9559,10 +9558,10 @@
|
|
|
9559
9558
|
"type": "static"
|
|
9560
9559
|
}
|
|
9561
9560
|
],
|
|
9562
|
-
"npm:chokidar": [
|
|
9561
|
+
"npm:chokidar@4.0.3": [
|
|
9563
9562
|
{
|
|
9564
|
-
"source": "npm:chokidar",
|
|
9565
|
-
"target": "npm:readdirp",
|
|
9563
|
+
"source": "npm:chokidar@4.0.3",
|
|
9564
|
+
"target": "npm:readdirp@4.1.2",
|
|
9566
9565
|
"type": "static"
|
|
9567
9566
|
}
|
|
9568
9567
|
],
|
|
@@ -9579,7 +9578,7 @@
|
|
|
9579
9578
|
},
|
|
9580
9579
|
{
|
|
9581
9580
|
"source": "npm:chrome-launcher",
|
|
9582
|
-
"target": "npm:is-wsl",
|
|
9581
|
+
"target": "npm:is-wsl@2.2.0",
|
|
9583
9582
|
"type": "static"
|
|
9584
9583
|
},
|
|
9585
9584
|
{
|
|
@@ -9615,7 +9614,7 @@
|
|
|
9615
9614
|
"npm:cliui@7.0.4": [
|
|
9616
9615
|
{
|
|
9617
9616
|
"source": "npm:cliui@7.0.4",
|
|
9618
|
-
"target": "npm:string-width",
|
|
9617
|
+
"target": "npm:string-width@4.2.3",
|
|
9619
9618
|
"type": "static"
|
|
9620
9619
|
},
|
|
9621
9620
|
{
|
|
@@ -9625,24 +9624,24 @@
|
|
|
9625
9624
|
},
|
|
9626
9625
|
{
|
|
9627
9626
|
"source": "npm:cliui@7.0.4",
|
|
9628
|
-
"target": "npm:wrap-ansi",
|
|
9627
|
+
"target": "npm:wrap-ansi@7.0.0",
|
|
9629
9628
|
"type": "static"
|
|
9630
9629
|
}
|
|
9631
9630
|
],
|
|
9632
|
-
"npm:cliui": [
|
|
9631
|
+
"npm:cliui@8.0.1": [
|
|
9633
9632
|
{
|
|
9634
|
-
"source": "npm:cliui",
|
|
9635
|
-
"target": "npm:string-width",
|
|
9633
|
+
"source": "npm:cliui@8.0.1",
|
|
9634
|
+
"target": "npm:string-width@4.2.3",
|
|
9636
9635
|
"type": "static"
|
|
9637
9636
|
},
|
|
9638
9637
|
{
|
|
9639
|
-
"source": "npm:cliui",
|
|
9638
|
+
"source": "npm:cliui@8.0.1",
|
|
9640
9639
|
"target": "npm:strip-ansi@6.0.1",
|
|
9641
9640
|
"type": "static"
|
|
9642
9641
|
},
|
|
9643
9642
|
{
|
|
9644
|
-
"source": "npm:cliui",
|
|
9645
|
-
"target": "npm:wrap-ansi",
|
|
9643
|
+
"source": "npm:cliui@8.0.1",
|
|
9644
|
+
"target": "npm:wrap-ansi@7.0.0",
|
|
9646
9645
|
"type": "static"
|
|
9647
9646
|
}
|
|
9648
9647
|
],
|
|
@@ -9680,7 +9679,7 @@
|
|
|
9680
9679
|
},
|
|
9681
9680
|
{
|
|
9682
9681
|
"source": "npm:compress-commons",
|
|
9683
|
-
"target": "npm:is-stream",
|
|
9682
|
+
"target": "npm:is-stream@2.0.1",
|
|
9684
9683
|
"type": "static"
|
|
9685
9684
|
},
|
|
9686
9685
|
{
|
|
@@ -9690,7 +9689,7 @@
|
|
|
9690
9689
|
},
|
|
9691
9690
|
{
|
|
9692
9691
|
"source": "npm:compress-commons",
|
|
9693
|
-
"target": "npm:readable-stream",
|
|
9692
|
+
"target": "npm:readable-stream@4.7.0",
|
|
9694
9693
|
"type": "static"
|
|
9695
9694
|
}
|
|
9696
9695
|
],
|
|
@@ -9734,14 +9733,14 @@
|
|
|
9734
9733
|
},
|
|
9735
9734
|
{
|
|
9736
9735
|
"source": "npm:crc32-stream",
|
|
9737
|
-
"target": "npm:readable-stream",
|
|
9736
|
+
"target": "npm:readable-stream@4.7.0",
|
|
9738
9737
|
"type": "static"
|
|
9739
9738
|
}
|
|
9740
9739
|
],
|
|
9741
9740
|
"npm:create-wdio": [
|
|
9742
9741
|
{
|
|
9743
9742
|
"source": "npm:create-wdio",
|
|
9744
|
-
"target": "npm:chalk",
|
|
9743
|
+
"target": "npm:chalk@5.6.2",
|
|
9745
9744
|
"type": "static"
|
|
9746
9745
|
},
|
|
9747
9746
|
{
|
|
@@ -9776,7 +9775,7 @@
|
|
|
9776
9775
|
},
|
|
9777
9776
|
{
|
|
9778
9777
|
"source": "npm:create-wdio",
|
|
9779
|
-
"target": "npm:normalize-package-data",
|
|
9778
|
+
"target": "npm:normalize-package-data@7.0.1",
|
|
9780
9779
|
"type": "static"
|
|
9781
9780
|
},
|
|
9782
9781
|
{
|
|
@@ -9791,31 +9790,31 @@
|
|
|
9791
9790
|
},
|
|
9792
9791
|
{
|
|
9793
9792
|
"source": "npm:create-wdio",
|
|
9794
|
-
"target": "npm:semver",
|
|
9793
|
+
"target": "npm:semver@7.8.5",
|
|
9795
9794
|
"type": "static"
|
|
9796
9795
|
},
|
|
9797
9796
|
{
|
|
9798
9797
|
"source": "npm:create-wdio",
|
|
9799
|
-
"target": "npm:type-fest",
|
|
9798
|
+
"target": "npm:type-fest@4.41.0",
|
|
9800
9799
|
"type": "static"
|
|
9801
9800
|
},
|
|
9802
9801
|
{
|
|
9803
9802
|
"source": "npm:create-wdio",
|
|
9804
|
-
"target": "npm:yargs",
|
|
9803
|
+
"target": "npm:yargs@17.7.3",
|
|
9805
9804
|
"type": "static"
|
|
9806
9805
|
}
|
|
9807
9806
|
],
|
|
9808
9807
|
"npm:cross-fetch": [
|
|
9809
9808
|
{
|
|
9810
9809
|
"source": "npm:cross-fetch",
|
|
9811
|
-
"target": "npm:node-fetch",
|
|
9810
|
+
"target": "npm:node-fetch@2.7.0",
|
|
9812
9811
|
"type": "static"
|
|
9813
9812
|
}
|
|
9814
9813
|
],
|
|
9815
9814
|
"npm:cross-spawn": [
|
|
9816
9815
|
{
|
|
9817
9816
|
"source": "npm:cross-spawn",
|
|
9818
|
-
"target": "npm:path-key",
|
|
9817
|
+
"target": "npm:path-key@3.1.1",
|
|
9819
9818
|
"type": "static"
|
|
9820
9819
|
},
|
|
9821
9820
|
{
|
|
@@ -9887,14 +9886,14 @@
|
|
|
9887
9886
|
"type": "static"
|
|
9888
9887
|
}
|
|
9889
9888
|
],
|
|
9890
|
-
"npm:debug": [
|
|
9889
|
+
"npm:debug@4.4.3": [
|
|
9891
9890
|
{
|
|
9892
|
-
"source": "npm:debug",
|
|
9893
|
-
"target": "npm:ms",
|
|
9891
|
+
"source": "npm:debug@4.4.3",
|
|
9892
|
+
"target": "npm:ms@2.1.3",
|
|
9894
9893
|
"type": "static"
|
|
9895
9894
|
},
|
|
9896
9895
|
{
|
|
9897
|
-
"source": "npm:debug",
|
|
9896
|
+
"source": "npm:debug@4.4.3",
|
|
9898
9897
|
"target": "npm:supports-color@8.1.1",
|
|
9899
9898
|
"type": "static"
|
|
9900
9899
|
}
|
|
@@ -9906,9 +9905,9 @@
|
|
|
9906
9905
|
"type": "static"
|
|
9907
9906
|
}
|
|
9908
9907
|
],
|
|
9909
|
-
"npm:decompress-response": [
|
|
9908
|
+
"npm:decompress-response@6.0.0": [
|
|
9910
9909
|
{
|
|
9911
|
-
"source": "npm:decompress-response",
|
|
9910
|
+
"source": "npm:decompress-response@6.0.0",
|
|
9912
9911
|
"target": "npm:mimic-response@3.1.0",
|
|
9913
9912
|
"type": "static"
|
|
9914
9913
|
}
|
|
@@ -10019,7 +10018,7 @@
|
|
|
10019
10018
|
"npm:easy-table": [
|
|
10020
10019
|
{
|
|
10021
10020
|
"source": "npm:easy-table",
|
|
10022
|
-
"target": "npm:ansi-regex",
|
|
10021
|
+
"target": "npm:ansi-regex@5.0.1",
|
|
10023
10022
|
"type": "static"
|
|
10024
10023
|
},
|
|
10025
10024
|
{
|
|
@@ -10053,7 +10052,7 @@
|
|
|
10053
10052
|
},
|
|
10054
10053
|
{
|
|
10055
10054
|
"source": "npm:edgedriver@5.6.1",
|
|
10056
|
-
"target": "npm:decamelize",
|
|
10055
|
+
"target": "npm:decamelize@6.0.1",
|
|
10057
10056
|
"type": "static"
|
|
10058
10057
|
},
|
|
10059
10058
|
{
|
|
@@ -10077,45 +10076,45 @@
|
|
|
10077
10076
|
"type": "static"
|
|
10078
10077
|
}
|
|
10079
10078
|
],
|
|
10080
|
-
"npm:edgedriver": [
|
|
10079
|
+
"npm:edgedriver@6.3.0": [
|
|
10081
10080
|
{
|
|
10082
|
-
"source": "npm:edgedriver",
|
|
10083
|
-
"target": "npm:@wdio/logger",
|
|
10081
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10082
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
10084
10083
|
"type": "static"
|
|
10085
10084
|
},
|
|
10086
10085
|
{
|
|
10087
|
-
"source": "npm:edgedriver",
|
|
10086
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10088
10087
|
"target": "npm:@zip.js/zip.js",
|
|
10089
10088
|
"type": "static"
|
|
10090
10089
|
},
|
|
10091
10090
|
{
|
|
10092
|
-
"source": "npm:edgedriver",
|
|
10093
|
-
"target": "npm:decamelize",
|
|
10091
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10092
|
+
"target": "npm:decamelize@6.0.1",
|
|
10094
10093
|
"type": "static"
|
|
10095
10094
|
},
|
|
10096
10095
|
{
|
|
10097
|
-
"source": "npm:edgedriver",
|
|
10096
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10098
10097
|
"target": "npm:edge-paths",
|
|
10099
10098
|
"type": "static"
|
|
10100
10099
|
},
|
|
10101
10100
|
{
|
|
10102
|
-
"source": "npm:edgedriver",
|
|
10101
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10103
10102
|
"target": "npm:fast-xml-parser@5.11.1",
|
|
10104
10103
|
"type": "static"
|
|
10105
10104
|
},
|
|
10106
10105
|
{
|
|
10107
|
-
"source": "npm:edgedriver",
|
|
10106
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10108
10107
|
"target": "npm:http-proxy-agent",
|
|
10109
10108
|
"type": "static"
|
|
10110
10109
|
},
|
|
10111
10110
|
{
|
|
10112
|
-
"source": "npm:edgedriver",
|
|
10111
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10113
10112
|
"target": "npm:https-proxy-agent@7.0.6",
|
|
10114
10113
|
"type": "static"
|
|
10115
10114
|
},
|
|
10116
10115
|
{
|
|
10117
|
-
"source": "npm:edgedriver",
|
|
10118
|
-
"target": "npm:which",
|
|
10116
|
+
"source": "npm:edgedriver@6.3.0",
|
|
10117
|
+
"target": "npm:which@6.0.1",
|
|
10119
10118
|
"type": "static"
|
|
10120
10119
|
}
|
|
10121
10120
|
],
|
|
@@ -10129,7 +10128,7 @@
|
|
|
10129
10128
|
"npm:encoding-sniffer": [
|
|
10130
10129
|
{
|
|
10131
10130
|
"source": "npm:encoding-sniffer",
|
|
10132
|
-
"target": "npm:iconv-lite",
|
|
10131
|
+
"target": "npm:iconv-lite@0.6.3",
|
|
10133
10132
|
"type": "static"
|
|
10134
10133
|
},
|
|
10135
10134
|
{
|
|
@@ -10145,9 +10144,9 @@
|
|
|
10145
10144
|
"type": "static"
|
|
10146
10145
|
}
|
|
10147
10146
|
],
|
|
10148
|
-
"npm:enquirer": [
|
|
10147
|
+
"npm:enquirer@2.3.6": [
|
|
10149
10148
|
{
|
|
10150
|
-
"source": "npm:enquirer",
|
|
10149
|
+
"source": "npm:enquirer@2.3.6",
|
|
10151
10150
|
"target": "npm:ansi-colors",
|
|
10152
10151
|
"type": "static"
|
|
10153
10152
|
}
|
|
@@ -10389,7 +10388,7 @@
|
|
|
10389
10388
|
},
|
|
10390
10389
|
{
|
|
10391
10390
|
"source": "npm:execa",
|
|
10392
|
-
"target": "npm:is-plain-obj",
|
|
10391
|
+
"target": "npm:is-plain-obj@4.1.0",
|
|
10393
10392
|
"type": "static"
|
|
10394
10393
|
},
|
|
10395
10394
|
{
|
|
@@ -10436,7 +10435,7 @@
|
|
|
10436
10435
|
},
|
|
10437
10436
|
{
|
|
10438
10437
|
"source": "npm:expect-webdriverio",
|
|
10439
|
-
"target": "npm:@wdio/logger",
|
|
10438
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
10440
10439
|
"type": "static"
|
|
10441
10440
|
},
|
|
10442
10441
|
{
|
|
@@ -10495,7 +10494,7 @@
|
|
|
10495
10494
|
"npm:extract-zip": [
|
|
10496
10495
|
{
|
|
10497
10496
|
"source": "npm:extract-zip",
|
|
10498
|
-
"target": "npm:debug",
|
|
10497
|
+
"target": "npm:debug@4.4.3",
|
|
10499
10498
|
"type": "static"
|
|
10500
10499
|
},
|
|
10501
10500
|
{
|
|
@@ -10584,17 +10583,17 @@
|
|
|
10584
10583
|
"type": "static"
|
|
10585
10584
|
}
|
|
10586
10585
|
],
|
|
10587
|
-
"npm:figures": [
|
|
10586
|
+
"npm:figures@3.2.0": [
|
|
10588
10587
|
{
|
|
10589
|
-
"source": "npm:figures",
|
|
10590
|
-
"target": "npm:escape-string-regexp",
|
|
10588
|
+
"source": "npm:figures@3.2.0",
|
|
10589
|
+
"target": "npm:escape-string-regexp@1.0.5",
|
|
10591
10590
|
"type": "static"
|
|
10592
10591
|
}
|
|
10593
10592
|
],
|
|
10594
10593
|
"npm:figures@6.1.0": [
|
|
10595
10594
|
{
|
|
10596
10595
|
"source": "npm:figures@6.1.0",
|
|
10597
|
-
"target": "npm:is-unicode-supported",
|
|
10596
|
+
"target": "npm:is-unicode-supported@2.1.0",
|
|
10598
10597
|
"type": "static"
|
|
10599
10598
|
}
|
|
10600
10599
|
],
|
|
@@ -10620,19 +10619,19 @@
|
|
|
10620
10619
|
},
|
|
10621
10620
|
{
|
|
10622
10621
|
"source": "npm:find-up@4.1.0",
|
|
10623
|
-
"target": "npm:path-exists",
|
|
10622
|
+
"target": "npm:path-exists@4.0.0",
|
|
10624
10623
|
"type": "static"
|
|
10625
10624
|
}
|
|
10626
10625
|
],
|
|
10627
|
-
"npm:find-up": [
|
|
10626
|
+
"npm:find-up@5.0.0": [
|
|
10628
10627
|
{
|
|
10629
|
-
"source": "npm:find-up",
|
|
10630
|
-
"target": "npm:locate-path",
|
|
10628
|
+
"source": "npm:find-up@5.0.0",
|
|
10629
|
+
"target": "npm:locate-path@6.0.0",
|
|
10631
10630
|
"type": "static"
|
|
10632
10631
|
},
|
|
10633
10632
|
{
|
|
10634
|
-
"source": "npm:find-up",
|
|
10635
|
-
"target": "npm:path-exists",
|
|
10633
|
+
"source": "npm:find-up@5.0.0",
|
|
10634
|
+
"target": "npm:path-exists@4.0.0",
|
|
10636
10635
|
"type": "static"
|
|
10637
10636
|
}
|
|
10638
10637
|
],
|
|
@@ -10651,7 +10650,7 @@
|
|
|
10651
10650
|
"npm:follow-redirects": [
|
|
10652
10651
|
{
|
|
10653
10652
|
"source": "npm:follow-redirects",
|
|
10654
|
-
"target": "npm:debug",
|
|
10653
|
+
"target": "npm:debug@4.4.3",
|
|
10655
10654
|
"type": "static"
|
|
10656
10655
|
}
|
|
10657
10656
|
],
|
|
@@ -10738,7 +10737,7 @@
|
|
|
10738
10737
|
},
|
|
10739
10738
|
{
|
|
10740
10739
|
"source": "npm:geckodriver@4.2.1",
|
|
10741
|
-
"target": "npm:decamelize",
|
|
10740
|
+
"target": "npm:decamelize@6.0.1",
|
|
10742
10741
|
"type": "static"
|
|
10743
10742
|
},
|
|
10744
10743
|
{
|
|
@@ -10772,34 +10771,34 @@
|
|
|
10772
10771
|
"type": "static"
|
|
10773
10772
|
}
|
|
10774
10773
|
],
|
|
10775
|
-
"npm:geckodriver": [
|
|
10774
|
+
"npm:geckodriver@6.1.1": [
|
|
10776
10775
|
{
|
|
10777
|
-
"source": "npm:geckodriver",
|
|
10778
|
-
"target": "npm:@wdio/logger",
|
|
10776
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10777
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
10779
10778
|
"type": "static"
|
|
10780
10779
|
},
|
|
10781
10780
|
{
|
|
10782
|
-
"source": "npm:geckodriver",
|
|
10781
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10783
10782
|
"target": "npm:@zip.js/zip.js",
|
|
10784
10783
|
"type": "static"
|
|
10785
10784
|
},
|
|
10786
10785
|
{
|
|
10787
|
-
"source": "npm:geckodriver",
|
|
10788
|
-
"target": "npm:decamelize",
|
|
10786
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10787
|
+
"target": "npm:decamelize@6.0.1",
|
|
10789
10788
|
"type": "static"
|
|
10790
10789
|
},
|
|
10791
10790
|
{
|
|
10792
|
-
"source": "npm:geckodriver",
|
|
10791
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10793
10792
|
"target": "npm:http-proxy-agent",
|
|
10794
10793
|
"type": "static"
|
|
10795
10794
|
},
|
|
10796
10795
|
{
|
|
10797
|
-
"source": "npm:geckodriver",
|
|
10796
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10798
10797
|
"target": "npm:https-proxy-agent@7.0.6",
|
|
10799
10798
|
"type": "static"
|
|
10800
10799
|
},
|
|
10801
10800
|
{
|
|
10802
|
-
"source": "npm:geckodriver",
|
|
10801
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10803
10802
|
"target": "npm:modern-tar",
|
|
10804
10803
|
"type": "static"
|
|
10805
10804
|
}
|
|
@@ -10907,7 +10906,7 @@
|
|
|
10907
10906
|
},
|
|
10908
10907
|
{
|
|
10909
10908
|
"source": "npm:get-uri",
|
|
10910
|
-
"target": "npm:debug",
|
|
10909
|
+
"target": "npm:debug@4.4.3",
|
|
10911
10910
|
"type": "static"
|
|
10912
10911
|
}
|
|
10913
10912
|
],
|
|
@@ -11016,60 +11015,60 @@
|
|
|
11016
11015
|
"type": "static"
|
|
11017
11016
|
}
|
|
11018
11017
|
],
|
|
11019
|
-
"npm:got": [
|
|
11018
|
+
"npm:got@12.6.1": [
|
|
11020
11019
|
{
|
|
11021
|
-
"source": "npm:got",
|
|
11022
|
-
"target": "npm:@sindresorhus/is",
|
|
11020
|
+
"source": "npm:got@12.6.1",
|
|
11021
|
+
"target": "npm:@sindresorhus/is@5.6.0",
|
|
11023
11022
|
"type": "static"
|
|
11024
11023
|
},
|
|
11025
11024
|
{
|
|
11026
|
-
"source": "npm:got",
|
|
11027
|
-
"target": "npm:@szmarczak/http-timer",
|
|
11025
|
+
"source": "npm:got@12.6.1",
|
|
11026
|
+
"target": "npm:@szmarczak/http-timer@5.0.1",
|
|
11028
11027
|
"type": "static"
|
|
11029
11028
|
},
|
|
11030
11029
|
{
|
|
11031
|
-
"source": "npm:got",
|
|
11030
|
+
"source": "npm:got@12.6.1",
|
|
11032
11031
|
"target": "npm:cacheable-lookup",
|
|
11033
11032
|
"type": "static"
|
|
11034
11033
|
},
|
|
11035
11034
|
{
|
|
11036
|
-
"source": "npm:got",
|
|
11037
|
-
"target": "npm:cacheable-request",
|
|
11035
|
+
"source": "npm:got@12.6.1",
|
|
11036
|
+
"target": "npm:cacheable-request@10.2.14",
|
|
11038
11037
|
"type": "static"
|
|
11039
11038
|
},
|
|
11040
11039
|
{
|
|
11041
|
-
"source": "npm:got",
|
|
11042
|
-
"target": "npm:decompress-response",
|
|
11040
|
+
"source": "npm:got@12.6.1",
|
|
11041
|
+
"target": "npm:decompress-response@6.0.0",
|
|
11043
11042
|
"type": "static"
|
|
11044
11043
|
},
|
|
11045
11044
|
{
|
|
11046
|
-
"source": "npm:got",
|
|
11045
|
+
"source": "npm:got@12.6.1",
|
|
11047
11046
|
"target": "npm:form-data-encoder",
|
|
11048
11047
|
"type": "static"
|
|
11049
11048
|
},
|
|
11050
11049
|
{
|
|
11051
|
-
"source": "npm:got",
|
|
11052
|
-
"target": "npm:get-stream",
|
|
11050
|
+
"source": "npm:got@12.6.1",
|
|
11051
|
+
"target": "npm:get-stream@6.0.1",
|
|
11053
11052
|
"type": "static"
|
|
11054
11053
|
},
|
|
11055
11054
|
{
|
|
11056
|
-
"source": "npm:got",
|
|
11055
|
+
"source": "npm:got@12.6.1",
|
|
11057
11056
|
"target": "npm:http2-wrapper",
|
|
11058
11057
|
"type": "static"
|
|
11059
11058
|
},
|
|
11060
11059
|
{
|
|
11061
|
-
"source": "npm:got",
|
|
11062
|
-
"target": "npm:lowercase-keys",
|
|
11060
|
+
"source": "npm:got@12.6.1",
|
|
11061
|
+
"target": "npm:lowercase-keys@3.0.0",
|
|
11063
11062
|
"type": "static"
|
|
11064
11063
|
},
|
|
11065
11064
|
{
|
|
11066
|
-
"source": "npm:got",
|
|
11067
|
-
"target": "npm:p-cancelable",
|
|
11065
|
+
"source": "npm:got@12.6.1",
|
|
11066
|
+
"target": "npm:p-cancelable@3.0.0",
|
|
11068
11067
|
"type": "static"
|
|
11069
11068
|
},
|
|
11070
11069
|
{
|
|
11071
|
-
"source": "npm:got",
|
|
11072
|
-
"target": "npm:responselike",
|
|
11070
|
+
"source": "npm:got@12.6.1",
|
|
11071
|
+
"target": "npm:responselike@3.0.0",
|
|
11073
11072
|
"type": "static"
|
|
11074
11073
|
}
|
|
11075
11074
|
],
|
|
@@ -11198,7 +11197,7 @@
|
|
|
11198
11197
|
},
|
|
11199
11198
|
{
|
|
11200
11199
|
"source": "npm:http-proxy-agent",
|
|
11201
|
-
"target": "npm:debug",
|
|
11200
|
+
"target": "npm:debug@4.4.3",
|
|
11202
11201
|
"type": "static"
|
|
11203
11202
|
}
|
|
11204
11203
|
],
|
|
@@ -11214,15 +11213,15 @@
|
|
|
11214
11213
|
"type": "static"
|
|
11215
11214
|
}
|
|
11216
11215
|
],
|
|
11217
|
-
"npm:https-proxy-agent": [
|
|
11216
|
+
"npm:https-proxy-agent@5.0.1": [
|
|
11218
11217
|
{
|
|
11219
|
-
"source": "npm:https-proxy-agent",
|
|
11220
|
-
"target": "npm:agent-base",
|
|
11218
|
+
"source": "npm:https-proxy-agent@5.0.1",
|
|
11219
|
+
"target": "npm:agent-base@6.0.2",
|
|
11221
11220
|
"type": "static"
|
|
11222
11221
|
},
|
|
11223
11222
|
{
|
|
11224
|
-
"source": "npm:https-proxy-agent",
|
|
11225
|
-
"target": "npm:debug",
|
|
11223
|
+
"source": "npm:https-proxy-agent@5.0.1",
|
|
11224
|
+
"target": "npm:debug@4.4.3",
|
|
11226
11225
|
"type": "static"
|
|
11227
11226
|
}
|
|
11228
11227
|
],
|
|
@@ -11234,13 +11233,13 @@
|
|
|
11234
11233
|
},
|
|
11235
11234
|
{
|
|
11236
11235
|
"source": "npm:https-proxy-agent@7.0.6",
|
|
11237
|
-
"target": "npm:debug",
|
|
11236
|
+
"target": "npm:debug@4.4.3",
|
|
11238
11237
|
"type": "static"
|
|
11239
11238
|
}
|
|
11240
11239
|
],
|
|
11241
|
-
"npm:iconv-lite": [
|
|
11240
|
+
"npm:iconv-lite@0.6.3": [
|
|
11242
11241
|
{
|
|
11243
|
-
"source": "npm:iconv-lite",
|
|
11242
|
+
"source": "npm:iconv-lite@0.6.3",
|
|
11244
11243
|
"target": "npm:safer-buffer",
|
|
11245
11244
|
"type": "static"
|
|
11246
11245
|
}
|
|
@@ -11346,9 +11345,9 @@
|
|
|
11346
11345
|
"type": "static"
|
|
11347
11346
|
}
|
|
11348
11347
|
],
|
|
11349
|
-
"npm:is-wsl": [
|
|
11348
|
+
"npm:is-wsl@2.2.0": [
|
|
11350
11349
|
{
|
|
11351
|
-
"source": "npm:is-wsl",
|
|
11350
|
+
"source": "npm:is-wsl@2.2.0",
|
|
11352
11351
|
"target": "npm:is-docker",
|
|
11353
11352
|
"type": "static"
|
|
11354
11353
|
}
|
|
@@ -11376,7 +11375,7 @@
|
|
|
11376
11375
|
},
|
|
11377
11376
|
{
|
|
11378
11377
|
"source": "npm:istanbul-lib-instrument",
|
|
11379
|
-
"target": "npm:semver",
|
|
11378
|
+
"target": "npm:semver@7.8.5",
|
|
11380
11379
|
"type": "static"
|
|
11381
11380
|
}
|
|
11382
11381
|
],
|
|
@@ -11388,12 +11387,12 @@
|
|
|
11388
11387
|
},
|
|
11389
11388
|
{
|
|
11390
11389
|
"source": "npm:istanbul-lib-report",
|
|
11391
|
-
"target": "npm:make-dir",
|
|
11390
|
+
"target": "npm:make-dir@4.0.0",
|
|
11392
11391
|
"type": "static"
|
|
11393
11392
|
},
|
|
11394
11393
|
{
|
|
11395
11394
|
"source": "npm:istanbul-lib-report",
|
|
11396
|
-
"target": "npm:supports-color",
|
|
11395
|
+
"target": "npm:supports-color@7.2.0",
|
|
11397
11396
|
"type": "static"
|
|
11398
11397
|
}
|
|
11399
11398
|
],
|
|
@@ -11438,25 +11437,25 @@
|
|
|
11438
11437
|
"type": "static"
|
|
11439
11438
|
}
|
|
11440
11439
|
],
|
|
11441
|
-
"npm:jest-diff": [
|
|
11440
|
+
"npm:jest-diff@29.7.0": [
|
|
11442
11441
|
{
|
|
11443
|
-
"source": "npm:jest-diff",
|
|
11442
|
+
"source": "npm:jest-diff@29.7.0",
|
|
11444
11443
|
"target": "npm:chalk@4.1.2",
|
|
11445
11444
|
"type": "static"
|
|
11446
11445
|
},
|
|
11447
11446
|
{
|
|
11448
|
-
"source": "npm:jest-diff",
|
|
11447
|
+
"source": "npm:jest-diff@29.7.0",
|
|
11449
11448
|
"target": "npm:diff-sequences",
|
|
11450
11449
|
"type": "static"
|
|
11451
11450
|
},
|
|
11452
11451
|
{
|
|
11453
|
-
"source": "npm:jest-diff",
|
|
11452
|
+
"source": "npm:jest-diff@29.7.0",
|
|
11454
11453
|
"target": "npm:jest-get-type",
|
|
11455
11454
|
"type": "static"
|
|
11456
11455
|
},
|
|
11457
11456
|
{
|
|
11458
|
-
"source": "npm:jest-diff",
|
|
11459
|
-
"target": "npm:pretty-format",
|
|
11457
|
+
"source": "npm:jest-diff@29.7.0",
|
|
11458
|
+
"target": "npm:pretty-format@29.7.0",
|
|
11460
11459
|
"type": "static"
|
|
11461
11460
|
}
|
|
11462
11461
|
],
|
|
@@ -11625,7 +11624,7 @@
|
|
|
11625
11624
|
"npm:js-yaml@4.3.2": [
|
|
11626
11625
|
{
|
|
11627
11626
|
"source": "npm:js-yaml@4.3.2",
|
|
11628
|
-
"target": "npm:argparse",
|
|
11627
|
+
"target": "npm:argparse@2.0.1",
|
|
11629
11628
|
"type": "static"
|
|
11630
11629
|
}
|
|
11631
11630
|
],
|
|
@@ -11658,10 +11657,10 @@
|
|
|
11658
11657
|
"type": "static"
|
|
11659
11658
|
}
|
|
11660
11659
|
],
|
|
11661
|
-
"npm:keyv": [
|
|
11660
|
+
"npm:keyv@4.5.4": [
|
|
11662
11661
|
{
|
|
11663
|
-
"source": "npm:keyv",
|
|
11664
|
-
"target": "npm:json-buffer",
|
|
11662
|
+
"source": "npm:keyv@4.5.4",
|
|
11663
|
+
"target": "npm:json-buffer@3.0.1",
|
|
11665
11664
|
"type": "static"
|
|
11666
11665
|
}
|
|
11667
11666
|
],
|
|
@@ -11874,10 +11873,10 @@
|
|
|
11874
11873
|
"type": "static"
|
|
11875
11874
|
}
|
|
11876
11875
|
],
|
|
11877
|
-
"npm:locate-path": [
|
|
11876
|
+
"npm:locate-path@6.0.0": [
|
|
11878
11877
|
{
|
|
11879
|
-
"source": "npm:locate-path",
|
|
11880
|
-
"target": "npm:p-locate",
|
|
11878
|
+
"source": "npm:locate-path@6.0.0",
|
|
11879
|
+
"target": "npm:p-locate@5.0.0",
|
|
11881
11880
|
"type": "static"
|
|
11882
11881
|
}
|
|
11883
11882
|
],
|
|
@@ -11921,10 +11920,10 @@
|
|
|
11921
11920
|
"type": "static"
|
|
11922
11921
|
}
|
|
11923
11922
|
],
|
|
11924
|
-
"npm:make-dir": [
|
|
11923
|
+
"npm:make-dir@4.0.0": [
|
|
11925
11924
|
{
|
|
11926
|
-
"source": "npm:make-dir",
|
|
11927
|
-
"target": "npm:semver",
|
|
11925
|
+
"source": "npm:make-dir@4.0.0",
|
|
11926
|
+
"target": "npm:semver@7.8.5",
|
|
11928
11927
|
"type": "static"
|
|
11929
11928
|
}
|
|
11930
11929
|
],
|
|
@@ -12005,7 +12004,7 @@
|
|
|
12005
12004
|
},
|
|
12006
12005
|
{
|
|
12007
12006
|
"source": "npm:mocha",
|
|
12008
|
-
"target": "npm:debug",
|
|
12007
|
+
"target": "npm:debug@4.4.3",
|
|
12009
12008
|
"type": "static"
|
|
12010
12009
|
},
|
|
12011
12010
|
{
|
|
@@ -12020,7 +12019,7 @@
|
|
|
12020
12019
|
},
|
|
12021
12020
|
{
|
|
12022
12021
|
"source": "npm:mocha",
|
|
12023
|
-
"target": "npm:find-up",
|
|
12022
|
+
"target": "npm:find-up@5.0.0",
|
|
12024
12023
|
"type": "static"
|
|
12025
12024
|
},
|
|
12026
12025
|
{
|
|
@@ -12050,7 +12049,7 @@
|
|
|
12050
12049
|
},
|
|
12051
12050
|
{
|
|
12052
12051
|
"source": "npm:mocha",
|
|
12053
|
-
"target": "npm:ms",
|
|
12052
|
+
"target": "npm:ms@2.1.3",
|
|
12054
12053
|
"type": "static"
|
|
12055
12054
|
},
|
|
12056
12055
|
{
|
|
@@ -12060,7 +12059,7 @@
|
|
|
12060
12059
|
},
|
|
12061
12060
|
{
|
|
12062
12061
|
"source": "npm:mocha",
|
|
12063
|
-
"target": "npm:strip-json-comments",
|
|
12062
|
+
"target": "npm:strip-json-comments@3.1.1",
|
|
12064
12063
|
"type": "static"
|
|
12065
12064
|
},
|
|
12066
12065
|
{
|
|
@@ -12089,9 +12088,9 @@
|
|
|
12089
12088
|
"type": "static"
|
|
12090
12089
|
}
|
|
12091
12090
|
],
|
|
12092
|
-
"npm:node-fetch": [
|
|
12091
|
+
"npm:node-fetch@2.7.0": [
|
|
12093
12092
|
{
|
|
12094
|
-
"source": "npm:node-fetch",
|
|
12093
|
+
"source": "npm:node-fetch@2.7.0",
|
|
12095
12094
|
"target": "npm:whatwg-url",
|
|
12096
12095
|
"type": "static"
|
|
12097
12096
|
}
|
|
@@ -12099,7 +12098,7 @@
|
|
|
12099
12098
|
"npm:node-fetch@3.3.2": [
|
|
12100
12099
|
{
|
|
12101
12100
|
"source": "npm:node-fetch@3.3.2",
|
|
12102
|
-
"target": "npm:data-uri-to-buffer",
|
|
12101
|
+
"target": "npm:data-uri-to-buffer@4.0.1",
|
|
12103
12102
|
"type": "static"
|
|
12104
12103
|
},
|
|
12105
12104
|
{
|
|
@@ -12121,7 +12120,7 @@
|
|
|
12121
12120
|
},
|
|
12122
12121
|
{
|
|
12123
12122
|
"source": "npm:normalize-package-data@6.0.2",
|
|
12124
|
-
"target": "npm:semver",
|
|
12123
|
+
"target": "npm:semver@7.8.5",
|
|
12125
12124
|
"type": "static"
|
|
12126
12125
|
},
|
|
12127
12126
|
{
|
|
@@ -12130,27 +12129,27 @@
|
|
|
12130
12129
|
"type": "static"
|
|
12131
12130
|
}
|
|
12132
12131
|
],
|
|
12133
|
-
"npm:normalize-package-data": [
|
|
12132
|
+
"npm:normalize-package-data@7.0.1": [
|
|
12134
12133
|
{
|
|
12135
|
-
"source": "npm:normalize-package-data",
|
|
12134
|
+
"source": "npm:normalize-package-data@7.0.1",
|
|
12136
12135
|
"target": "npm:hosted-git-info@8.1.0",
|
|
12137
12136
|
"type": "static"
|
|
12138
12137
|
},
|
|
12139
12138
|
{
|
|
12140
|
-
"source": "npm:normalize-package-data",
|
|
12141
|
-
"target": "npm:semver",
|
|
12139
|
+
"source": "npm:normalize-package-data@7.0.1",
|
|
12140
|
+
"target": "npm:semver@7.8.5",
|
|
12142
12141
|
"type": "static"
|
|
12143
12142
|
},
|
|
12144
12143
|
{
|
|
12145
|
-
"source": "npm:normalize-package-data",
|
|
12144
|
+
"source": "npm:normalize-package-data@7.0.1",
|
|
12146
12145
|
"target": "npm:validate-npm-package-license",
|
|
12147
12146
|
"type": "static"
|
|
12148
12147
|
}
|
|
12149
12148
|
],
|
|
12150
|
-
"npm:npm-run-path": [
|
|
12149
|
+
"npm:npm-run-path@4.0.1": [
|
|
12151
12150
|
{
|
|
12152
|
-
"source": "npm:npm-run-path",
|
|
12153
|
-
"target": "npm:path-key",
|
|
12151
|
+
"source": "npm:npm-run-path@4.0.1",
|
|
12152
|
+
"target": "npm:path-key@3.1.1",
|
|
12154
12153
|
"type": "static"
|
|
12155
12154
|
}
|
|
12156
12155
|
],
|
|
@@ -12221,7 +12220,7 @@
|
|
|
12221
12220
|
},
|
|
12222
12221
|
{
|
|
12223
12222
|
"source": "npm:nx",
|
|
12224
|
-
"target": "npm:cliui",
|
|
12223
|
+
"target": "npm:cliui@8.0.1",
|
|
12225
12224
|
"type": "static"
|
|
12226
12225
|
},
|
|
12227
12226
|
{
|
|
@@ -12236,12 +12235,12 @@
|
|
|
12236
12235
|
},
|
|
12237
12236
|
{
|
|
12238
12237
|
"source": "npm:nx",
|
|
12239
|
-
"target": "npm:enquirer",
|
|
12238
|
+
"target": "npm:enquirer@2.3.6",
|
|
12240
12239
|
"type": "static"
|
|
12241
12240
|
},
|
|
12242
12241
|
{
|
|
12243
12242
|
"source": "npm:nx",
|
|
12244
|
-
"target": "npm:figures",
|
|
12243
|
+
"target": "npm:figures@3.2.0",
|
|
12245
12244
|
"type": "static"
|
|
12246
12245
|
},
|
|
12247
12246
|
{
|
|
@@ -12261,7 +12260,7 @@
|
|
|
12261
12260
|
},
|
|
12262
12261
|
{
|
|
12263
12262
|
"source": "npm:nx",
|
|
12264
|
-
"target": "npm:jest-diff",
|
|
12263
|
+
"target": "npm:jest-diff@29.7.0",
|
|
12265
12264
|
"type": "static"
|
|
12266
12265
|
},
|
|
12267
12266
|
{
|
|
@@ -12271,7 +12270,7 @@
|
|
|
12271
12270
|
},
|
|
12272
12271
|
{
|
|
12273
12272
|
"source": "npm:nx",
|
|
12274
|
-
"target": "npm:lines-and-columns",
|
|
12273
|
+
"target": "npm:lines-and-columns@2.0.3",
|
|
12275
12274
|
"type": "static"
|
|
12276
12275
|
},
|
|
12277
12276
|
{
|
|
@@ -12286,12 +12285,12 @@
|
|
|
12286
12285
|
},
|
|
12287
12286
|
{
|
|
12288
12287
|
"source": "npm:nx",
|
|
12289
|
-
"target": "npm:npm-run-path",
|
|
12288
|
+
"target": "npm:npm-run-path@4.0.1",
|
|
12290
12289
|
"type": "static"
|
|
12291
12290
|
},
|
|
12292
12291
|
{
|
|
12293
12292
|
"source": "npm:nx",
|
|
12294
|
-
"target": "npm:open",
|
|
12293
|
+
"target": "npm:open@8.4.2",
|
|
12295
12294
|
"type": "static"
|
|
12296
12295
|
},
|
|
12297
12296
|
{
|
|
@@ -12301,12 +12300,12 @@
|
|
|
12301
12300
|
},
|
|
12302
12301
|
{
|
|
12303
12302
|
"source": "npm:nx",
|
|
12304
|
-
"target": "npm:semver",
|
|
12303
|
+
"target": "npm:semver@7.8.5",
|
|
12305
12304
|
"type": "static"
|
|
12306
12305
|
},
|
|
12307
12306
|
{
|
|
12308
12307
|
"source": "npm:nx",
|
|
12309
|
-
"target": "npm:string-width",
|
|
12308
|
+
"target": "npm:string-width@4.2.3",
|
|
12310
12309
|
"type": "static"
|
|
12311
12310
|
},
|
|
12312
12311
|
{
|
|
@@ -12316,7 +12315,7 @@
|
|
|
12316
12315
|
},
|
|
12317
12316
|
{
|
|
12318
12317
|
"source": "npm:nx",
|
|
12319
|
-
"target": "npm:tar-stream",
|
|
12318
|
+
"target": "npm:tar-stream@2.2.0",
|
|
12320
12319
|
"type": "static"
|
|
12321
12320
|
},
|
|
12322
12321
|
{
|
|
@@ -12336,12 +12335,12 @@
|
|
|
12336
12335
|
},
|
|
12337
12336
|
{
|
|
12338
12337
|
"source": "npm:nx",
|
|
12339
|
-
"target": "npm:yargs",
|
|
12338
|
+
"target": "npm:yargs@17.7.3",
|
|
12340
12339
|
"type": "static"
|
|
12341
12340
|
},
|
|
12342
12341
|
{
|
|
12343
12342
|
"source": "npm:nx",
|
|
12344
|
-
"target": "npm:yargs-parser",
|
|
12343
|
+
"target": "npm:yargs-parser@21.1.1",
|
|
12345
12344
|
"type": "static"
|
|
12346
12345
|
},
|
|
12347
12346
|
{
|
|
@@ -12416,20 +12415,20 @@
|
|
|
12416
12415
|
"type": "static"
|
|
12417
12416
|
}
|
|
12418
12417
|
],
|
|
12419
|
-
"npm:open": [
|
|
12418
|
+
"npm:open@8.4.2": [
|
|
12420
12419
|
{
|
|
12421
|
-
"source": "npm:open",
|
|
12420
|
+
"source": "npm:open@8.4.2",
|
|
12422
12421
|
"target": "npm:define-lazy-prop",
|
|
12423
12422
|
"type": "static"
|
|
12424
12423
|
},
|
|
12425
12424
|
{
|
|
12426
|
-
"source": "npm:open",
|
|
12425
|
+
"source": "npm:open@8.4.2",
|
|
12427
12426
|
"target": "npm:is-docker",
|
|
12428
12427
|
"type": "static"
|
|
12429
12428
|
},
|
|
12430
12429
|
{
|
|
12431
|
-
"source": "npm:open",
|
|
12432
|
-
"target": "npm:is-wsl",
|
|
12430
|
+
"source": "npm:open@8.4.2",
|
|
12431
|
+
"target": "npm:is-wsl@2.2.0",
|
|
12433
12432
|
"type": "static"
|
|
12434
12433
|
}
|
|
12435
12434
|
],
|
|
@@ -12482,10 +12481,10 @@
|
|
|
12482
12481
|
"type": "static"
|
|
12483
12482
|
}
|
|
12484
12483
|
],
|
|
12485
|
-
"npm:p-limit": [
|
|
12484
|
+
"npm:p-limit@3.1.0": [
|
|
12486
12485
|
{
|
|
12487
|
-
"source": "npm:p-limit",
|
|
12488
|
-
"target": "npm:yocto-queue",
|
|
12486
|
+
"source": "npm:p-limit@3.1.0",
|
|
12487
|
+
"target": "npm:yocto-queue@0.1.0",
|
|
12489
12488
|
"type": "static"
|
|
12490
12489
|
}
|
|
12491
12490
|
],
|
|
@@ -12503,10 +12502,10 @@
|
|
|
12503
12502
|
"type": "static"
|
|
12504
12503
|
}
|
|
12505
12504
|
],
|
|
12506
|
-
"npm:p-locate": [
|
|
12505
|
+
"npm:p-locate@5.0.0": [
|
|
12507
12506
|
{
|
|
12508
|
-
"source": "npm:p-locate",
|
|
12509
|
-
"target": "npm:p-limit",
|
|
12507
|
+
"source": "npm:p-locate@5.0.0",
|
|
12508
|
+
"target": "npm:p-limit@3.1.0",
|
|
12510
12509
|
"type": "static"
|
|
12511
12510
|
}
|
|
12512
12511
|
],
|
|
@@ -12530,7 +12529,7 @@
|
|
|
12530
12529
|
},
|
|
12531
12530
|
{
|
|
12532
12531
|
"source": "npm:pac-proxy-agent",
|
|
12533
|
-
"target": "npm:debug",
|
|
12532
|
+
"target": "npm:debug@4.4.3",
|
|
12534
12533
|
"type": "static"
|
|
12535
12534
|
},
|
|
12536
12535
|
{
|
|
@@ -12658,20 +12657,20 @@
|
|
|
12658
12657
|
"type": "static"
|
|
12659
12658
|
}
|
|
12660
12659
|
],
|
|
12661
|
-
"npm:pretty-format": [
|
|
12660
|
+
"npm:pretty-format@29.7.0": [
|
|
12662
12661
|
{
|
|
12663
|
-
"source": "npm:pretty-format",
|
|
12664
|
-
"target": "npm:@jest/schemas",
|
|
12662
|
+
"source": "npm:pretty-format@29.7.0",
|
|
12663
|
+
"target": "npm:@jest/schemas@29.6.3",
|
|
12665
12664
|
"type": "static"
|
|
12666
12665
|
},
|
|
12667
12666
|
{
|
|
12668
|
-
"source": "npm:pretty-format",
|
|
12667
|
+
"source": "npm:pretty-format@29.7.0",
|
|
12669
12668
|
"target": "npm:ansi-styles@5.2.0",
|
|
12670
12669
|
"type": "static"
|
|
12671
12670
|
},
|
|
12672
12671
|
{
|
|
12673
|
-
"source": "npm:pretty-format",
|
|
12674
|
-
"target": "npm:react-is",
|
|
12672
|
+
"source": "npm:pretty-format@29.7.0",
|
|
12673
|
+
"target": "npm:react-is@18.3.1",
|
|
12675
12674
|
"type": "static"
|
|
12676
12675
|
}
|
|
12677
12676
|
],
|
|
@@ -12704,44 +12703,44 @@
|
|
|
12704
12703
|
"type": "static"
|
|
12705
12704
|
}
|
|
12706
12705
|
],
|
|
12707
|
-
"npm:proxy-agent": [
|
|
12706
|
+
"npm:proxy-agent@6.3.1": [
|
|
12708
12707
|
{
|
|
12709
|
-
"source": "npm:proxy-agent",
|
|
12708
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12710
12709
|
"target": "npm:agent-base@7.1.4",
|
|
12711
12710
|
"type": "static"
|
|
12712
12711
|
},
|
|
12713
12712
|
{
|
|
12714
|
-
"source": "npm:proxy-agent",
|
|
12713
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12715
12714
|
"target": "npm:debug@4.3.4",
|
|
12716
12715
|
"type": "static"
|
|
12717
12716
|
},
|
|
12718
12717
|
{
|
|
12719
|
-
"source": "npm:proxy-agent",
|
|
12718
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12720
12719
|
"target": "npm:http-proxy-agent",
|
|
12721
12720
|
"type": "static"
|
|
12722
12721
|
},
|
|
12723
12722
|
{
|
|
12724
|
-
"source": "npm:proxy-agent",
|
|
12723
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12725
12724
|
"target": "npm:https-proxy-agent@7.0.6",
|
|
12726
12725
|
"type": "static"
|
|
12727
12726
|
},
|
|
12728
12727
|
{
|
|
12729
|
-
"source": "npm:proxy-agent",
|
|
12728
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12730
12729
|
"target": "npm:lru-cache@7.18.3",
|
|
12731
12730
|
"type": "static"
|
|
12732
12731
|
},
|
|
12733
12732
|
{
|
|
12734
|
-
"source": "npm:proxy-agent",
|
|
12733
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12735
12734
|
"target": "npm:pac-proxy-agent",
|
|
12736
12735
|
"type": "static"
|
|
12737
12736
|
},
|
|
12738
12737
|
{
|
|
12739
|
-
"source": "npm:proxy-agent",
|
|
12738
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12740
12739
|
"target": "npm:proxy-from-env@1.1.0",
|
|
12741
12740
|
"type": "static"
|
|
12742
12741
|
},
|
|
12743
12742
|
{
|
|
12744
|
-
"source": "npm:proxy-agent",
|
|
12743
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12745
12744
|
"target": "npm:socks-proxy-agent",
|
|
12746
12745
|
"type": "static"
|
|
12747
12746
|
}
|
|
@@ -12754,7 +12753,7 @@
|
|
|
12754
12753
|
},
|
|
12755
12754
|
{
|
|
12756
12755
|
"source": "npm:proxy-agent@6.5.0",
|
|
12757
|
-
"target": "npm:debug",
|
|
12756
|
+
"target": "npm:debug@4.4.3",
|
|
12758
12757
|
"type": "static"
|
|
12759
12758
|
},
|
|
12760
12759
|
{
|
|
@@ -12842,7 +12841,7 @@
|
|
|
12842
12841
|
"npm:randombytes": [
|
|
12843
12842
|
{
|
|
12844
12843
|
"source": "npm:randombytes",
|
|
12845
|
-
"target": "npm:safe-buffer",
|
|
12844
|
+
"target": "npm:safe-buffer@5.2.1",
|
|
12846
12845
|
"type": "static"
|
|
12847
12846
|
}
|
|
12848
12847
|
],
|
|
@@ -12881,7 +12880,7 @@
|
|
|
12881
12880
|
},
|
|
12882
12881
|
{
|
|
12883
12882
|
"source": "npm:rc",
|
|
12884
|
-
"target": "npm:ini",
|
|
12883
|
+
"target": "npm:ini@1.3.8",
|
|
12885
12884
|
"type": "static"
|
|
12886
12885
|
},
|
|
12887
12886
|
{
|
|
@@ -12908,7 +12907,7 @@
|
|
|
12908
12907
|
},
|
|
12909
12908
|
{
|
|
12910
12909
|
"source": "npm:read-pkg-up",
|
|
12911
|
-
"target": "npm:type-fest",
|
|
12910
|
+
"target": "npm:type-fest@4.41.0",
|
|
12912
12911
|
"type": "static"
|
|
12913
12912
|
}
|
|
12914
12913
|
],
|
|
@@ -12930,7 +12929,7 @@
|
|
|
12930
12929
|
},
|
|
12931
12930
|
{
|
|
12932
12931
|
"source": "npm:read-pkg",
|
|
12933
|
-
"target": "npm:type-fest",
|
|
12932
|
+
"target": "npm:type-fest@4.41.0",
|
|
12934
12933
|
"type": "static"
|
|
12935
12934
|
}
|
|
12936
12935
|
],
|
|
@@ -12962,7 +12961,7 @@
|
|
|
12962
12961
|
},
|
|
12963
12962
|
{
|
|
12964
12963
|
"source": "npm:readable-stream@2.3.8",
|
|
12965
|
-
"target": "npm:string_decoder",
|
|
12964
|
+
"target": "npm:string_decoder@1.1.1",
|
|
12966
12965
|
"type": "static"
|
|
12967
12966
|
},
|
|
12968
12967
|
{
|
|
@@ -12988,29 +12987,29 @@
|
|
|
12988
12987
|
"type": "static"
|
|
12989
12988
|
}
|
|
12990
12989
|
],
|
|
12991
|
-
"npm:readable-stream": [
|
|
12990
|
+
"npm:readable-stream@4.7.0": [
|
|
12992
12991
|
{
|
|
12993
|
-
"source": "npm:readable-stream",
|
|
12992
|
+
"source": "npm:readable-stream@4.7.0",
|
|
12994
12993
|
"target": "npm:abort-controller",
|
|
12995
12994
|
"type": "static"
|
|
12996
12995
|
},
|
|
12997
12996
|
{
|
|
12998
|
-
"source": "npm:readable-stream",
|
|
12997
|
+
"source": "npm:readable-stream@4.7.0",
|
|
12999
12998
|
"target": "npm:buffer@6.0.3",
|
|
13000
12999
|
"type": "static"
|
|
13001
13000
|
},
|
|
13002
13001
|
{
|
|
13003
|
-
"source": "npm:readable-stream",
|
|
13002
|
+
"source": "npm:readable-stream@4.7.0",
|
|
13004
13003
|
"target": "npm:events",
|
|
13005
13004
|
"type": "static"
|
|
13006
13005
|
},
|
|
13007
13006
|
{
|
|
13008
|
-
"source": "npm:readable-stream",
|
|
13007
|
+
"source": "npm:readable-stream@4.7.0",
|
|
13009
13008
|
"target": "npm:process",
|
|
13010
13009
|
"type": "static"
|
|
13011
13010
|
},
|
|
13012
13011
|
{
|
|
13013
|
-
"source": "npm:readable-stream",
|
|
13012
|
+
"source": "npm:readable-stream@4.7.0",
|
|
13014
13013
|
"target": "npm:string_decoder@1.3.0",
|
|
13015
13014
|
"type": "static"
|
|
13016
13015
|
}
|
|
@@ -13057,10 +13056,10 @@
|
|
|
13057
13056
|
"type": "static"
|
|
13058
13057
|
}
|
|
13059
13058
|
],
|
|
13060
|
-
"npm:responselike": [
|
|
13059
|
+
"npm:responselike@3.0.0": [
|
|
13061
13060
|
{
|
|
13062
|
-
"source": "npm:responselike",
|
|
13063
|
-
"target": "npm:lowercase-keys",
|
|
13061
|
+
"source": "npm:responselike@3.0.0",
|
|
13062
|
+
"target": "npm:lowercase-keys@3.0.0",
|
|
13064
13063
|
"type": "static"
|
|
13065
13064
|
}
|
|
13066
13065
|
],
|
|
@@ -13079,7 +13078,7 @@
|
|
|
13079
13078
|
},
|
|
13080
13079
|
{
|
|
13081
13080
|
"source": "npm:restore-cursor",
|
|
13082
|
-
"target": "npm:signal-exit",
|
|
13081
|
+
"target": "npm:signal-exit@3.0.7",
|
|
13083
13082
|
"type": "static"
|
|
13084
13083
|
}
|
|
13085
13084
|
],
|
|
@@ -13118,10 +13117,10 @@
|
|
|
13118
13117
|
"type": "static"
|
|
13119
13118
|
}
|
|
13120
13119
|
],
|
|
13121
|
-
"npm:serialize-error": [
|
|
13120
|
+
"npm:serialize-error@12.0.0": [
|
|
13122
13121
|
{
|
|
13123
|
-
"source": "npm:serialize-error",
|
|
13124
|
-
"target": "npm:type-fest",
|
|
13122
|
+
"source": "npm:serialize-error@12.0.0",
|
|
13123
|
+
"target": "npm:type-fest@4.41.0",
|
|
13125
13124
|
"type": "static"
|
|
13126
13125
|
}
|
|
13127
13126
|
],
|
|
@@ -13147,7 +13146,7 @@
|
|
|
13147
13146
|
},
|
|
13148
13147
|
{
|
|
13149
13148
|
"source": "npm:socks-proxy-agent",
|
|
13150
|
-
"target": "npm:debug",
|
|
13149
|
+
"target": "npm:debug@4.4.3",
|
|
13151
13150
|
"type": "static"
|
|
13152
13151
|
},
|
|
13153
13152
|
{
|
|
@@ -13233,19 +13232,19 @@
|
|
|
13233
13232
|
"type": "static"
|
|
13234
13233
|
}
|
|
13235
13234
|
],
|
|
13236
|
-
"npm:string-width": [
|
|
13235
|
+
"npm:string-width@4.2.3": [
|
|
13237
13236
|
{
|
|
13238
|
-
"source": "npm:string-width",
|
|
13239
|
-
"target": "npm:emoji-regex",
|
|
13237
|
+
"source": "npm:string-width@4.2.3",
|
|
13238
|
+
"target": "npm:emoji-regex@8.0.0",
|
|
13240
13239
|
"type": "static"
|
|
13241
13240
|
},
|
|
13242
13241
|
{
|
|
13243
|
-
"source": "npm:string-width",
|
|
13242
|
+
"source": "npm:string-width@4.2.3",
|
|
13244
13243
|
"target": "npm:is-fullwidth-code-point",
|
|
13245
13244
|
"type": "static"
|
|
13246
13245
|
},
|
|
13247
13246
|
{
|
|
13248
|
-
"source": "npm:string-width",
|
|
13247
|
+
"source": "npm:string-width@4.2.3",
|
|
13249
13248
|
"target": "npm:strip-ansi@6.0.1",
|
|
13250
13249
|
"type": "static"
|
|
13251
13250
|
}
|
|
@@ -13253,7 +13252,7 @@
|
|
|
13253
13252
|
"npm:string-width-cjs": [
|
|
13254
13253
|
{
|
|
13255
13254
|
"source": "npm:string-width-cjs",
|
|
13256
|
-
"target": "npm:emoji-regex",
|
|
13255
|
+
"target": "npm:emoji-regex@8.0.0",
|
|
13257
13256
|
"type": "static"
|
|
13258
13257
|
},
|
|
13259
13258
|
{
|
|
@@ -13280,13 +13279,13 @@
|
|
|
13280
13279
|
},
|
|
13281
13280
|
{
|
|
13282
13281
|
"source": "npm:string-width@5.1.2",
|
|
13283
|
-
"target": "npm:strip-ansi",
|
|
13282
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
13284
13283
|
"type": "static"
|
|
13285
13284
|
}
|
|
13286
13285
|
],
|
|
13287
|
-
"npm:string_decoder": [
|
|
13286
|
+
"npm:string_decoder@1.1.1": [
|
|
13288
13287
|
{
|
|
13289
|
-
"source": "npm:string_decoder",
|
|
13288
|
+
"source": "npm:string_decoder@1.1.1",
|
|
13290
13289
|
"target": "npm:safe-buffer@5.1.2",
|
|
13291
13290
|
"type": "static"
|
|
13292
13291
|
}
|
|
@@ -13294,27 +13293,27 @@
|
|
|
13294
13293
|
"npm:string_decoder@1.3.0": [
|
|
13295
13294
|
{
|
|
13296
13295
|
"source": "npm:string_decoder@1.3.0",
|
|
13297
|
-
"target": "npm:safe-buffer",
|
|
13296
|
+
"target": "npm:safe-buffer@5.2.1",
|
|
13298
13297
|
"type": "static"
|
|
13299
13298
|
}
|
|
13300
13299
|
],
|
|
13301
13300
|
"npm:strip-ansi@6.0.1": [
|
|
13302
13301
|
{
|
|
13303
13302
|
"source": "npm:strip-ansi@6.0.1",
|
|
13304
|
-
"target": "npm:ansi-regex",
|
|
13303
|
+
"target": "npm:ansi-regex@5.0.1",
|
|
13305
13304
|
"type": "static"
|
|
13306
13305
|
}
|
|
13307
13306
|
],
|
|
13308
13307
|
"npm:strip-ansi-cjs": [
|
|
13309
13308
|
{
|
|
13310
13309
|
"source": "npm:strip-ansi-cjs",
|
|
13311
|
-
"target": "npm:ansi-regex",
|
|
13310
|
+
"target": "npm:ansi-regex@5.0.1",
|
|
13312
13311
|
"type": "static"
|
|
13313
13312
|
}
|
|
13314
13313
|
],
|
|
13315
|
-
"npm:strip-ansi": [
|
|
13314
|
+
"npm:strip-ansi@7.2.0": [
|
|
13316
13315
|
{
|
|
13317
|
-
"source": "npm:strip-ansi",
|
|
13316
|
+
"source": "npm:strip-ansi@7.2.0",
|
|
13318
13317
|
"target": "npm:ansi-regex@6.3.0",
|
|
13319
13318
|
"type": "static"
|
|
13320
13319
|
}
|
|
@@ -13343,9 +13342,9 @@
|
|
|
13343
13342
|
"type": "static"
|
|
13344
13343
|
}
|
|
13345
13344
|
],
|
|
13346
|
-
"npm:supports-color": [
|
|
13345
|
+
"npm:supports-color@7.2.0": [
|
|
13347
13346
|
{
|
|
13348
|
-
"source": "npm:supports-color",
|
|
13347
|
+
"source": "npm:supports-color@7.2.0",
|
|
13349
13348
|
"target": "npm:has-flag",
|
|
13350
13349
|
"type": "static"
|
|
13351
13350
|
}
|
|
@@ -13357,19 +13356,19 @@
|
|
|
13357
13356
|
"type": "static"
|
|
13358
13357
|
}
|
|
13359
13358
|
],
|
|
13360
|
-
"npm:tar-fs": [
|
|
13359
|
+
"npm:tar-fs@3.0.4": [
|
|
13361
13360
|
{
|
|
13362
|
-
"source": "npm:tar-fs",
|
|
13361
|
+
"source": "npm:tar-fs@3.0.4",
|
|
13363
13362
|
"target": "npm:mkdirp-classic",
|
|
13364
13363
|
"type": "static"
|
|
13365
13364
|
},
|
|
13366
13365
|
{
|
|
13367
|
-
"source": "npm:tar-fs",
|
|
13366
|
+
"source": "npm:tar-fs@3.0.4",
|
|
13368
13367
|
"target": "npm:pump",
|
|
13369
13368
|
"type": "static"
|
|
13370
13369
|
},
|
|
13371
13370
|
{
|
|
13372
|
-
"source": "npm:tar-fs",
|
|
13371
|
+
"source": "npm:tar-fs@3.0.4",
|
|
13373
13372
|
"target": "npm:tar-stream@3.2.1",
|
|
13374
13373
|
"type": "static"
|
|
13375
13374
|
}
|
|
@@ -13396,29 +13395,29 @@
|
|
|
13396
13395
|
"type": "static"
|
|
13397
13396
|
}
|
|
13398
13397
|
],
|
|
13399
|
-
"npm:tar-stream": [
|
|
13398
|
+
"npm:tar-stream@2.2.0": [
|
|
13400
13399
|
{
|
|
13401
|
-
"source": "npm:tar-stream",
|
|
13400
|
+
"source": "npm:tar-stream@2.2.0",
|
|
13402
13401
|
"target": "npm:bl",
|
|
13403
13402
|
"type": "static"
|
|
13404
13403
|
},
|
|
13405
13404
|
{
|
|
13406
|
-
"source": "npm:tar-stream",
|
|
13405
|
+
"source": "npm:tar-stream@2.2.0",
|
|
13407
13406
|
"target": "npm:end-of-stream",
|
|
13408
13407
|
"type": "static"
|
|
13409
13408
|
},
|
|
13410
13409
|
{
|
|
13411
|
-
"source": "npm:tar-stream",
|
|
13410
|
+
"source": "npm:tar-stream@2.2.0",
|
|
13412
13411
|
"target": "npm:fs-constants",
|
|
13413
13412
|
"type": "static"
|
|
13414
13413
|
},
|
|
13415
13414
|
{
|
|
13416
|
-
"source": "npm:tar-stream",
|
|
13415
|
+
"source": "npm:tar-stream@2.2.0",
|
|
13417
13416
|
"target": "npm:inherits",
|
|
13418
13417
|
"type": "static"
|
|
13419
13418
|
},
|
|
13420
13419
|
{
|
|
13421
|
-
"source": "npm:tar-stream",
|
|
13420
|
+
"source": "npm:tar-stream@2.2.0",
|
|
13422
13421
|
"target": "npm:readable-stream@3.6.2",
|
|
13423
13422
|
"type": "static"
|
|
13424
13423
|
}
|
|
@@ -13522,7 +13521,7 @@
|
|
|
13522
13521
|
"npm:unbzip2-stream": [
|
|
13523
13522
|
{
|
|
13524
13523
|
"source": "npm:unbzip2-stream",
|
|
13525
|
-
"target": "npm:buffer",
|
|
13524
|
+
"target": "npm:buffer@5.7.1",
|
|
13526
13525
|
"type": "static"
|
|
13527
13526
|
},
|
|
13528
13527
|
{
|
|
@@ -13706,7 +13705,7 @@
|
|
|
13706
13705
|
},
|
|
13707
13706
|
{
|
|
13708
13707
|
"source": "npm:wait-port",
|
|
13709
|
-
"target": "npm:debug",
|
|
13708
|
+
"target": "npm:debug@4.4.3",
|
|
13710
13709
|
"type": "static"
|
|
13711
13710
|
}
|
|
13712
13711
|
],
|
|
@@ -13760,7 +13759,7 @@
|
|
|
13760
13759
|
},
|
|
13761
13760
|
{
|
|
13762
13761
|
"source": "npm:webdriver@8.46.0",
|
|
13763
|
-
"target": "npm:got",
|
|
13762
|
+
"target": "npm:got@12.6.1",
|
|
13764
13763
|
"type": "static"
|
|
13765
13764
|
},
|
|
13766
13765
|
{
|
|
@@ -13792,12 +13791,12 @@
|
|
|
13792
13791
|
},
|
|
13793
13792
|
{
|
|
13794
13793
|
"source": "npm:webdriver@9.31.6",
|
|
13795
|
-
"target": "npm:@wdio/logger",
|
|
13794
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
13796
13795
|
"type": "static"
|
|
13797
13796
|
},
|
|
13798
13797
|
{
|
|
13799
13798
|
"source": "npm:webdriver@9.31.6",
|
|
13800
|
-
"target": "npm:@wdio/protocols",
|
|
13799
|
+
"target": "npm:@wdio/protocols@9.31.5",
|
|
13801
13800
|
"type": "static"
|
|
13802
13801
|
},
|
|
13803
13802
|
{
|
|
@@ -13889,7 +13888,7 @@
|
|
|
13889
13888
|
},
|
|
13890
13889
|
{
|
|
13891
13890
|
"source": "npm:webdriverio@8.46.0",
|
|
13892
|
-
"target": "npm:devtools-protocol",
|
|
13891
|
+
"target": "npm:devtools-protocol@0.0.1400418",
|
|
13893
13892
|
"type": "static"
|
|
13894
13893
|
},
|
|
13895
13894
|
{
|
|
@@ -13904,7 +13903,7 @@
|
|
|
13904
13903
|
},
|
|
13905
13904
|
{
|
|
13906
13905
|
"source": "npm:webdriverio@8.46.0",
|
|
13907
|
-
"target": "npm:is-plain-obj",
|
|
13906
|
+
"target": "npm:is-plain-obj@4.1.0",
|
|
13908
13907
|
"type": "static"
|
|
13909
13908
|
},
|
|
13910
13909
|
{
|
|
@@ -13976,17 +13975,17 @@
|
|
|
13976
13975
|
},
|
|
13977
13976
|
{
|
|
13978
13977
|
"source": "npm:webdriverio@9.31.6",
|
|
13979
|
-
"target": "npm:@wdio/logger",
|
|
13978
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
13980
13979
|
"type": "static"
|
|
13981
13980
|
},
|
|
13982
13981
|
{
|
|
13983
13982
|
"source": "npm:webdriverio@9.31.6",
|
|
13984
|
-
"target": "npm:@wdio/protocols",
|
|
13983
|
+
"target": "npm:@wdio/protocols@9.31.5",
|
|
13985
13984
|
"type": "static"
|
|
13986
13985
|
},
|
|
13987
13986
|
{
|
|
13988
13987
|
"source": "npm:webdriverio@9.31.6",
|
|
13989
|
-
"target": "npm:@wdio/repl",
|
|
13988
|
+
"target": "npm:@wdio/repl@9.16.2",
|
|
13990
13989
|
"type": "static"
|
|
13991
13990
|
},
|
|
13992
13991
|
{
|
|
@@ -14036,7 +14035,7 @@
|
|
|
14036
14035
|
},
|
|
14037
14036
|
{
|
|
14038
14037
|
"source": "npm:webdriverio@9.31.6",
|
|
14039
|
-
"target": "npm:is-plain-obj",
|
|
14038
|
+
"target": "npm:is-plain-obj@4.1.0",
|
|
14040
14039
|
"type": "static"
|
|
14041
14040
|
},
|
|
14042
14041
|
{
|
|
@@ -14071,12 +14070,12 @@
|
|
|
14071
14070
|
},
|
|
14072
14071
|
{
|
|
14073
14072
|
"source": "npm:webdriverio@9.31.6",
|
|
14074
|
-
"target": "npm:serialize-error",
|
|
14073
|
+
"target": "npm:serialize-error@12.0.0",
|
|
14075
14074
|
"type": "static"
|
|
14076
14075
|
},
|
|
14077
14076
|
{
|
|
14078
14077
|
"source": "npm:webdriverio@9.31.6",
|
|
14079
|
-
"target": "npm:urlpattern-polyfill",
|
|
14078
|
+
"target": "npm:urlpattern-polyfill@10.1.0",
|
|
14080
14079
|
"type": "static"
|
|
14081
14080
|
},
|
|
14082
14081
|
{
|
|
@@ -14088,7 +14087,7 @@
|
|
|
14088
14087
|
"npm:whatwg-encoding": [
|
|
14089
14088
|
{
|
|
14090
14089
|
"source": "npm:whatwg-encoding",
|
|
14091
|
-
"target": "npm:iconv-lite",
|
|
14090
|
+
"target": "npm:iconv-lite@0.6.3",
|
|
14092
14091
|
"type": "static"
|
|
14093
14092
|
}
|
|
14094
14093
|
],
|
|
@@ -14118,29 +14117,29 @@
|
|
|
14118
14117
|
"type": "static"
|
|
14119
14118
|
}
|
|
14120
14119
|
],
|
|
14121
|
-
"npm:which": [
|
|
14120
|
+
"npm:which@6.0.1": [
|
|
14122
14121
|
{
|
|
14123
|
-
"source": "npm:which",
|
|
14124
|
-
"target": "npm:isexe",
|
|
14122
|
+
"source": "npm:which@6.0.1",
|
|
14123
|
+
"target": "npm:isexe@4.0.0",
|
|
14125
14124
|
"type": "static"
|
|
14126
14125
|
}
|
|
14127
14126
|
],
|
|
14128
14127
|
"npm:widest-line": [
|
|
14129
14128
|
{
|
|
14130
14129
|
"source": "npm:widest-line",
|
|
14131
|
-
"target": "npm:string-width",
|
|
14130
|
+
"target": "npm:string-width@4.2.3",
|
|
14132
14131
|
"type": "static"
|
|
14133
14132
|
}
|
|
14134
14133
|
],
|
|
14135
14134
|
"npm:wrap-ansi@6.2.0": [
|
|
14136
14135
|
{
|
|
14137
14136
|
"source": "npm:wrap-ansi@6.2.0",
|
|
14138
|
-
"target": "npm:ansi-styles",
|
|
14137
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
14139
14138
|
"type": "static"
|
|
14140
14139
|
},
|
|
14141
14140
|
{
|
|
14142
14141
|
"source": "npm:wrap-ansi@6.2.0",
|
|
14143
|
-
"target": "npm:string-width",
|
|
14142
|
+
"target": "npm:string-width@4.2.3",
|
|
14144
14143
|
"type": "static"
|
|
14145
14144
|
},
|
|
14146
14145
|
{
|
|
@@ -14149,19 +14148,19 @@
|
|
|
14149
14148
|
"type": "static"
|
|
14150
14149
|
}
|
|
14151
14150
|
],
|
|
14152
|
-
"npm:wrap-ansi": [
|
|
14151
|
+
"npm:wrap-ansi@7.0.0": [
|
|
14153
14152
|
{
|
|
14154
|
-
"source": "npm:wrap-ansi",
|
|
14155
|
-
"target": "npm:ansi-styles",
|
|
14153
|
+
"source": "npm:wrap-ansi@7.0.0",
|
|
14154
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
14156
14155
|
"type": "static"
|
|
14157
14156
|
},
|
|
14158
14157
|
{
|
|
14159
|
-
"source": "npm:wrap-ansi",
|
|
14160
|
-
"target": "npm:string-width",
|
|
14158
|
+
"source": "npm:wrap-ansi@7.0.0",
|
|
14159
|
+
"target": "npm:string-width@4.2.3",
|
|
14161
14160
|
"type": "static"
|
|
14162
14161
|
},
|
|
14163
14162
|
{
|
|
14164
|
-
"source": "npm:wrap-ansi",
|
|
14163
|
+
"source": "npm:wrap-ansi@7.0.0",
|
|
14165
14164
|
"target": "npm:strip-ansi@6.0.1",
|
|
14166
14165
|
"type": "static"
|
|
14167
14166
|
}
|
|
@@ -14169,12 +14168,12 @@
|
|
|
14169
14168
|
"npm:wrap-ansi-cjs": [
|
|
14170
14169
|
{
|
|
14171
14170
|
"source": "npm:wrap-ansi-cjs",
|
|
14172
|
-
"target": "npm:ansi-styles",
|
|
14171
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
14173
14172
|
"type": "static"
|
|
14174
14173
|
},
|
|
14175
14174
|
{
|
|
14176
14175
|
"source": "npm:wrap-ansi-cjs",
|
|
14177
|
-
"target": "npm:string-width",
|
|
14176
|
+
"target": "npm:string-width@4.2.3",
|
|
14178
14177
|
"type": "static"
|
|
14179
14178
|
},
|
|
14180
14179
|
{
|
|
@@ -14196,7 +14195,7 @@
|
|
|
14196
14195
|
},
|
|
14197
14196
|
{
|
|
14198
14197
|
"source": "npm:wrap-ansi@8.1.0",
|
|
14199
|
-
"target": "npm:strip-ansi",
|
|
14198
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
14200
14199
|
"type": "static"
|
|
14201
14200
|
}
|
|
14202
14201
|
],
|
|
@@ -14213,7 +14212,7 @@
|
|
|
14213
14212
|
},
|
|
14214
14213
|
{
|
|
14215
14214
|
"source": "npm:write-file-atomic",
|
|
14216
|
-
"target": "npm:signal-exit",
|
|
14215
|
+
"target": "npm:signal-exit@3.0.7",
|
|
14217
14216
|
"type": "static"
|
|
14218
14217
|
},
|
|
14219
14218
|
{
|
|
@@ -14225,7 +14224,7 @@
|
|
|
14225
14224
|
"npm:yargs-unparser": [
|
|
14226
14225
|
{
|
|
14227
14226
|
"source": "npm:yargs-unparser",
|
|
14228
|
-
"target": "npm:camelcase",
|
|
14227
|
+
"target": "npm:camelcase@6.3.0",
|
|
14229
14228
|
"type": "static"
|
|
14230
14229
|
},
|
|
14231
14230
|
{
|
|
@@ -14267,7 +14266,7 @@
|
|
|
14267
14266
|
},
|
|
14268
14267
|
{
|
|
14269
14268
|
"source": "npm:yargs@16.2.2",
|
|
14270
|
-
"target": "npm:string-width",
|
|
14269
|
+
"target": "npm:string-width@4.2.3",
|
|
14271
14270
|
"type": "static"
|
|
14272
14271
|
},
|
|
14273
14272
|
{
|
|
@@ -14284,7 +14283,7 @@
|
|
|
14284
14283
|
"npm:yargs@17.7.2": [
|
|
14285
14284
|
{
|
|
14286
14285
|
"source": "npm:yargs@17.7.2",
|
|
14287
|
-
"target": "npm:cliui",
|
|
14286
|
+
"target": "npm:cliui@8.0.1",
|
|
14288
14287
|
"type": "static"
|
|
14289
14288
|
},
|
|
14290
14289
|
{
|
|
@@ -14304,7 +14303,7 @@
|
|
|
14304
14303
|
},
|
|
14305
14304
|
{
|
|
14306
14305
|
"source": "npm:yargs@17.7.2",
|
|
14307
|
-
"target": "npm:string-width",
|
|
14306
|
+
"target": "npm:string-width@4.2.3",
|
|
14308
14307
|
"type": "static"
|
|
14309
14308
|
},
|
|
14310
14309
|
{
|
|
@@ -14314,44 +14313,44 @@
|
|
|
14314
14313
|
},
|
|
14315
14314
|
{
|
|
14316
14315
|
"source": "npm:yargs@17.7.2",
|
|
14317
|
-
"target": "npm:yargs-parser",
|
|
14316
|
+
"target": "npm:yargs-parser@21.1.1",
|
|
14318
14317
|
"type": "static"
|
|
14319
14318
|
}
|
|
14320
14319
|
],
|
|
14321
|
-
"npm:yargs": [
|
|
14320
|
+
"npm:yargs@17.7.3": [
|
|
14322
14321
|
{
|
|
14323
|
-
"source": "npm:yargs",
|
|
14324
|
-
"target": "npm:cliui",
|
|
14322
|
+
"source": "npm:yargs@17.7.3",
|
|
14323
|
+
"target": "npm:cliui@8.0.1",
|
|
14325
14324
|
"type": "static"
|
|
14326
14325
|
},
|
|
14327
14326
|
{
|
|
14328
|
-
"source": "npm:yargs",
|
|
14327
|
+
"source": "npm:yargs@17.7.3",
|
|
14329
14328
|
"target": "npm:escalade",
|
|
14330
14329
|
"type": "static"
|
|
14331
14330
|
},
|
|
14332
14331
|
{
|
|
14333
|
-
"source": "npm:yargs",
|
|
14332
|
+
"source": "npm:yargs@17.7.3",
|
|
14334
14333
|
"target": "npm:get-caller-file",
|
|
14335
14334
|
"type": "static"
|
|
14336
14335
|
},
|
|
14337
14336
|
{
|
|
14338
|
-
"source": "npm:yargs",
|
|
14337
|
+
"source": "npm:yargs@17.7.3",
|
|
14339
14338
|
"target": "npm:require-directory",
|
|
14340
14339
|
"type": "static"
|
|
14341
14340
|
},
|
|
14342
14341
|
{
|
|
14343
|
-
"source": "npm:yargs",
|
|
14344
|
-
"target": "npm:string-width",
|
|
14342
|
+
"source": "npm:yargs@17.7.3",
|
|
14343
|
+
"target": "npm:string-width@4.2.3",
|
|
14345
14344
|
"type": "static"
|
|
14346
14345
|
},
|
|
14347
14346
|
{
|
|
14348
|
-
"source": "npm:yargs",
|
|
14347
|
+
"source": "npm:yargs@17.7.3",
|
|
14349
14348
|
"target": "npm:y18n",
|
|
14350
14349
|
"type": "static"
|
|
14351
14350
|
},
|
|
14352
14351
|
{
|
|
14353
|
-
"source": "npm:yargs",
|
|
14354
|
-
"target": "npm:yargs-parser",
|
|
14352
|
+
"source": "npm:yargs@17.7.3",
|
|
14353
|
+
"target": "npm:yargs-parser@21.1.1",
|
|
14355
14354
|
"type": "static"
|
|
14356
14355
|
}
|
|
14357
14356
|
],
|
|
@@ -14380,10 +14379,12 @@
|
|
|
14380
14379
|
},
|
|
14381
14380
|
{
|
|
14382
14381
|
"source": "npm:zip-stream",
|
|
14383
|
-
"target": "npm:readable-stream",
|
|
14382
|
+
"target": "npm:readable-stream@4.7.0",
|
|
14384
14383
|
"type": "static"
|
|
14385
14384
|
}
|
|
14386
14385
|
]
|
|
14387
14386
|
},
|
|
14388
|
-
"version": "6.0"
|
|
14387
|
+
"version": "6.0",
|
|
14388
|
+
"errors": [],
|
|
14389
|
+
"computedAt": 1789702670635
|
|
14389
14390
|
}
|