@testspectra/cli 1.1.8-rc.2 → 1.1.8-rc.20
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 +47 -0
- package/bin/spectra.js +0 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/__tests__/run-e2e.test.js +49 -49
- package/dist/commands/add.js +2 -1
- package/dist/commands/devices.js +1 -0
- package/dist/commands/doctor.js +1 -0
- package/dist/commands/init.js +150 -149
- package/dist/commands/install.js +2 -0
- package/dist/commands/license.js +1 -0
- package/dist/commands/test.js +5 -3
- package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
- package/dist/generator/__tests__/type-generator.test.js +38 -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 +11 -11
- 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 +5 -5
- package/dist/linter/schemas/spec.schema.d.ts +2 -2
- package/dist/linter/schemas/suite.schema.d.ts +4 -4
- package/dist/runner/bridge.js +53 -4
- package/package.json +34 -29
- 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/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 +6269 -1577
- package/templates/nx/.nx/workspace-data/file-map.json +129 -129
- 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 +535 -535
- package/templates/nx/.nx/workspace-data/project-graph.json +589 -590
- package/templates/nx/CLAUDE.md +10 -10
- package/templates/nx/package.json +2 -2
- 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 +52 -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 +28 -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 +22 -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 +28 -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 +27 -27
- package/templates/react-component/src/components/Badge/Badge.tsx +60 -60
- package/templates/react-component/src/components/Button/Button.tsx +57 -57
- package/templates/react-component/src/components/Input/Input.tsx +41 -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/d/server-process.json +0 -3
- /package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db} +0 -0
|
@@ -621,9 +621,9 @@
|
|
|
621
621
|
"hash": "sha512-HdNQYSdRTEBNrginaqzQtTjG0HRMfrra/z6Ok7uL3S87vSlarIVohEsJsSj5edu3MiHoHjAkvPROz5ZjoKai+w=="
|
|
622
622
|
}
|
|
623
623
|
},
|
|
624
|
-
"npm:@jest/schemas": {
|
|
624
|
+
"npm:@jest/schemas@29.6.3": {
|
|
625
625
|
"type": "npm",
|
|
626
|
-
"name": "npm:@jest/schemas",
|
|
626
|
+
"name": "npm:@jest/schemas@29.6.3",
|
|
627
627
|
"data": {
|
|
628
628
|
"version": "29.6.3",
|
|
629
629
|
"packageName": "@jest/schemas",
|
|
@@ -837,9 +837,9 @@
|
|
|
837
837
|
"hash": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA=="
|
|
838
838
|
}
|
|
839
839
|
},
|
|
840
|
-
"npm:@puppeteer/browsers": {
|
|
840
|
+
"npm:@puppeteer/browsers@2.13.2": {
|
|
841
841
|
"type": "npm",
|
|
842
|
-
"name": "npm:@puppeteer/browsers",
|
|
842
|
+
"name": "npm:@puppeteer/browsers@2.13.2",
|
|
843
843
|
"data": {
|
|
844
844
|
"version": "2.13.2",
|
|
845
845
|
"packageName": "@puppeteer/browsers",
|
|
@@ -855,9 +855,9 @@
|
|
|
855
855
|
"hash": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg=="
|
|
856
856
|
}
|
|
857
857
|
},
|
|
858
|
-
"npm:@sinclair/typebox": {
|
|
858
|
+
"npm:@sinclair/typebox@0.27.12": {
|
|
859
859
|
"type": "npm",
|
|
860
|
-
"name": "npm:@sinclair/typebox",
|
|
860
|
+
"name": "npm:@sinclair/typebox@0.27.12",
|
|
861
861
|
"data": {
|
|
862
862
|
"version": "0.27.12",
|
|
863
863
|
"packageName": "@sinclair/typebox",
|
|
@@ -882,9 +882,9 @@
|
|
|
882
882
|
"hash": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
|
|
883
883
|
}
|
|
884
884
|
},
|
|
885
|
-
"npm:@sindresorhus/is": {
|
|
885
|
+
"npm:@sindresorhus/is@5.6.0": {
|
|
886
886
|
"type": "npm",
|
|
887
|
-
"name": "npm:@sindresorhus/is",
|
|
887
|
+
"name": "npm:@sindresorhus/is@5.6.0",
|
|
888
888
|
"data": {
|
|
889
889
|
"version": "5.6.0",
|
|
890
890
|
"packageName": "@sindresorhus/is",
|
|
@@ -909,9 +909,9 @@
|
|
|
909
909
|
"hash": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="
|
|
910
910
|
}
|
|
911
911
|
},
|
|
912
|
-
"npm:@szmarczak/http-timer": {
|
|
912
|
+
"npm:@szmarczak/http-timer@5.0.1": {
|
|
913
913
|
"type": "npm",
|
|
914
|
-
"name": "npm:@szmarczak/http-timer",
|
|
914
|
+
"name": "npm:@szmarczak/http-timer@5.0.1",
|
|
915
915
|
"data": {
|
|
916
916
|
"version": "5.0.1",
|
|
917
917
|
"packageName": "@szmarczak/http-timer",
|
|
@@ -1098,9 +1098,9 @@
|
|
|
1098
1098
|
"hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q=="
|
|
1099
1099
|
}
|
|
1100
1100
|
},
|
|
1101
|
-
"npm:@vitest/pretty-format": {
|
|
1101
|
+
"npm:@vitest/pretty-format@2.1.9": {
|
|
1102
1102
|
"type": "npm",
|
|
1103
|
-
"name": "npm:@vitest/pretty-format",
|
|
1103
|
+
"name": "npm:@vitest/pretty-format@2.1.9",
|
|
1104
1104
|
"data": {
|
|
1105
1105
|
"version": "2.1.9",
|
|
1106
1106
|
"packageName": "@vitest/pretty-format",
|
|
@@ -1116,9 +1116,9 @@
|
|
|
1116
1116
|
"hash": "sha512-yiZzPbGTS9Sr/JpFl8zHrcIkAofNbFV6k21vIgQN/cY/oxZeXhJv5sc/MBJ5jFKWmWs+oJHw0UXLZjmf931+Vw=="
|
|
1117
1117
|
}
|
|
1118
1118
|
},
|
|
1119
|
-
"npm:@vitest/snapshot": {
|
|
1119
|
+
"npm:@vitest/snapshot@2.1.9": {
|
|
1120
1120
|
"type": "npm",
|
|
1121
|
-
"name": "npm:@vitest/snapshot",
|
|
1121
|
+
"name": "npm:@vitest/snapshot@2.1.9",
|
|
1122
1122
|
"data": {
|
|
1123
1123
|
"version": "2.1.9",
|
|
1124
1124
|
"packageName": "@vitest/snapshot",
|
|
@@ -1215,9 +1215,9 @@
|
|
|
1215
1215
|
"hash": "sha512-kcHL86RmNbcQP+Gq/vQUGlArfU6IIcbbnNp32rRIraitomZow+iEoc519rdQmSVusDozMS5DZthkgDdxK+vz6Q=="
|
|
1216
1216
|
}
|
|
1217
1217
|
},
|
|
1218
|
-
"npm:@wdio/logger": {
|
|
1218
|
+
"npm:@wdio/logger@9.29.1": {
|
|
1219
1219
|
"type": "npm",
|
|
1220
|
-
"name": "npm:@wdio/logger",
|
|
1220
|
+
"name": "npm:@wdio/logger@9.29.1",
|
|
1221
1221
|
"data": {
|
|
1222
1222
|
"version": "9.29.1",
|
|
1223
1223
|
"packageName": "@wdio/logger",
|
|
@@ -1242,9 +1242,9 @@
|
|
|
1242
1242
|
"hash": "sha512-Do+AW3xuDUHWkrX++LeMBSrX2yRILlDqunRHPMv4adGFEA45m7r4WP8wGCDb+chrHGhXq5TwB9Ne4J7x1dHGng=="
|
|
1243
1243
|
}
|
|
1244
1244
|
},
|
|
1245
|
-
"npm:@wdio/protocols": {
|
|
1245
|
+
"npm:@wdio/protocols@9.31.5": {
|
|
1246
1246
|
"type": "npm",
|
|
1247
|
-
"name": "npm:@wdio/protocols",
|
|
1247
|
+
"name": "npm:@wdio/protocols@9.31.5",
|
|
1248
1248
|
"data": {
|
|
1249
1249
|
"version": "9.31.5",
|
|
1250
1250
|
"packageName": "@wdio/protocols",
|
|
@@ -1260,9 +1260,9 @@
|
|
|
1260
1260
|
"hash": "sha512-mWEiBbaC7CgxvSd2/ozpbZWebnRIc8KRu/J81Hlw/txUWio27S7IpXBlZGVvhEsNzq0+cuxB/8gDkkXvMPbesw=="
|
|
1261
1261
|
}
|
|
1262
1262
|
},
|
|
1263
|
-
"npm:@wdio/repl": {
|
|
1263
|
+
"npm:@wdio/repl@9.16.2": {
|
|
1264
1264
|
"type": "npm",
|
|
1265
|
-
"name": "npm:@wdio/repl",
|
|
1265
|
+
"name": "npm:@wdio/repl@9.16.2",
|
|
1266
1266
|
"data": {
|
|
1267
1267
|
"version": "9.16.2",
|
|
1268
1268
|
"packageName": "@wdio/repl",
|
|
@@ -1386,9 +1386,9 @@
|
|
|
1386
1386
|
"hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
|
|
1387
1387
|
}
|
|
1388
1388
|
},
|
|
1389
|
-
"npm:agent-base": {
|
|
1389
|
+
"npm:agent-base@6.0.2": {
|
|
1390
1390
|
"type": "npm",
|
|
1391
|
-
"name": "npm:agent-base",
|
|
1391
|
+
"name": "npm:agent-base@6.0.2",
|
|
1392
1392
|
"data": {
|
|
1393
1393
|
"version": "6.0.2",
|
|
1394
1394
|
"packageName": "agent-base",
|
|
@@ -1422,9 +1422,9 @@
|
|
|
1422
1422
|
"hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw=="
|
|
1423
1423
|
}
|
|
1424
1424
|
},
|
|
1425
|
-
"npm:ansi-regex": {
|
|
1425
|
+
"npm:ansi-regex@5.0.1": {
|
|
1426
1426
|
"type": "npm",
|
|
1427
|
-
"name": "npm:ansi-regex",
|
|
1427
|
+
"name": "npm:ansi-regex@5.0.1",
|
|
1428
1428
|
"data": {
|
|
1429
1429
|
"version": "5.0.1",
|
|
1430
1430
|
"packageName": "ansi-regex",
|
|
@@ -1440,9 +1440,9 @@
|
|
|
1440
1440
|
"hash": "sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ=="
|
|
1441
1441
|
}
|
|
1442
1442
|
},
|
|
1443
|
-
"npm:ansi-styles": {
|
|
1443
|
+
"npm:ansi-styles@4.3.0": {
|
|
1444
1444
|
"type": "npm",
|
|
1445
|
-
"name": "npm:ansi-styles",
|
|
1445
|
+
"name": "npm:ansi-styles@4.3.0",
|
|
1446
1446
|
"data": {
|
|
1447
1447
|
"version": "4.3.0",
|
|
1448
1448
|
"packageName": "ansi-styles",
|
|
@@ -1512,9 +1512,9 @@
|
|
|
1512
1512
|
"hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
|
|
1513
1513
|
}
|
|
1514
1514
|
},
|
|
1515
|
-
"npm:argparse": {
|
|
1515
|
+
"npm:argparse@2.0.1": {
|
|
1516
1516
|
"type": "npm",
|
|
1517
|
-
"name": "npm:argparse",
|
|
1517
|
+
"name": "npm:argparse@2.0.1",
|
|
1518
1518
|
"data": {
|
|
1519
1519
|
"version": "2.0.1",
|
|
1520
1520
|
"packageName": "argparse",
|
|
@@ -1800,9 +1800,9 @@
|
|
|
1800
1800
|
"hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="
|
|
1801
1801
|
}
|
|
1802
1802
|
},
|
|
1803
|
-
"npm:buffer-crc32": {
|
|
1803
|
+
"npm:buffer-crc32@1.0.0": {
|
|
1804
1804
|
"type": "npm",
|
|
1805
|
-
"name": "npm:buffer-crc32",
|
|
1805
|
+
"name": "npm:buffer-crc32@1.0.0",
|
|
1806
1806
|
"data": {
|
|
1807
1807
|
"version": "1.0.0",
|
|
1808
1808
|
"packageName": "buffer-crc32",
|
|
@@ -1818,9 +1818,9 @@
|
|
|
1818
1818
|
"hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A=="
|
|
1819
1819
|
}
|
|
1820
1820
|
},
|
|
1821
|
-
"npm:buffer": {
|
|
1821
|
+
"npm:buffer@5.7.1": {
|
|
1822
1822
|
"type": "npm",
|
|
1823
|
-
"name": "npm:buffer",
|
|
1823
|
+
"name": "npm:buffer@5.7.1",
|
|
1824
1824
|
"data": {
|
|
1825
1825
|
"version": "5.7.1",
|
|
1826
1826
|
"packageName": "buffer",
|
|
@@ -1854,9 +1854,9 @@
|
|
|
1854
1854
|
"hash": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="
|
|
1855
1855
|
}
|
|
1856
1856
|
},
|
|
1857
|
-
"npm:cacheable-request": {
|
|
1857
|
+
"npm:cacheable-request@10.2.14": {
|
|
1858
1858
|
"type": "npm",
|
|
1859
|
-
"name": "npm:cacheable-request",
|
|
1859
|
+
"name": "npm:cacheable-request@10.2.14",
|
|
1860
1860
|
"data": {
|
|
1861
1861
|
"version": "10.2.14",
|
|
1862
1862
|
"packageName": "cacheable-request",
|
|
@@ -1890,9 +1890,9 @@
|
|
|
1890
1890
|
"hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
|
1891
1891
|
}
|
|
1892
1892
|
},
|
|
1893
|
-
"npm:camelcase": {
|
|
1893
|
+
"npm:camelcase@6.3.0": {
|
|
1894
1894
|
"type": "npm",
|
|
1895
|
-
"name": "npm:camelcase",
|
|
1895
|
+
"name": "npm:camelcase@6.3.0",
|
|
1896
1896
|
"data": {
|
|
1897
1897
|
"version": "6.3.0",
|
|
1898
1898
|
"packageName": "camelcase",
|
|
@@ -1935,9 +1935,9 @@
|
|
|
1935
1935
|
"hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
|
|
1936
1936
|
}
|
|
1937
1937
|
},
|
|
1938
|
-
"npm:chalk": {
|
|
1938
|
+
"npm:chalk@5.6.2": {
|
|
1939
1939
|
"type": "npm",
|
|
1940
|
-
"name": "npm:chalk",
|
|
1940
|
+
"name": "npm:chalk@5.6.2",
|
|
1941
1941
|
"data": {
|
|
1942
1942
|
"version": "5.6.2",
|
|
1943
1943
|
"packageName": "chalk",
|
|
@@ -1989,9 +1989,9 @@
|
|
|
1989
1989
|
"hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="
|
|
1990
1990
|
}
|
|
1991
1991
|
},
|
|
1992
|
-
"npm:chokidar": {
|
|
1992
|
+
"npm:chokidar@4.0.3": {
|
|
1993
1993
|
"type": "npm",
|
|
1994
|
-
"name": "npm:chokidar",
|
|
1994
|
+
"name": "npm:chokidar@4.0.3",
|
|
1995
1995
|
"data": {
|
|
1996
1996
|
"version": "4.0.3",
|
|
1997
1997
|
"packageName": "chokidar",
|
|
@@ -2079,9 +2079,9 @@
|
|
|
2079
2079
|
"hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="
|
|
2080
2080
|
}
|
|
2081
2081
|
},
|
|
2082
|
-
"npm:cliui": {
|
|
2082
|
+
"npm:cliui@8.0.1": {
|
|
2083
2083
|
"type": "npm",
|
|
2084
|
-
"name": "npm:cliui",
|
|
2084
|
+
"name": "npm:cliui@8.0.1",
|
|
2085
2085
|
"data": {
|
|
2086
2086
|
"version": "8.0.1",
|
|
2087
2087
|
"packageName": "cliui",
|
|
@@ -2331,9 +2331,9 @@
|
|
|
2331
2331
|
"hash": "sha512-7DYm8qe+gPx/h77QlCyFmX80+fGaE/6A/Ekl0zaszYOubvySO2saYFdQ78P29D0UsULxFKCetDGNaNRUdSF+2A=="
|
|
2332
2332
|
}
|
|
2333
2333
|
},
|
|
2334
|
-
"npm:data-uri-to-buffer": {
|
|
2334
|
+
"npm:data-uri-to-buffer@4.0.1": {
|
|
2335
2335
|
"type": "npm",
|
|
2336
|
-
"name": "npm:data-uri-to-buffer",
|
|
2336
|
+
"name": "npm:data-uri-to-buffer@4.0.1",
|
|
2337
2337
|
"data": {
|
|
2338
2338
|
"version": "4.0.1",
|
|
2339
2339
|
"packageName": "data-uri-to-buffer",
|
|
@@ -2367,9 +2367,9 @@
|
|
|
2367
2367
|
"hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
|
|
2368
2368
|
}
|
|
2369
2369
|
},
|
|
2370
|
-
"npm:debug": {
|
|
2370
|
+
"npm:debug@4.4.3": {
|
|
2371
2371
|
"type": "npm",
|
|
2372
|
-
"name": "npm:debug",
|
|
2372
|
+
"name": "npm:debug@4.4.3",
|
|
2373
2373
|
"data": {
|
|
2374
2374
|
"version": "4.4.3",
|
|
2375
2375
|
"packageName": "debug",
|
|
@@ -2385,9 +2385,9 @@
|
|
|
2385
2385
|
"hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ=="
|
|
2386
2386
|
}
|
|
2387
2387
|
},
|
|
2388
|
-
"npm:decamelize": {
|
|
2388
|
+
"npm:decamelize@6.0.1": {
|
|
2389
2389
|
"type": "npm",
|
|
2390
|
-
"name": "npm:decamelize",
|
|
2390
|
+
"name": "npm:decamelize@6.0.1",
|
|
2391
2391
|
"data": {
|
|
2392
2392
|
"version": "6.0.1",
|
|
2393
2393
|
"packageName": "decamelize",
|
|
@@ -2403,9 +2403,9 @@
|
|
|
2403
2403
|
"hash": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA=="
|
|
2404
2404
|
}
|
|
2405
2405
|
},
|
|
2406
|
-
"npm:decompress-response": {
|
|
2406
|
+
"npm:decompress-response@6.0.0": {
|
|
2407
2407
|
"type": "npm",
|
|
2408
|
-
"name": "npm:decompress-response",
|
|
2408
|
+
"name": "npm:decompress-response@6.0.0",
|
|
2409
2409
|
"data": {
|
|
2410
2410
|
"version": "6.0.0",
|
|
2411
2411
|
"packageName": "decompress-response",
|
|
@@ -2466,9 +2466,9 @@
|
|
|
2466
2466
|
"hash": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ=="
|
|
2467
2467
|
}
|
|
2468
2468
|
},
|
|
2469
|
-
"npm:defer-to-connect": {
|
|
2469
|
+
"npm:defer-to-connect@2.0.1": {
|
|
2470
2470
|
"type": "npm",
|
|
2471
|
-
"name": "npm:defer-to-connect",
|
|
2471
|
+
"name": "npm:defer-to-connect@2.0.1",
|
|
2472
2472
|
"data": {
|
|
2473
2473
|
"version": "2.0.1",
|
|
2474
2474
|
"packageName": "defer-to-connect",
|
|
@@ -2511,9 +2511,9 @@
|
|
|
2511
2511
|
"hash": "sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg=="
|
|
2512
2512
|
}
|
|
2513
2513
|
},
|
|
2514
|
-
"npm:devtools-protocol": {
|
|
2514
|
+
"npm:devtools-protocol@0.0.1400418": {
|
|
2515
2515
|
"type": "npm",
|
|
2516
|
-
"name": "npm:devtools-protocol",
|
|
2516
|
+
"name": "npm:devtools-protocol@0.0.1400418",
|
|
2517
2517
|
"data": {
|
|
2518
2518
|
"version": "0.0.1400418",
|
|
2519
2519
|
"packageName": "devtools-protocol",
|
|
@@ -2691,9 +2691,9 @@
|
|
|
2691
2691
|
"hash": "sha512-3Ve9cd5ziLByUdigw6zovVeWJjVs8QHVmqOB0sJ0WNeVPcwf4p18GnxMmVvlFmYRloUwf5suNuorea4QzwBIOA=="
|
|
2692
2692
|
}
|
|
2693
2693
|
},
|
|
2694
|
-
"npm:edgedriver": {
|
|
2694
|
+
"npm:edgedriver@6.3.0": {
|
|
2695
2695
|
"type": "npm",
|
|
2696
|
-
"name": "npm:edgedriver",
|
|
2696
|
+
"name": "npm:edgedriver@6.3.0",
|
|
2697
2697
|
"data": {
|
|
2698
2698
|
"version": "6.3.0",
|
|
2699
2699
|
"packageName": "edgedriver",
|
|
@@ -2718,9 +2718,9 @@
|
|
|
2718
2718
|
"hash": "sha512-UvA/32XqrLDdZSn7Jllo1AYNcWji/G0d5M0GTViE7KoGBiMunw3a34Sb2KO4ZZyrSEhqsxFoVhWWJshdyfKqJA=="
|
|
2719
2719
|
}
|
|
2720
2720
|
},
|
|
2721
|
-
"npm:emoji-regex": {
|
|
2721
|
+
"npm:emoji-regex@8.0.0": {
|
|
2722
2722
|
"type": "npm",
|
|
2723
|
-
"name": "npm:emoji-regex",
|
|
2723
|
+
"name": "npm:emoji-regex@8.0.0",
|
|
2724
2724
|
"data": {
|
|
2725
2725
|
"version": "8.0.0",
|
|
2726
2726
|
"packageName": "emoji-regex",
|
|
@@ -2754,9 +2754,9 @@
|
|
|
2754
2754
|
"hash": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg=="
|
|
2755
2755
|
}
|
|
2756
2756
|
},
|
|
2757
|
-
"npm:enquirer": {
|
|
2757
|
+
"npm:enquirer@2.3.6": {
|
|
2758
2758
|
"type": "npm",
|
|
2759
|
-
"name": "npm:enquirer",
|
|
2759
|
+
"name": "npm:enquirer@2.3.6",
|
|
2760
2760
|
"data": {
|
|
2761
2761
|
"version": "2.3.6",
|
|
2762
2762
|
"packageName": "enquirer",
|
|
@@ -2871,9 +2871,9 @@
|
|
|
2871
2871
|
"hash": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="
|
|
2872
2872
|
}
|
|
2873
2873
|
},
|
|
2874
|
-
"npm:escape-string-regexp": {
|
|
2874
|
+
"npm:escape-string-regexp@1.0.5": {
|
|
2875
2875
|
"type": "npm",
|
|
2876
|
-
"name": "npm:escape-string-regexp",
|
|
2876
|
+
"name": "npm:escape-string-regexp@1.0.5",
|
|
2877
2877
|
"data": {
|
|
2878
2878
|
"version": "1.0.5",
|
|
2879
2879
|
"packageName": "escape-string-regexp",
|
|
@@ -3069,9 +3069,9 @@
|
|
|
3069
3069
|
"hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ=="
|
|
3070
3070
|
}
|
|
3071
3071
|
},
|
|
3072
|
-
"npm:figures": {
|
|
3072
|
+
"npm:figures@3.2.0": {
|
|
3073
3073
|
"type": "npm",
|
|
3074
|
-
"name": "npm:figures",
|
|
3074
|
+
"name": "npm:figures@3.2.0",
|
|
3075
3075
|
"data": {
|
|
3076
3076
|
"version": "3.2.0",
|
|
3077
3077
|
"packageName": "figures",
|
|
@@ -3114,9 +3114,9 @@
|
|
|
3114
3114
|
"hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="
|
|
3115
3115
|
}
|
|
3116
3116
|
},
|
|
3117
|
-
"npm:find-up": {
|
|
3117
|
+
"npm:find-up@5.0.0": {
|
|
3118
3118
|
"type": "npm",
|
|
3119
|
-
"name": "npm:find-up",
|
|
3119
|
+
"name": "npm:find-up@5.0.0",
|
|
3120
3120
|
"data": {
|
|
3121
3121
|
"version": "5.0.0",
|
|
3122
3122
|
"packageName": "find-up",
|
|
@@ -3249,9 +3249,9 @@
|
|
|
3249
3249
|
"hash": "sha512-4m/CRk0OI8MaANRuFIahvOxYTSjlNAO2p9JmE14zxueknq6cdtB5M9UGRQ8R9aMV0bLGNVHHDnDXmoXdOwJfWg=="
|
|
3250
3250
|
}
|
|
3251
3251
|
},
|
|
3252
|
-
"npm:geckodriver": {
|
|
3252
|
+
"npm:geckodriver@6.1.1": {
|
|
3253
3253
|
"type": "npm",
|
|
3254
|
-
"name": "npm:geckodriver",
|
|
3254
|
+
"name": "npm:geckodriver@6.1.1",
|
|
3255
3255
|
"data": {
|
|
3256
3256
|
"version": "6.1.1",
|
|
3257
3257
|
"packageName": "geckodriver",
|
|
@@ -3330,9 +3330,9 @@
|
|
|
3330
3330
|
"hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="
|
|
3331
3331
|
}
|
|
3332
3332
|
},
|
|
3333
|
-
"npm:get-stream": {
|
|
3333
|
+
"npm:get-stream@6.0.1": {
|
|
3334
3334
|
"type": "npm",
|
|
3335
|
-
"name": "npm:get-stream",
|
|
3335
|
+
"name": "npm:get-stream@6.0.1",
|
|
3336
3336
|
"data": {
|
|
3337
3337
|
"version": "6.0.1",
|
|
3338
3338
|
"packageName": "get-stream",
|
|
@@ -3411,9 +3411,9 @@
|
|
|
3411
3411
|
"hash": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
|
|
3412
3412
|
}
|
|
3413
3413
|
},
|
|
3414
|
-
"npm:got": {
|
|
3414
|
+
"npm:got@12.6.1": {
|
|
3415
3415
|
"type": "npm",
|
|
3416
|
-
"name": "npm:got",
|
|
3416
|
+
"name": "npm:got@12.6.1",
|
|
3417
3417
|
"data": {
|
|
3418
3418
|
"version": "12.6.1",
|
|
3419
3419
|
"packageName": "got",
|
|
@@ -3582,9 +3582,9 @@
|
|
|
3582
3582
|
"hash": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ=="
|
|
3583
3583
|
}
|
|
3584
3584
|
},
|
|
3585
|
-
"npm:https-proxy-agent": {
|
|
3585
|
+
"npm:https-proxy-agent@5.0.1": {
|
|
3586
3586
|
"type": "npm",
|
|
3587
|
-
"name": "npm:https-proxy-agent",
|
|
3587
|
+
"name": "npm:https-proxy-agent@5.0.1",
|
|
3588
3588
|
"data": {
|
|
3589
3589
|
"version": "5.0.1",
|
|
3590
3590
|
"packageName": "https-proxy-agent",
|
|
@@ -3609,9 +3609,9 @@
|
|
|
3609
3609
|
"hash": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ=="
|
|
3610
3610
|
}
|
|
3611
3611
|
},
|
|
3612
|
-
"npm:iconv-lite": {
|
|
3612
|
+
"npm:iconv-lite@0.6.3": {
|
|
3613
3613
|
"type": "npm",
|
|
3614
|
-
"name": "npm:iconv-lite",
|
|
3614
|
+
"name": "npm:iconv-lite@0.6.3",
|
|
3615
3615
|
"data": {
|
|
3616
3616
|
"version": "0.6.3",
|
|
3617
3617
|
"packageName": "iconv-lite",
|
|
@@ -3717,9 +3717,9 @@
|
|
|
3717
3717
|
"hash": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ=="
|
|
3718
3718
|
}
|
|
3719
3719
|
},
|
|
3720
|
-
"npm:ini": {
|
|
3720
|
+
"npm:ini@1.3.8": {
|
|
3721
3721
|
"type": "npm",
|
|
3722
|
-
"name": "npm:ini",
|
|
3722
|
+
"name": "npm:ini@1.3.8",
|
|
3723
3723
|
"data": {
|
|
3724
3724
|
"version": "1.3.8",
|
|
3725
3725
|
"packageName": "ini",
|
|
@@ -3897,18 +3897,18 @@
|
|
|
3897
3897
|
"hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="
|
|
3898
3898
|
}
|
|
3899
3899
|
},
|
|
3900
|
-
"npm:is-plain-obj": {
|
|
3900
|
+
"npm:is-plain-obj@4.1.0": {
|
|
3901
3901
|
"type": "npm",
|
|
3902
|
-
"name": "npm:is-plain-obj",
|
|
3902
|
+
"name": "npm:is-plain-obj@4.1.0",
|
|
3903
3903
|
"data": {
|
|
3904
3904
|
"version": "4.1.0",
|
|
3905
3905
|
"packageName": "is-plain-obj",
|
|
3906
3906
|
"hash": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg=="
|
|
3907
3907
|
}
|
|
3908
3908
|
},
|
|
3909
|
-
"npm:is-stream": {
|
|
3909
|
+
"npm:is-stream@2.0.1": {
|
|
3910
3910
|
"type": "npm",
|
|
3911
|
-
"name": "npm:is-stream",
|
|
3911
|
+
"name": "npm:is-stream@2.0.1",
|
|
3912
3912
|
"data": {
|
|
3913
3913
|
"version": "2.0.1",
|
|
3914
3914
|
"packageName": "is-stream",
|
|
@@ -3942,9 +3942,9 @@
|
|
|
3942
3942
|
"hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="
|
|
3943
3943
|
}
|
|
3944
3944
|
},
|
|
3945
|
-
"npm:is-unicode-supported": {
|
|
3945
|
+
"npm:is-unicode-supported@2.1.0": {
|
|
3946
3946
|
"type": "npm",
|
|
3947
|
-
"name": "npm:is-unicode-supported",
|
|
3947
|
+
"name": "npm:is-unicode-supported@2.1.0",
|
|
3948
3948
|
"data": {
|
|
3949
3949
|
"version": "2.1.0",
|
|
3950
3950
|
"packageName": "is-unicode-supported",
|
|
@@ -3969,9 +3969,9 @@
|
|
|
3969
3969
|
"hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw=="
|
|
3970
3970
|
}
|
|
3971
3971
|
},
|
|
3972
|
-
"npm:is-wsl": {
|
|
3972
|
+
"npm:is-wsl@2.2.0": {
|
|
3973
3973
|
"type": "npm",
|
|
3974
|
-
"name": "npm:is-wsl",
|
|
3974
|
+
"name": "npm:is-wsl@2.2.0",
|
|
3975
3975
|
"data": {
|
|
3976
3976
|
"version": "2.2.0",
|
|
3977
3977
|
"packageName": "is-wsl",
|
|
@@ -4014,9 +4014,9 @@
|
|
|
4014
4014
|
"hash": "sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w=="
|
|
4015
4015
|
}
|
|
4016
4016
|
},
|
|
4017
|
-
"npm:isexe": {
|
|
4017
|
+
"npm:isexe@4.0.0": {
|
|
4018
4018
|
"type": "npm",
|
|
4019
|
-
"name": "npm:isexe",
|
|
4019
|
+
"name": "npm:isexe@4.0.0",
|
|
4020
4020
|
"data": {
|
|
4021
4021
|
"version": "4.0.0",
|
|
4022
4022
|
"packageName": "isexe",
|
|
@@ -4077,9 +4077,9 @@
|
|
|
4077
4077
|
"hash": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA=="
|
|
4078
4078
|
}
|
|
4079
4079
|
},
|
|
4080
|
-
"npm:jest-diff": {
|
|
4080
|
+
"npm:jest-diff@29.7.0": {
|
|
4081
4081
|
"type": "npm",
|
|
4082
|
-
"name": "npm:jest-diff",
|
|
4082
|
+
"name": "npm:jest-diff@29.7.0",
|
|
4083
4083
|
"data": {
|
|
4084
4084
|
"version": "29.7.0",
|
|
4085
4085
|
"packageName": "jest-diff",
|
|
@@ -4221,9 +4221,9 @@
|
|
|
4221
4221
|
"hash": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ=="
|
|
4222
4222
|
}
|
|
4223
4223
|
},
|
|
4224
|
-
"npm:json-buffer": {
|
|
4224
|
+
"npm:json-buffer@3.0.1": {
|
|
4225
4225
|
"type": "npm",
|
|
4226
|
-
"name": "npm:json-buffer",
|
|
4226
|
+
"name": "npm:json-buffer@3.0.1",
|
|
4227
4227
|
"data": {
|
|
4228
4228
|
"version": "3.0.1",
|
|
4229
4229
|
"packageName": "json-buffer",
|
|
@@ -4275,9 +4275,9 @@
|
|
|
4275
4275
|
"hash": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="
|
|
4276
4276
|
}
|
|
4277
4277
|
},
|
|
4278
|
-
"npm:keyv": {
|
|
4278
|
+
"npm:keyv@4.5.4": {
|
|
4279
4279
|
"type": "npm",
|
|
4280
|
-
"name": "npm:keyv",
|
|
4280
|
+
"name": "npm:keyv@4.5.4",
|
|
4281
4281
|
"data": {
|
|
4282
4282
|
"version": "4.5.4",
|
|
4283
4283
|
"packageName": "keyv",
|
|
@@ -4347,9 +4347,9 @@
|
|
|
4347
4347
|
"hash": "sha512-/H7aDL3//Gr0M1v8GGq6k0OTNty7nDVuU/o1cg6opYkfHRz1V3Nhydqz6aBzfXhUQx6iJRnxgRCPya+ZLA2vbg=="
|
|
4348
4348
|
}
|
|
4349
4349
|
},
|
|
4350
|
-
"npm:lines-and-columns": {
|
|
4350
|
+
"npm:lines-and-columns@2.0.3": {
|
|
4351
4351
|
"type": "npm",
|
|
4352
|
-
"name": "npm:lines-and-columns",
|
|
4352
|
+
"name": "npm:lines-and-columns@2.0.3",
|
|
4353
4353
|
"data": {
|
|
4354
4354
|
"version": "2.0.3",
|
|
4355
4355
|
"packageName": "lines-and-columns",
|
|
@@ -4392,9 +4392,9 @@
|
|
|
4392
4392
|
"hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="
|
|
4393
4393
|
}
|
|
4394
4394
|
},
|
|
4395
|
-
"npm:locate-path": {
|
|
4395
|
+
"npm:locate-path@6.0.0": {
|
|
4396
4396
|
"type": "npm",
|
|
4397
|
-
"name": "npm:locate-path",
|
|
4397
|
+
"name": "npm:locate-path@6.0.0",
|
|
4398
4398
|
"data": {
|
|
4399
4399
|
"version": "6.0.0",
|
|
4400
4400
|
"packageName": "locate-path",
|
|
@@ -4545,9 +4545,9 @@
|
|
|
4545
4545
|
"hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="
|
|
4546
4546
|
}
|
|
4547
4547
|
},
|
|
4548
|
-
"npm:lowercase-keys": {
|
|
4548
|
+
"npm:lowercase-keys@3.0.0": {
|
|
4549
4549
|
"type": "npm",
|
|
4550
|
-
"name": "npm:lowercase-keys",
|
|
4550
|
+
"name": "npm:lowercase-keys@3.0.0",
|
|
4551
4551
|
"data": {
|
|
4552
4552
|
"version": "3.0.0",
|
|
4553
4553
|
"packageName": "lowercase-keys",
|
|
@@ -4599,9 +4599,9 @@
|
|
|
4599
4599
|
"hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="
|
|
4600
4600
|
}
|
|
4601
4601
|
},
|
|
4602
|
-
"npm:make-dir": {
|
|
4602
|
+
"npm:make-dir@4.0.0": {
|
|
4603
4603
|
"type": "npm",
|
|
4604
|
-
"name": "npm:make-dir",
|
|
4604
|
+
"name": "npm:make-dir@4.0.0",
|
|
4605
4605
|
"data": {
|
|
4606
4606
|
"version": "4.0.0",
|
|
4607
4607
|
"packageName": "make-dir",
|
|
@@ -4689,9 +4689,9 @@
|
|
|
4689
4689
|
"hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="
|
|
4690
4690
|
}
|
|
4691
4691
|
},
|
|
4692
|
-
"npm:mimic-response": {
|
|
4692
|
+
"npm:mimic-response@4.0.0": {
|
|
4693
4693
|
"type": "npm",
|
|
4694
|
-
"name": "npm:mimic-response",
|
|
4694
|
+
"name": "npm:mimic-response@4.0.0",
|
|
4695
4695
|
"data": {
|
|
4696
4696
|
"version": "4.0.0",
|
|
4697
4697
|
"packageName": "mimic-response",
|
|
@@ -4815,9 +4815,9 @@
|
|
|
4815
4815
|
"hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
|
4816
4816
|
}
|
|
4817
4817
|
},
|
|
4818
|
-
"npm:ms": {
|
|
4818
|
+
"npm:ms@2.1.3": {
|
|
4819
4819
|
"type": "npm",
|
|
4820
|
-
"name": "npm:ms",
|
|
4820
|
+
"name": "npm:ms@2.1.3",
|
|
4821
4821
|
"data": {
|
|
4822
4822
|
"version": "2.1.3",
|
|
4823
4823
|
"packageName": "ms",
|
|
@@ -4851,9 +4851,9 @@
|
|
|
4851
4851
|
"hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ=="
|
|
4852
4852
|
}
|
|
4853
4853
|
},
|
|
4854
|
-
"npm:node-fetch": {
|
|
4854
|
+
"npm:node-fetch@2.7.0": {
|
|
4855
4855
|
"type": "npm",
|
|
4856
|
-
"name": "npm:node-fetch",
|
|
4856
|
+
"name": "npm:node-fetch@2.7.0",
|
|
4857
4857
|
"data": {
|
|
4858
4858
|
"version": "2.7.0",
|
|
4859
4859
|
"packageName": "node-fetch",
|
|
@@ -4896,9 +4896,9 @@
|
|
|
4896
4896
|
"hash": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g=="
|
|
4897
4897
|
}
|
|
4898
4898
|
},
|
|
4899
|
-
"npm:normalize-package-data": {
|
|
4899
|
+
"npm:normalize-package-data@7.0.1": {
|
|
4900
4900
|
"type": "npm",
|
|
4901
|
-
"name": "npm:normalize-package-data",
|
|
4901
|
+
"name": "npm:normalize-package-data@7.0.1",
|
|
4902
4902
|
"data": {
|
|
4903
4903
|
"version": "7.0.1",
|
|
4904
4904
|
"packageName": "normalize-package-data",
|
|
@@ -4923,18 +4923,18 @@
|
|
|
4923
4923
|
"hash": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="
|
|
4924
4924
|
}
|
|
4925
4925
|
},
|
|
4926
|
-
"npm:normalize-url": {
|
|
4926
|
+
"npm:normalize-url@8.1.1": {
|
|
4927
4927
|
"type": "npm",
|
|
4928
|
-
"name": "npm:normalize-url",
|
|
4928
|
+
"name": "npm:normalize-url@8.1.1",
|
|
4929
4929
|
"data": {
|
|
4930
4930
|
"version": "8.1.1",
|
|
4931
4931
|
"packageName": "normalize-url",
|
|
4932
4932
|
"hash": "sha512-JYc0DPlpGWB40kH5g07gGTrYuMqV653k3uBKY6uITPWds3M0ov3GaWGp9lbE3Bzngx8+XkfzgvASb9vk9JDFXQ=="
|
|
4933
4933
|
}
|
|
4934
4934
|
},
|
|
4935
|
-
"npm:npm-run-path": {
|
|
4935
|
+
"npm:npm-run-path@4.0.1": {
|
|
4936
4936
|
"type": "npm",
|
|
4937
|
-
"name": "npm:npm-run-path",
|
|
4937
|
+
"name": "npm:npm-run-path@4.0.1",
|
|
4938
4938
|
"data": {
|
|
4939
4939
|
"version": "4.0.1",
|
|
4940
4940
|
"packageName": "npm-run-path",
|
|
@@ -5004,9 +5004,9 @@
|
|
|
5004
5004
|
"hash": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg=="
|
|
5005
5005
|
}
|
|
5006
5006
|
},
|
|
5007
|
-
"npm:open": {
|
|
5007
|
+
"npm:open@8.4.2": {
|
|
5008
5008
|
"type": "npm",
|
|
5009
|
-
"name": "npm:open",
|
|
5009
|
+
"name": "npm:open@8.4.2",
|
|
5010
5010
|
"data": {
|
|
5011
5011
|
"version": "8.4.2",
|
|
5012
5012
|
"packageName": "open",
|
|
@@ -5031,9 +5031,9 @@
|
|
|
5031
5031
|
"hash": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="
|
|
5032
5032
|
}
|
|
5033
5033
|
},
|
|
5034
|
-
"npm:p-cancelable": {
|
|
5034
|
+
"npm:p-cancelable@3.0.0": {
|
|
5035
5035
|
"type": "npm",
|
|
5036
|
-
"name": "npm:p-cancelable",
|
|
5036
|
+
"name": "npm:p-cancelable@3.0.0",
|
|
5037
5037
|
"data": {
|
|
5038
5038
|
"version": "3.0.0",
|
|
5039
5039
|
"packageName": "p-cancelable",
|
|
@@ -5049,9 +5049,9 @@
|
|
|
5049
5049
|
"hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="
|
|
5050
5050
|
}
|
|
5051
5051
|
},
|
|
5052
|
-
"npm:p-limit": {
|
|
5052
|
+
"npm:p-limit@3.1.0": {
|
|
5053
5053
|
"type": "npm",
|
|
5054
|
-
"name": "npm:p-limit",
|
|
5054
|
+
"name": "npm:p-limit@3.1.0",
|
|
5055
5055
|
"data": {
|
|
5056
5056
|
"version": "3.1.0",
|
|
5057
5057
|
"packageName": "p-limit",
|
|
@@ -5076,9 +5076,9 @@
|
|
|
5076
5076
|
"hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="
|
|
5077
5077
|
}
|
|
5078
5078
|
},
|
|
5079
|
-
"npm:p-locate": {
|
|
5079
|
+
"npm:p-locate@5.0.0": {
|
|
5080
5080
|
"type": "npm",
|
|
5081
|
-
"name": "npm:p-locate",
|
|
5081
|
+
"name": "npm:p-locate@5.0.0",
|
|
5082
5082
|
"data": {
|
|
5083
5083
|
"version": "5.0.0",
|
|
5084
5084
|
"packageName": "p-locate",
|
|
@@ -5202,9 +5202,9 @@
|
|
|
5202
5202
|
"hash": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw=="
|
|
5203
5203
|
}
|
|
5204
5204
|
},
|
|
5205
|
-
"npm:path-exists": {
|
|
5205
|
+
"npm:path-exists@4.0.0": {
|
|
5206
5206
|
"type": "npm",
|
|
5207
|
-
"name": "npm:path-exists",
|
|
5207
|
+
"name": "npm:path-exists@4.0.0",
|
|
5208
5208
|
"data": {
|
|
5209
5209
|
"version": "4.0.0",
|
|
5210
5210
|
"packageName": "path-exists",
|
|
@@ -5238,9 +5238,9 @@
|
|
|
5238
5238
|
"hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
|
|
5239
5239
|
}
|
|
5240
5240
|
},
|
|
5241
|
-
"npm:path-key": {
|
|
5241
|
+
"npm:path-key@3.1.1": {
|
|
5242
5242
|
"type": "npm",
|
|
5243
|
-
"name": "npm:path-key",
|
|
5243
|
+
"name": "npm:path-key@3.1.1",
|
|
5244
5244
|
"data": {
|
|
5245
5245
|
"version": "3.1.1",
|
|
5246
5246
|
"packageName": "path-key",
|
|
@@ -5265,9 +5265,9 @@
|
|
|
5265
5265
|
"hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="
|
|
5266
5266
|
}
|
|
5267
5267
|
},
|
|
5268
|
-
"npm:pathe": {
|
|
5268
|
+
"npm:pathe@1.1.2": {
|
|
5269
5269
|
"type": "npm",
|
|
5270
|
-
"name": "npm:pathe",
|
|
5270
|
+
"name": "npm:pathe@1.1.2",
|
|
5271
5271
|
"data": {
|
|
5272
5272
|
"version": "1.1.2",
|
|
5273
5273
|
"packageName": "pathe",
|
|
@@ -5328,9 +5328,9 @@
|
|
|
5328
5328
|
"hash": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA=="
|
|
5329
5329
|
}
|
|
5330
5330
|
},
|
|
5331
|
-
"npm:pretty-format": {
|
|
5331
|
+
"npm:pretty-format@29.7.0": {
|
|
5332
5332
|
"type": "npm",
|
|
5333
|
-
"name": "npm:pretty-format",
|
|
5333
|
+
"name": "npm:pretty-format@29.7.0",
|
|
5334
5334
|
"data": {
|
|
5335
5335
|
"version": "29.7.0",
|
|
5336
5336
|
"packageName": "pretty-format",
|
|
@@ -5382,9 +5382,9 @@
|
|
|
5382
5382
|
"hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
|
|
5383
5383
|
}
|
|
5384
5384
|
},
|
|
5385
|
-
"npm:proxy-agent": {
|
|
5385
|
+
"npm:proxy-agent@6.3.1": {
|
|
5386
5386
|
"type": "npm",
|
|
5387
|
-
"name": "npm:proxy-agent",
|
|
5387
|
+
"name": "npm:proxy-agent@6.3.1",
|
|
5388
5388
|
"data": {
|
|
5389
5389
|
"version": "6.3.1",
|
|
5390
5390
|
"packageName": "proxy-agent",
|
|
@@ -5409,9 +5409,9 @@
|
|
|
5409
5409
|
"hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
|
|
5410
5410
|
}
|
|
5411
5411
|
},
|
|
5412
|
-
"npm:proxy-from-env": {
|
|
5412
|
+
"npm:proxy-from-env@2.1.0": {
|
|
5413
5413
|
"type": "npm",
|
|
5414
|
-
"name": "npm:proxy-from-env",
|
|
5414
|
+
"name": "npm:proxy-from-env@2.1.0",
|
|
5415
5415
|
"data": {
|
|
5416
5416
|
"version": "2.1.0",
|
|
5417
5417
|
"packageName": "proxy-from-env",
|
|
@@ -5499,9 +5499,9 @@
|
|
|
5499
5499
|
"hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="
|
|
5500
5500
|
}
|
|
5501
5501
|
},
|
|
5502
|
-
"npm:react-is": {
|
|
5502
|
+
"npm:react-is@18.3.1": {
|
|
5503
5503
|
"type": "npm",
|
|
5504
|
-
"name": "npm:react-is",
|
|
5504
|
+
"name": "npm:react-is@18.3.1",
|
|
5505
5505
|
"data": {
|
|
5506
5506
|
"version": "18.3.1",
|
|
5507
5507
|
"packageName": "react-is",
|
|
@@ -5571,9 +5571,9 @@
|
|
|
5571
5571
|
"hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="
|
|
5572
5572
|
}
|
|
5573
5573
|
},
|
|
5574
|
-
"npm:readable-stream": {
|
|
5574
|
+
"npm:readable-stream@4.7.0": {
|
|
5575
5575
|
"type": "npm",
|
|
5576
|
-
"name": "npm:readable-stream",
|
|
5576
|
+
"name": "npm:readable-stream@4.7.0",
|
|
5577
5577
|
"data": {
|
|
5578
5578
|
"version": "4.7.0",
|
|
5579
5579
|
"packageName": "readable-stream",
|
|
@@ -5598,9 +5598,9 @@
|
|
|
5598
5598
|
"hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="
|
|
5599
5599
|
}
|
|
5600
5600
|
},
|
|
5601
|
-
"npm:readdirp": {
|
|
5601
|
+
"npm:readdirp@4.1.2": {
|
|
5602
5602
|
"type": "npm",
|
|
5603
|
-
"name": "npm:readdirp",
|
|
5603
|
+
"name": "npm:readdirp@4.1.2",
|
|
5604
5604
|
"data": {
|
|
5605
5605
|
"version": "4.1.2",
|
|
5606
5606
|
"packageName": "readdirp",
|
|
@@ -5670,9 +5670,9 @@
|
|
|
5670
5670
|
"hash": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ=="
|
|
5671
5671
|
}
|
|
5672
5672
|
},
|
|
5673
|
-
"npm:responselike": {
|
|
5673
|
+
"npm:responselike@3.0.0": {
|
|
5674
5674
|
"type": "npm",
|
|
5675
|
-
"name": "npm:responselike",
|
|
5675
|
+
"name": "npm:responselike@3.0.0",
|
|
5676
5676
|
"data": {
|
|
5677
5677
|
"version": "3.0.0",
|
|
5678
5678
|
"packageName": "responselike",
|
|
@@ -5760,9 +5760,9 @@
|
|
|
5760
5760
|
"hash": "sha512-4R309+gWflJktzPXBQCobbWEHlzC4aK3a+Ov3tz2Ib2aBxiwd11phkdIBH1l0EO22x24CJMUQkpKFumRriCSRg=="
|
|
5761
5761
|
}
|
|
5762
5762
|
},
|
|
5763
|
-
"npm:safaridriver": {
|
|
5763
|
+
"npm:safaridriver@1.0.1": {
|
|
5764
5764
|
"type": "npm",
|
|
5765
|
-
"name": "npm:safaridriver",
|
|
5765
|
+
"name": "npm:safaridriver@1.0.1",
|
|
5766
5766
|
"data": {
|
|
5767
5767
|
"version": "1.0.1",
|
|
5768
5768
|
"packageName": "safaridriver",
|
|
@@ -5778,9 +5778,9 @@
|
|
|
5778
5778
|
"hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
|
5779
5779
|
}
|
|
5780
5780
|
},
|
|
5781
|
-
"npm:safe-buffer": {
|
|
5781
|
+
"npm:safe-buffer@5.2.1": {
|
|
5782
5782
|
"type": "npm",
|
|
5783
|
-
"name": "npm:safe-buffer",
|
|
5783
|
+
"name": "npm:safe-buffer@5.2.1",
|
|
5784
5784
|
"data": {
|
|
5785
5785
|
"version": "5.2.1",
|
|
5786
5786
|
"packageName": "safe-buffer",
|
|
@@ -5832,9 +5832,9 @@
|
|
|
5832
5832
|
"hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
5833
5833
|
}
|
|
5834
5834
|
},
|
|
5835
|
-
"npm:semver": {
|
|
5835
|
+
"npm:semver@7.8.5": {
|
|
5836
5836
|
"type": "npm",
|
|
5837
|
-
"name": "npm:semver",
|
|
5837
|
+
"name": "npm:semver@7.8.5",
|
|
5838
5838
|
"data": {
|
|
5839
5839
|
"version": "7.8.5",
|
|
5840
5840
|
"packageName": "semver",
|
|
@@ -5850,9 +5850,9 @@
|
|
|
5850
5850
|
"hash": "sha512-2G2y++21dhj2R7iHAdd0FIzjGwuKZld+7Pl/bTU6YIkrC2ZMbVUjm+luj6A6V34Rv9XfKJDKpTWu9W4Gse1D9g=="
|
|
5851
5851
|
}
|
|
5852
5852
|
},
|
|
5853
|
-
"npm:serialize-error": {
|
|
5853
|
+
"npm:serialize-error@12.0.0": {
|
|
5854
5854
|
"type": "npm",
|
|
5855
|
-
"name": "npm:serialize-error",
|
|
5855
|
+
"name": "npm:serialize-error@12.0.0",
|
|
5856
5856
|
"data": {
|
|
5857
5857
|
"version": "12.0.0",
|
|
5858
5858
|
"packageName": "serialize-error",
|
|
@@ -5895,9 +5895,9 @@
|
|
|
5895
5895
|
"hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
|
|
5896
5896
|
}
|
|
5897
5897
|
},
|
|
5898
|
-
"npm:signal-exit": {
|
|
5898
|
+
"npm:signal-exit@3.0.7": {
|
|
5899
5899
|
"type": "npm",
|
|
5900
|
-
"name": "npm:signal-exit",
|
|
5900
|
+
"name": "npm:signal-exit@3.0.7",
|
|
5901
5901
|
"data": {
|
|
5902
5902
|
"version": "3.0.7",
|
|
5903
5903
|
"packageName": "signal-exit",
|
|
@@ -6066,9 +6066,9 @@
|
|
|
6066
6066
|
"hash": "sha512-zEzXb0s5Cds7tqMH6rhZ05lcJydCWiQPEwiNngVqzsxCc962vLY4Uw+mW7od8kDH258k2Uz/JrOkdIAAhSh9VA=="
|
|
6067
6067
|
}
|
|
6068
6068
|
},
|
|
6069
|
-
"npm:string-width": {
|
|
6069
|
+
"npm:string-width@4.2.3": {
|
|
6070
6070
|
"type": "npm",
|
|
6071
|
-
"name": "npm:string-width",
|
|
6071
|
+
"name": "npm:string-width@4.2.3",
|
|
6072
6072
|
"data": {
|
|
6073
6073
|
"version": "4.2.3",
|
|
6074
6074
|
"packageName": "string-width",
|
|
@@ -6093,9 +6093,9 @@
|
|
|
6093
6093
|
"hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="
|
|
6094
6094
|
}
|
|
6095
6095
|
},
|
|
6096
|
-
"npm:string_decoder": {
|
|
6096
|
+
"npm:string_decoder@1.1.1": {
|
|
6097
6097
|
"type": "npm",
|
|
6098
|
-
"name": "npm:string_decoder",
|
|
6098
|
+
"name": "npm:string_decoder@1.1.1",
|
|
6099
6099
|
"data": {
|
|
6100
6100
|
"version": "1.1.1",
|
|
6101
6101
|
"packageName": "string_decoder",
|
|
@@ -6120,9 +6120,9 @@
|
|
|
6120
6120
|
"hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="
|
|
6121
6121
|
}
|
|
6122
6122
|
},
|
|
6123
|
-
"npm:strip-ansi": {
|
|
6123
|
+
"npm:strip-ansi@7.2.0": {
|
|
6124
6124
|
"type": "npm",
|
|
6125
|
-
"name": "npm:strip-ansi",
|
|
6125
|
+
"name": "npm:strip-ansi@7.2.0",
|
|
6126
6126
|
"data": {
|
|
6127
6127
|
"version": "7.2.0",
|
|
6128
6128
|
"packageName": "strip-ansi",
|
|
@@ -6165,9 +6165,9 @@
|
|
|
6165
6165
|
"hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="
|
|
6166
6166
|
}
|
|
6167
6167
|
},
|
|
6168
|
-
"npm:strip-json-comments": {
|
|
6168
|
+
"npm:strip-json-comments@3.1.1": {
|
|
6169
6169
|
"type": "npm",
|
|
6170
|
-
"name": "npm:strip-json-comments",
|
|
6170
|
+
"name": "npm:strip-json-comments@3.1.1",
|
|
6171
6171
|
"data": {
|
|
6172
6172
|
"version": "3.1.1",
|
|
6173
6173
|
"packageName": "strip-json-comments",
|
|
@@ -6201,9 +6201,9 @@
|
|
|
6201
6201
|
"hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA=="
|
|
6202
6202
|
}
|
|
6203
6203
|
},
|
|
6204
|
-
"npm:supports-color": {
|
|
6204
|
+
"npm:supports-color@7.2.0": {
|
|
6205
6205
|
"type": "npm",
|
|
6206
|
-
"name": "npm:supports-color",
|
|
6206
|
+
"name": "npm:supports-color@7.2.0",
|
|
6207
6207
|
"data": {
|
|
6208
6208
|
"version": "7.2.0",
|
|
6209
6209
|
"packageName": "supports-color",
|
|
@@ -6219,9 +6219,9 @@
|
|
|
6219
6219
|
"hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="
|
|
6220
6220
|
}
|
|
6221
6221
|
},
|
|
6222
|
-
"npm:tar-fs": {
|
|
6222
|
+
"npm:tar-fs@3.0.4": {
|
|
6223
6223
|
"type": "npm",
|
|
6224
|
-
"name": "npm:tar-fs",
|
|
6224
|
+
"name": "npm:tar-fs@3.0.4",
|
|
6225
6225
|
"data": {
|
|
6226
6226
|
"version": "3.0.4",
|
|
6227
6227
|
"packageName": "tar-fs",
|
|
@@ -6237,9 +6237,9 @@
|
|
|
6237
6237
|
"hash": "sha512-/hU4AXnIdZu+Gvl1pk0oI5f5HxWsCJRtY2aFaJdk9VvyL48DWU6iU5WAIPG+wIi1YvWA6eTJvIviP/tMAZZNwQ=="
|
|
6238
6238
|
}
|
|
6239
6239
|
},
|
|
6240
|
-
"npm:tar-stream": {
|
|
6240
|
+
"npm:tar-stream@2.2.0": {
|
|
6241
6241
|
"type": "npm",
|
|
6242
|
-
"name": "npm:tar-stream",
|
|
6242
|
+
"name": "npm:tar-stream@2.2.0",
|
|
6243
6243
|
"data": {
|
|
6244
6244
|
"version": "2.2.0",
|
|
6245
6245
|
"packageName": "tar-stream",
|
|
@@ -6318,9 +6318,9 @@
|
|
|
6318
6318
|
"hash": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA=="
|
|
6319
6319
|
}
|
|
6320
6320
|
},
|
|
6321
|
-
"npm:tinyrainbow": {
|
|
6321
|
+
"npm:tinyrainbow@1.2.0": {
|
|
6322
6322
|
"type": "npm",
|
|
6323
|
-
"name": "npm:tinyrainbow",
|
|
6323
|
+
"name": "npm:tinyrainbow@1.2.0",
|
|
6324
6324
|
"data": {
|
|
6325
6325
|
"version": "1.2.0",
|
|
6326
6326
|
"packageName": "tinyrainbow",
|
|
@@ -6444,9 +6444,9 @@
|
|
|
6444
6444
|
"hash": "sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw=="
|
|
6445
6445
|
}
|
|
6446
6446
|
},
|
|
6447
|
-
"npm:type-fest": {
|
|
6447
|
+
"npm:type-fest@4.41.0": {
|
|
6448
6448
|
"type": "npm",
|
|
6449
|
-
"name": "npm:type-fest",
|
|
6449
|
+
"name": "npm:type-fest@4.41.0",
|
|
6450
6450
|
"data": {
|
|
6451
6451
|
"version": "4.41.0",
|
|
6452
6452
|
"packageName": "type-fest",
|
|
@@ -6570,9 +6570,9 @@
|
|
|
6570
6570
|
"hash": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg=="
|
|
6571
6571
|
}
|
|
6572
6572
|
},
|
|
6573
|
-
"npm:urlpattern-polyfill": {
|
|
6573
|
+
"npm:urlpattern-polyfill@10.1.0": {
|
|
6574
6574
|
"type": "npm",
|
|
6575
|
-
"name": "npm:urlpattern-polyfill",
|
|
6575
|
+
"name": "npm:urlpattern-polyfill@10.1.0",
|
|
6576
6576
|
"data": {
|
|
6577
6577
|
"version": "10.1.0",
|
|
6578
6578
|
"packageName": "urlpattern-polyfill",
|
|
@@ -6669,9 +6669,9 @@
|
|
|
6669
6669
|
"hash": "sha512-SyrSVpygEdPzvgpapVZRQCy8XIOecadp56bPQewpfSfo9ypB6wdOUkx13NBu2ANDlUAtJX7KaLJpTtywVHNlVw=="
|
|
6670
6670
|
}
|
|
6671
6671
|
},
|
|
6672
|
-
"npm:webdriverio
|
|
6672
|
+
"npm:webdriverio": {
|
|
6673
6673
|
"type": "npm",
|
|
6674
|
-
"name": "npm:webdriverio
|
|
6674
|
+
"name": "npm:webdriverio",
|
|
6675
6675
|
"data": {
|
|
6676
6676
|
"version": "9.31.6",
|
|
6677
6677
|
"packageName": "webdriverio",
|
|
@@ -6732,9 +6732,9 @@
|
|
|
6732
6732
|
"hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="
|
|
6733
6733
|
}
|
|
6734
6734
|
},
|
|
6735
|
-
"npm:which": {
|
|
6735
|
+
"npm:which@6.0.1": {
|
|
6736
6736
|
"type": "npm",
|
|
6737
|
-
"name": "npm:which",
|
|
6737
|
+
"name": "npm:which@6.0.1",
|
|
6738
6738
|
"data": {
|
|
6739
6739
|
"version": "6.0.1",
|
|
6740
6740
|
"packageName": "which",
|
|
@@ -6768,9 +6768,9 @@
|
|
|
6768
6768
|
"hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="
|
|
6769
6769
|
}
|
|
6770
6770
|
},
|
|
6771
|
-
"npm:wrap-ansi": {
|
|
6771
|
+
"npm:wrap-ansi@7.0.0": {
|
|
6772
6772
|
"type": "npm",
|
|
6773
|
-
"name": "npm:wrap-ansi",
|
|
6773
|
+
"name": "npm:wrap-ansi@7.0.0",
|
|
6774
6774
|
"data": {
|
|
6775
6775
|
"version": "7.0.0",
|
|
6776
6776
|
"packageName": "wrap-ansi",
|
|
@@ -6885,9 +6885,9 @@
|
|
|
6885
6885
|
"hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
|
|
6886
6886
|
}
|
|
6887
6887
|
},
|
|
6888
|
-
"npm:yargs-parser": {
|
|
6888
|
+
"npm:yargs-parser@21.1.1": {
|
|
6889
6889
|
"type": "npm",
|
|
6890
|
-
"name": "npm:yargs-parser",
|
|
6890
|
+
"name": "npm:yargs-parser@21.1.1",
|
|
6891
6891
|
"data": {
|
|
6892
6892
|
"version": "21.1.1",
|
|
6893
6893
|
"packageName": "yargs-parser",
|
|
@@ -6921,9 +6921,9 @@
|
|
|
6921
6921
|
"hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="
|
|
6922
6922
|
}
|
|
6923
6923
|
},
|
|
6924
|
-
"npm:yargs": {
|
|
6924
|
+
"npm:yargs@17.7.3": {
|
|
6925
6925
|
"type": "npm",
|
|
6926
|
-
"name": "npm:yargs",
|
|
6926
|
+
"name": "npm:yargs@17.7.3",
|
|
6927
6927
|
"data": {
|
|
6928
6928
|
"version": "17.7.3",
|
|
6929
6929
|
"packageName": "yargs",
|
|
@@ -6939,9 +6939,9 @@
|
|
|
6939
6939
|
"hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g=="
|
|
6940
6940
|
}
|
|
6941
6941
|
},
|
|
6942
|
-
"npm:yocto-queue": {
|
|
6942
|
+
"npm:yocto-queue@0.1.0": {
|
|
6943
6943
|
"type": "npm",
|
|
6944
|
-
"name": "npm:yocto-queue",
|
|
6944
|
+
"name": "npm:yocto-queue@0.1.0",
|
|
6945
6945
|
"data": {
|
|
6946
6946
|
"version": "0.1.0",
|
|
6947
6947
|
"packageName": "yocto-queue",
|
|
@@ -7058,7 +7058,7 @@
|
|
|
7058
7058
|
},
|
|
7059
7059
|
{
|
|
7060
7060
|
"source": "npm:@babel/core",
|
|
7061
|
-
"target": "npm:debug",
|
|
7061
|
+
"target": "npm:debug@4.4.3",
|
|
7062
7062
|
"type": "static"
|
|
7063
7063
|
},
|
|
7064
7064
|
{
|
|
@@ -7218,7 +7218,7 @@
|
|
|
7218
7218
|
},
|
|
7219
7219
|
{
|
|
7220
7220
|
"source": "npm:@babel/traverse",
|
|
7221
|
-
"target": "npm:debug",
|
|
7221
|
+
"target": "npm:debug@4.4.3",
|
|
7222
7222
|
"type": "static"
|
|
7223
7223
|
},
|
|
7224
7224
|
{
|
|
@@ -7593,7 +7593,7 @@
|
|
|
7593
7593
|
},
|
|
7594
7594
|
{
|
|
7595
7595
|
"source": "npm:@isaacs/cliui",
|
|
7596
|
-
"target": "npm:strip-ansi",
|
|
7596
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
7597
7597
|
"type": "static"
|
|
7598
7598
|
},
|
|
7599
7599
|
{
|
|
@@ -7652,8 +7652,8 @@
|
|
|
7652
7652
|
"type": "static"
|
|
7653
7653
|
},
|
|
7654
7654
|
{
|
|
7655
|
-
"source": "npm:@jest/schemas",
|
|
7656
|
-
"target": "npm:@sinclair/typebox",
|
|
7655
|
+
"source": "npm:@jest/schemas@29.6.3",
|
|
7656
|
+
"target": "npm:@sinclair/typebox@0.27.12",
|
|
7657
7657
|
"type": "static"
|
|
7658
7658
|
},
|
|
7659
7659
|
{
|
|
@@ -7773,12 +7773,12 @@
|
|
|
7773
7773
|
},
|
|
7774
7774
|
{
|
|
7775
7775
|
"source": "npm:@puppeteer/browsers@1.9.1",
|
|
7776
|
-
"target": "npm:proxy-agent",
|
|
7776
|
+
"target": "npm:proxy-agent@6.3.1",
|
|
7777
7777
|
"type": "static"
|
|
7778
7778
|
},
|
|
7779
7779
|
{
|
|
7780
7780
|
"source": "npm:@puppeteer/browsers@1.9.1",
|
|
7781
|
-
"target": "npm:tar-fs",
|
|
7781
|
+
"target": "npm:tar-fs@3.0.4",
|
|
7782
7782
|
"type": "static"
|
|
7783
7783
|
},
|
|
7784
7784
|
{
|
|
@@ -7792,38 +7792,38 @@
|
|
|
7792
7792
|
"type": "static"
|
|
7793
7793
|
},
|
|
7794
7794
|
{
|
|
7795
|
-
"source": "npm:@puppeteer/browsers",
|
|
7796
|
-
"target": "npm:debug",
|
|
7795
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
7796
|
+
"target": "npm:debug@4.4.3",
|
|
7797
7797
|
"type": "static"
|
|
7798
7798
|
},
|
|
7799
7799
|
{
|
|
7800
|
-
"source": "npm:@puppeteer/browsers",
|
|
7800
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
7801
7801
|
"target": "npm:extract-zip",
|
|
7802
7802
|
"type": "static"
|
|
7803
7803
|
},
|
|
7804
7804
|
{
|
|
7805
|
-
"source": "npm:@puppeteer/browsers",
|
|
7805
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
7806
7806
|
"target": "npm:progress",
|
|
7807
7807
|
"type": "static"
|
|
7808
7808
|
},
|
|
7809
7809
|
{
|
|
7810
|
-
"source": "npm:@puppeteer/browsers",
|
|
7810
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
7811
7811
|
"target": "npm:proxy-agent@6.5.0",
|
|
7812
7812
|
"type": "static"
|
|
7813
7813
|
},
|
|
7814
7814
|
{
|
|
7815
|
-
"source": "npm:@puppeteer/browsers",
|
|
7816
|
-
"target": "npm:semver",
|
|
7815
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
7816
|
+
"target": "npm:semver@7.8.5",
|
|
7817
7817
|
"type": "static"
|
|
7818
7818
|
},
|
|
7819
7819
|
{
|
|
7820
|
-
"source": "npm:@puppeteer/browsers",
|
|
7820
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
7821
7821
|
"target": "npm:tar-fs@3.1.3",
|
|
7822
7822
|
"type": "static"
|
|
7823
7823
|
},
|
|
7824
7824
|
{
|
|
7825
|
-
"source": "npm:@puppeteer/browsers",
|
|
7826
|
-
"target": "npm:yargs",
|
|
7825
|
+
"source": "npm:@puppeteer/browsers@2.13.2",
|
|
7826
|
+
"target": "npm:yargs@17.7.3",
|
|
7827
7827
|
"type": "static"
|
|
7828
7828
|
},
|
|
7829
7829
|
{
|
|
@@ -7832,8 +7832,8 @@
|
|
|
7832
7832
|
"type": "static"
|
|
7833
7833
|
},
|
|
7834
7834
|
{
|
|
7835
|
-
"source": "npm:@szmarczak/http-timer",
|
|
7836
|
-
"target": "npm:defer-to-connect",
|
|
7835
|
+
"source": "npm:@szmarczak/http-timer@5.0.1",
|
|
7836
|
+
"target": "npm:defer-to-connect@2.0.1",
|
|
7837
7837
|
"type": "static"
|
|
7838
7838
|
},
|
|
7839
7839
|
{
|
|
@@ -7887,8 +7887,8 @@
|
|
|
7887
7887
|
"type": "static"
|
|
7888
7888
|
},
|
|
7889
7889
|
{
|
|
7890
|
-
"source": "npm:@vitest/pretty-format",
|
|
7891
|
-
"target": "npm:tinyrainbow",
|
|
7890
|
+
"source": "npm:@vitest/pretty-format@2.1.9",
|
|
7891
|
+
"target": "npm:tinyrainbow@1.2.0",
|
|
7892
7892
|
"type": "static"
|
|
7893
7893
|
},
|
|
7894
7894
|
{
|
|
@@ -7897,18 +7897,18 @@
|
|
|
7897
7897
|
"type": "static"
|
|
7898
7898
|
},
|
|
7899
7899
|
{
|
|
7900
|
-
"source": "npm:@vitest/snapshot",
|
|
7901
|
-
"target": "npm:@vitest/pretty-format",
|
|
7900
|
+
"source": "npm:@vitest/snapshot@2.1.9",
|
|
7901
|
+
"target": "npm:@vitest/pretty-format@2.1.9",
|
|
7902
7902
|
"type": "static"
|
|
7903
7903
|
},
|
|
7904
7904
|
{
|
|
7905
|
-
"source": "npm:@vitest/snapshot",
|
|
7905
|
+
"source": "npm:@vitest/snapshot@2.1.9",
|
|
7906
7906
|
"target": "npm:magic-string",
|
|
7907
7907
|
"type": "static"
|
|
7908
7908
|
},
|
|
7909
7909
|
{
|
|
7910
|
-
"source": "npm:@vitest/snapshot",
|
|
7911
|
-
"target": "npm:pathe",
|
|
7910
|
+
"source": "npm:@vitest/snapshot@2.1.9",
|
|
7911
|
+
"target": "npm:pathe@1.1.2",
|
|
7912
7912
|
"type": "static"
|
|
7913
7913
|
},
|
|
7914
7914
|
{
|
|
@@ -7948,7 +7948,7 @@
|
|
|
7948
7948
|
},
|
|
7949
7949
|
{
|
|
7950
7950
|
"source": "npm:@wdio/cli",
|
|
7951
|
-
"target": "npm:@vitest/snapshot",
|
|
7951
|
+
"target": "npm:@vitest/snapshot@2.1.9",
|
|
7952
7952
|
"type": "static"
|
|
7953
7953
|
},
|
|
7954
7954
|
{
|
|
@@ -7963,12 +7963,12 @@
|
|
|
7963
7963
|
},
|
|
7964
7964
|
{
|
|
7965
7965
|
"source": "npm:@wdio/cli",
|
|
7966
|
-
"target": "npm:@wdio/logger",
|
|
7966
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
7967
7967
|
"type": "static"
|
|
7968
7968
|
},
|
|
7969
7969
|
{
|
|
7970
7970
|
"source": "npm:@wdio/cli",
|
|
7971
|
-
"target": "npm:@wdio/protocols",
|
|
7971
|
+
"target": "npm:@wdio/protocols@9.31.5",
|
|
7972
7972
|
"type": "static"
|
|
7973
7973
|
},
|
|
7974
7974
|
{
|
|
@@ -7988,12 +7988,12 @@
|
|
|
7988
7988
|
},
|
|
7989
7989
|
{
|
|
7990
7990
|
"source": "npm:@wdio/cli",
|
|
7991
|
-
"target": "npm:chalk",
|
|
7991
|
+
"target": "npm:chalk@5.6.2",
|
|
7992
7992
|
"type": "static"
|
|
7993
7993
|
},
|
|
7994
7994
|
{
|
|
7995
7995
|
"source": "npm:@wdio/cli",
|
|
7996
|
-
"target": "npm:chokidar",
|
|
7996
|
+
"target": "npm:chokidar@4.0.3",
|
|
7997
7997
|
"type": "static"
|
|
7998
7998
|
},
|
|
7999
7999
|
{
|
|
@@ -8038,12 +8038,12 @@
|
|
|
8038
8038
|
},
|
|
8039
8039
|
{
|
|
8040
8040
|
"source": "npm:@wdio/cli",
|
|
8041
|
-
"target": "npm:webdriverio
|
|
8041
|
+
"target": "npm:webdriverio",
|
|
8042
8042
|
"type": "static"
|
|
8043
8043
|
},
|
|
8044
8044
|
{
|
|
8045
8045
|
"source": "npm:@wdio/cli",
|
|
8046
|
-
"target": "npm:yargs",
|
|
8046
|
+
"target": "npm:yargs@17.7.3",
|
|
8047
8047
|
"type": "static"
|
|
8048
8048
|
},
|
|
8049
8049
|
{
|
|
@@ -8063,7 +8063,7 @@
|
|
|
8063
8063
|
},
|
|
8064
8064
|
{
|
|
8065
8065
|
"source": "npm:@wdio/config@8.46.0",
|
|
8066
|
-
"target": "npm:decamelize",
|
|
8066
|
+
"target": "npm:decamelize@6.0.1",
|
|
8067
8067
|
"type": "static"
|
|
8068
8068
|
},
|
|
8069
8069
|
{
|
|
@@ -8083,7 +8083,7 @@
|
|
|
8083
8083
|
},
|
|
8084
8084
|
{
|
|
8085
8085
|
"source": "npm:@wdio/config@9.31.6",
|
|
8086
|
-
"target": "npm:@wdio/logger",
|
|
8086
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8087
8087
|
"type": "static"
|
|
8088
8088
|
},
|
|
8089
8089
|
{
|
|
@@ -8148,7 +8148,7 @@
|
|
|
8148
8148
|
},
|
|
8149
8149
|
{
|
|
8150
8150
|
"source": "npm:@wdio/devtools-service",
|
|
8151
|
-
"target": "npm:devtools-protocol",
|
|
8151
|
+
"target": "npm:devtools-protocol@0.0.1400418",
|
|
8152
8152
|
"type": "static"
|
|
8153
8153
|
},
|
|
8154
8154
|
{
|
|
@@ -8193,7 +8193,7 @@
|
|
|
8193
8193
|
},
|
|
8194
8194
|
{
|
|
8195
8195
|
"source": "npm:@wdio/dot-reporter",
|
|
8196
|
-
"target": "npm:chalk",
|
|
8196
|
+
"target": "npm:chalk@5.6.2",
|
|
8197
8197
|
"type": "static"
|
|
8198
8198
|
},
|
|
8199
8199
|
{
|
|
@@ -8203,7 +8203,7 @@
|
|
|
8203
8203
|
},
|
|
8204
8204
|
{
|
|
8205
8205
|
"source": "npm:@wdio/globals",
|
|
8206
|
-
"target": "npm:webdriverio
|
|
8206
|
+
"target": "npm:webdriverio",
|
|
8207
8207
|
"type": "static"
|
|
8208
8208
|
},
|
|
8209
8209
|
{
|
|
@@ -8213,12 +8213,12 @@
|
|
|
8213
8213
|
},
|
|
8214
8214
|
{
|
|
8215
8215
|
"source": "npm:@wdio/local-runner",
|
|
8216
|
-
"target": "npm:@wdio/logger",
|
|
8216
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8217
8217
|
"type": "static"
|
|
8218
8218
|
},
|
|
8219
8219
|
{
|
|
8220
8220
|
"source": "npm:@wdio/local-runner",
|
|
8221
|
-
"target": "npm:@wdio/repl",
|
|
8221
|
+
"target": "npm:@wdio/repl@9.16.2",
|
|
8222
8222
|
"type": "static"
|
|
8223
8223
|
},
|
|
8224
8224
|
{
|
|
@@ -8258,7 +8258,7 @@
|
|
|
8258
8258
|
},
|
|
8259
8259
|
{
|
|
8260
8260
|
"source": "npm:@wdio/logger@8.38.0",
|
|
8261
|
-
"target": "npm:chalk",
|
|
8261
|
+
"target": "npm:chalk@5.6.2",
|
|
8262
8262
|
"type": "static"
|
|
8263
8263
|
},
|
|
8264
8264
|
{
|
|
@@ -8273,32 +8273,32 @@
|
|
|
8273
8273
|
},
|
|
8274
8274
|
{
|
|
8275
8275
|
"source": "npm:@wdio/logger@8.38.0",
|
|
8276
|
-
"target": "npm:strip-ansi",
|
|
8276
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
8277
8277
|
"type": "static"
|
|
8278
8278
|
},
|
|
8279
8279
|
{
|
|
8280
|
-
"source": "npm:@wdio/logger",
|
|
8281
|
-
"target": "npm:chalk",
|
|
8280
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8281
|
+
"target": "npm:chalk@5.6.2",
|
|
8282
8282
|
"type": "static"
|
|
8283
8283
|
},
|
|
8284
8284
|
{
|
|
8285
|
-
"source": "npm:@wdio/logger",
|
|
8285
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8286
8286
|
"target": "npm:loglevel",
|
|
8287
8287
|
"type": "static"
|
|
8288
8288
|
},
|
|
8289
8289
|
{
|
|
8290
|
-
"source": "npm:@wdio/logger",
|
|
8290
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8291
8291
|
"target": "npm:loglevel-plugin-prefix",
|
|
8292
8292
|
"type": "static"
|
|
8293
8293
|
},
|
|
8294
8294
|
{
|
|
8295
|
-
"source": "npm:@wdio/logger",
|
|
8295
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8296
8296
|
"target": "npm:safe-regex2",
|
|
8297
8297
|
"type": "static"
|
|
8298
8298
|
},
|
|
8299
8299
|
{
|
|
8300
|
-
"source": "npm:@wdio/logger",
|
|
8301
|
-
"target": "npm:strip-ansi",
|
|
8300
|
+
"source": "npm:@wdio/logger@9.29.1",
|
|
8301
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
8302
8302
|
"type": "static"
|
|
8303
8303
|
},
|
|
8304
8304
|
{
|
|
@@ -8313,7 +8313,7 @@
|
|
|
8313
8313
|
},
|
|
8314
8314
|
{
|
|
8315
8315
|
"source": "npm:@wdio/mocha-framework",
|
|
8316
|
-
"target": "npm:@wdio/logger",
|
|
8316
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8317
8317
|
"type": "static"
|
|
8318
8318
|
},
|
|
8319
8319
|
{
|
|
@@ -8337,7 +8337,7 @@
|
|
|
8337
8337
|
"type": "static"
|
|
8338
8338
|
},
|
|
8339
8339
|
{
|
|
8340
|
-
"source": "npm:@wdio/repl",
|
|
8340
|
+
"source": "npm:@wdio/repl@9.16.2",
|
|
8341
8341
|
"target": "npm:@types/node",
|
|
8342
8342
|
"type": "static"
|
|
8343
8343
|
},
|
|
@@ -8348,7 +8348,7 @@
|
|
|
8348
8348
|
},
|
|
8349
8349
|
{
|
|
8350
8350
|
"source": "npm:@wdio/reporter",
|
|
8351
|
-
"target": "npm:@wdio/logger",
|
|
8351
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8352
8352
|
"type": "static"
|
|
8353
8353
|
},
|
|
8354
8354
|
{
|
|
@@ -8388,7 +8388,7 @@
|
|
|
8388
8388
|
},
|
|
8389
8389
|
{
|
|
8390
8390
|
"source": "npm:@wdio/runner",
|
|
8391
|
-
"target": "npm:@wdio/logger",
|
|
8391
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8392
8392
|
"type": "static"
|
|
8393
8393
|
},
|
|
8394
8394
|
{
|
|
@@ -8418,7 +8418,7 @@
|
|
|
8418
8418
|
},
|
|
8419
8419
|
{
|
|
8420
8420
|
"source": "npm:@wdio/runner",
|
|
8421
|
-
"target": "npm:webdriverio
|
|
8421
|
+
"target": "npm:webdriverio",
|
|
8422
8422
|
"type": "static"
|
|
8423
8423
|
},
|
|
8424
8424
|
{
|
|
@@ -8433,7 +8433,7 @@
|
|
|
8433
8433
|
},
|
|
8434
8434
|
{
|
|
8435
8435
|
"source": "npm:@wdio/spec-reporter",
|
|
8436
|
-
"target": "npm:chalk",
|
|
8436
|
+
"target": "npm:chalk@5.6.2",
|
|
8437
8437
|
"type": "static"
|
|
8438
8438
|
},
|
|
8439
8439
|
{
|
|
@@ -8473,7 +8473,7 @@
|
|
|
8473
8473
|
},
|
|
8474
8474
|
{
|
|
8475
8475
|
"source": "npm:@wdio/utils@8.46.0",
|
|
8476
|
-
"target": "npm:decamelize",
|
|
8476
|
+
"target": "npm:decamelize@6.0.1",
|
|
8477
8477
|
"type": "static"
|
|
8478
8478
|
},
|
|
8479
8479
|
{
|
|
@@ -8523,12 +8523,12 @@
|
|
|
8523
8523
|
},
|
|
8524
8524
|
{
|
|
8525
8525
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8526
|
-
"target": "npm:@puppeteer/browsers",
|
|
8526
|
+
"target": "npm:@puppeteer/browsers@2.13.2",
|
|
8527
8527
|
"type": "static"
|
|
8528
8528
|
},
|
|
8529
8529
|
{
|
|
8530
8530
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8531
|
-
"target": "npm:@wdio/logger",
|
|
8531
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8532
8532
|
"type": "static"
|
|
8533
8533
|
},
|
|
8534
8534
|
{
|
|
@@ -8538,7 +8538,7 @@
|
|
|
8538
8538
|
},
|
|
8539
8539
|
{
|
|
8540
8540
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8541
|
-
"target": "npm:decamelize",
|
|
8541
|
+
"target": "npm:decamelize@6.0.1",
|
|
8542
8542
|
"type": "static"
|
|
8543
8543
|
},
|
|
8544
8544
|
{
|
|
@@ -8548,12 +8548,12 @@
|
|
|
8548
8548
|
},
|
|
8549
8549
|
{
|
|
8550
8550
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8551
|
-
"target": "npm:edgedriver",
|
|
8551
|
+
"target": "npm:edgedriver@6.3.0",
|
|
8552
8552
|
"type": "static"
|
|
8553
8553
|
},
|
|
8554
8554
|
{
|
|
8555
8555
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8556
|
-
"target": "npm:geckodriver",
|
|
8556
|
+
"target": "npm:geckodriver@6.1.1",
|
|
8557
8557
|
"type": "static"
|
|
8558
8558
|
},
|
|
8559
8559
|
{
|
|
@@ -8578,7 +8578,7 @@
|
|
|
8578
8578
|
},
|
|
8579
8579
|
{
|
|
8580
8580
|
"source": "npm:@wdio/utils@9.31.6",
|
|
8581
|
-
"target": "npm:safaridriver",
|
|
8581
|
+
"target": "npm:safaridriver@1.0.1",
|
|
8582
8582
|
"type": "static"
|
|
8583
8583
|
},
|
|
8584
8584
|
{
|
|
@@ -8593,7 +8593,7 @@
|
|
|
8593
8593
|
},
|
|
8594
8594
|
{
|
|
8595
8595
|
"source": "npm:@wdio/xvfb",
|
|
8596
|
-
"target": "npm:@wdio/logger",
|
|
8596
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
8597
8597
|
"type": "static"
|
|
8598
8598
|
},
|
|
8599
8599
|
{
|
|
@@ -8608,7 +8608,7 @@
|
|
|
8608
8608
|
},
|
|
8609
8609
|
{
|
|
8610
8610
|
"source": "npm:@zkochan/js-yaml",
|
|
8611
|
-
"target": "npm:argparse",
|
|
8611
|
+
"target": "npm:argparse@2.0.1",
|
|
8612
8612
|
"type": "static"
|
|
8613
8613
|
},
|
|
8614
8614
|
{
|
|
@@ -8617,17 +8617,17 @@
|
|
|
8617
8617
|
"type": "static"
|
|
8618
8618
|
},
|
|
8619
8619
|
{
|
|
8620
|
-
"source": "npm:agent-base",
|
|
8621
|
-
"target": "npm:debug",
|
|
8620
|
+
"source": "npm:agent-base@6.0.2",
|
|
8621
|
+
"target": "npm:debug@4.4.3",
|
|
8622
8622
|
"type": "static"
|
|
8623
8623
|
},
|
|
8624
8624
|
{
|
|
8625
8625
|
"source": "npm:ansi-align",
|
|
8626
|
-
"target": "npm:string-width",
|
|
8626
|
+
"target": "npm:string-width@4.2.3",
|
|
8627
8627
|
"type": "static"
|
|
8628
8628
|
},
|
|
8629
8629
|
{
|
|
8630
|
-
"source": "npm:ansi-styles",
|
|
8630
|
+
"source": "npm:ansi-styles@4.3.0",
|
|
8631
8631
|
"target": "npm:color-convert",
|
|
8632
8632
|
"type": "static"
|
|
8633
8633
|
},
|
|
@@ -8653,7 +8653,7 @@
|
|
|
8653
8653
|
},
|
|
8654
8654
|
{
|
|
8655
8655
|
"source": "npm:archiver-utils",
|
|
8656
|
-
"target": "npm:is-stream",
|
|
8656
|
+
"target": "npm:is-stream@2.0.1",
|
|
8657
8657
|
"type": "static"
|
|
8658
8658
|
},
|
|
8659
8659
|
{
|
|
@@ -8673,7 +8673,7 @@
|
|
|
8673
8673
|
},
|
|
8674
8674
|
{
|
|
8675
8675
|
"source": "npm:archiver-utils",
|
|
8676
|
-
"target": "npm:readable-stream",
|
|
8676
|
+
"target": "npm:readable-stream@4.7.0",
|
|
8677
8677
|
"type": "static"
|
|
8678
8678
|
},
|
|
8679
8679
|
{
|
|
@@ -8688,12 +8688,12 @@
|
|
|
8688
8688
|
},
|
|
8689
8689
|
{
|
|
8690
8690
|
"source": "npm:archiver",
|
|
8691
|
-
"target": "npm:buffer-crc32",
|
|
8691
|
+
"target": "npm:buffer-crc32@1.0.0",
|
|
8692
8692
|
"type": "static"
|
|
8693
8693
|
},
|
|
8694
8694
|
{
|
|
8695
8695
|
"source": "npm:archiver",
|
|
8696
|
-
"target": "npm:readable-stream",
|
|
8696
|
+
"target": "npm:readable-stream@4.7.0",
|
|
8697
8697
|
"type": "static"
|
|
8698
8698
|
},
|
|
8699
8699
|
{
|
|
@@ -8733,12 +8733,12 @@
|
|
|
8733
8733
|
},
|
|
8734
8734
|
{
|
|
8735
8735
|
"source": "npm:axios",
|
|
8736
|
-
"target": "npm:https-proxy-agent",
|
|
8736
|
+
"target": "npm:https-proxy-agent@5.0.1",
|
|
8737
8737
|
"type": "static"
|
|
8738
8738
|
},
|
|
8739
8739
|
{
|
|
8740
8740
|
"source": "npm:axios",
|
|
8741
|
-
"target": "npm:proxy-from-env",
|
|
8741
|
+
"target": "npm:proxy-from-env@2.1.0",
|
|
8742
8742
|
"type": "static"
|
|
8743
8743
|
},
|
|
8744
8744
|
{
|
|
@@ -8828,7 +8828,7 @@
|
|
|
8828
8828
|
},
|
|
8829
8829
|
{
|
|
8830
8830
|
"source": "npm:bl",
|
|
8831
|
-
"target": "npm:buffer",
|
|
8831
|
+
"target": "npm:buffer@5.7.1",
|
|
8832
8832
|
"type": "static"
|
|
8833
8833
|
},
|
|
8834
8834
|
{
|
|
@@ -8863,7 +8863,7 @@
|
|
|
8863
8863
|
},
|
|
8864
8864
|
{
|
|
8865
8865
|
"source": "npm:boxen",
|
|
8866
|
-
"target": "npm:string-width",
|
|
8866
|
+
"target": "npm:string-width@4.2.3",
|
|
8867
8867
|
"type": "static"
|
|
8868
8868
|
},
|
|
8869
8869
|
{
|
|
@@ -8927,12 +8927,12 @@
|
|
|
8927
8927
|
"type": "static"
|
|
8928
8928
|
},
|
|
8929
8929
|
{
|
|
8930
|
-
"source": "npm:buffer",
|
|
8930
|
+
"source": "npm:buffer@5.7.1",
|
|
8931
8931
|
"target": "npm:base64-js",
|
|
8932
8932
|
"type": "static"
|
|
8933
8933
|
},
|
|
8934
8934
|
{
|
|
8935
|
-
"source": "npm:buffer",
|
|
8935
|
+
"source": "npm:buffer@5.7.1",
|
|
8936
8936
|
"target": "npm:ieee754",
|
|
8937
8937
|
"type": "static"
|
|
8938
8938
|
},
|
|
@@ -8947,38 +8947,38 @@
|
|
|
8947
8947
|
"type": "static"
|
|
8948
8948
|
},
|
|
8949
8949
|
{
|
|
8950
|
-
"source": "npm:cacheable-request",
|
|
8950
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
8951
8951
|
"target": "npm:@types/http-cache-semantics",
|
|
8952
8952
|
"type": "static"
|
|
8953
8953
|
},
|
|
8954
8954
|
{
|
|
8955
|
-
"source": "npm:cacheable-request",
|
|
8956
|
-
"target": "npm:get-stream",
|
|
8955
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
8956
|
+
"target": "npm:get-stream@6.0.1",
|
|
8957
8957
|
"type": "static"
|
|
8958
8958
|
},
|
|
8959
8959
|
{
|
|
8960
|
-
"source": "npm:cacheable-request",
|
|
8960
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
8961
8961
|
"target": "npm:http-cache-semantics",
|
|
8962
8962
|
"type": "static"
|
|
8963
8963
|
},
|
|
8964
8964
|
{
|
|
8965
|
-
"source": "npm:cacheable-request",
|
|
8966
|
-
"target": "npm:keyv",
|
|
8965
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
8966
|
+
"target": "npm:keyv@4.5.4",
|
|
8967
8967
|
"type": "static"
|
|
8968
8968
|
},
|
|
8969
8969
|
{
|
|
8970
|
-
"source": "npm:cacheable-request",
|
|
8971
|
-
"target": "npm:mimic-response",
|
|
8970
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
8971
|
+
"target": "npm:mimic-response@4.0.0",
|
|
8972
8972
|
"type": "static"
|
|
8973
8973
|
},
|
|
8974
8974
|
{
|
|
8975
|
-
"source": "npm:cacheable-request",
|
|
8976
|
-
"target": "npm:normalize-url",
|
|
8975
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
8976
|
+
"target": "npm:normalize-url@8.1.1",
|
|
8977
8977
|
"type": "static"
|
|
8978
8978
|
},
|
|
8979
8979
|
{
|
|
8980
|
-
"source": "npm:cacheable-request",
|
|
8981
|
-
"target": "npm:responselike",
|
|
8980
|
+
"source": "npm:cacheable-request@10.2.14",
|
|
8981
|
+
"target": "npm:responselike@3.0.0",
|
|
8982
8982
|
"type": "static"
|
|
8983
8983
|
},
|
|
8984
8984
|
{
|
|
@@ -9033,22 +9033,22 @@
|
|
|
9033
9033
|
},
|
|
9034
9034
|
{
|
|
9035
9035
|
"source": "npm:chalk@3.0.0",
|
|
9036
|
-
"target": "npm:ansi-styles",
|
|
9036
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
9037
9037
|
"type": "static"
|
|
9038
9038
|
},
|
|
9039
9039
|
{
|
|
9040
9040
|
"source": "npm:chalk@3.0.0",
|
|
9041
|
-
"target": "npm:supports-color",
|
|
9041
|
+
"target": "npm:supports-color@7.2.0",
|
|
9042
9042
|
"type": "static"
|
|
9043
9043
|
},
|
|
9044
9044
|
{
|
|
9045
9045
|
"source": "npm:chalk@4.1.2",
|
|
9046
|
-
"target": "npm:ansi-styles",
|
|
9046
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
9047
9047
|
"type": "static"
|
|
9048
9048
|
},
|
|
9049
9049
|
{
|
|
9050
9050
|
"source": "npm:chalk@4.1.2",
|
|
9051
|
-
"target": "npm:supports-color",
|
|
9051
|
+
"target": "npm:supports-color@7.2.0",
|
|
9052
9052
|
"type": "static"
|
|
9053
9053
|
},
|
|
9054
9054
|
{
|
|
@@ -9177,8 +9177,8 @@
|
|
|
9177
9177
|
"type": "static"
|
|
9178
9178
|
},
|
|
9179
9179
|
{
|
|
9180
|
-
"source": "npm:chokidar",
|
|
9181
|
-
"target": "npm:readdirp",
|
|
9180
|
+
"source": "npm:chokidar@4.0.3",
|
|
9181
|
+
"target": "npm:readdirp@4.1.2",
|
|
9182
9182
|
"type": "static"
|
|
9183
9183
|
},
|
|
9184
9184
|
{
|
|
@@ -9193,7 +9193,7 @@
|
|
|
9193
9193
|
},
|
|
9194
9194
|
{
|
|
9195
9195
|
"source": "npm:chrome-launcher",
|
|
9196
|
-
"target": "npm:is-wsl",
|
|
9196
|
+
"target": "npm:is-wsl@2.2.0",
|
|
9197
9197
|
"type": "static"
|
|
9198
9198
|
},
|
|
9199
9199
|
{
|
|
@@ -9223,7 +9223,7 @@
|
|
|
9223
9223
|
},
|
|
9224
9224
|
{
|
|
9225
9225
|
"source": "npm:cliui@7.0.4",
|
|
9226
|
-
"target": "npm:string-width",
|
|
9226
|
+
"target": "npm:string-width@4.2.3",
|
|
9227
9227
|
"type": "static"
|
|
9228
9228
|
},
|
|
9229
9229
|
{
|
|
@@ -9233,22 +9233,22 @@
|
|
|
9233
9233
|
},
|
|
9234
9234
|
{
|
|
9235
9235
|
"source": "npm:cliui@7.0.4",
|
|
9236
|
-
"target": "npm:wrap-ansi",
|
|
9236
|
+
"target": "npm:wrap-ansi@7.0.0",
|
|
9237
9237
|
"type": "static"
|
|
9238
9238
|
},
|
|
9239
9239
|
{
|
|
9240
|
-
"source": "npm:cliui",
|
|
9241
|
-
"target": "npm:string-width",
|
|
9240
|
+
"source": "npm:cliui@8.0.1",
|
|
9241
|
+
"target": "npm:string-width@4.2.3",
|
|
9242
9242
|
"type": "static"
|
|
9243
9243
|
},
|
|
9244
9244
|
{
|
|
9245
|
-
"source": "npm:cliui",
|
|
9245
|
+
"source": "npm:cliui@8.0.1",
|
|
9246
9246
|
"target": "npm:strip-ansi@6.0.1",
|
|
9247
9247
|
"type": "static"
|
|
9248
9248
|
},
|
|
9249
9249
|
{
|
|
9250
|
-
"source": "npm:cliui",
|
|
9251
|
-
"target": "npm:wrap-ansi",
|
|
9250
|
+
"source": "npm:cliui@8.0.1",
|
|
9251
|
+
"target": "npm:wrap-ansi@7.0.0",
|
|
9252
9252
|
"type": "static"
|
|
9253
9253
|
},
|
|
9254
9254
|
{
|
|
@@ -9278,7 +9278,7 @@
|
|
|
9278
9278
|
},
|
|
9279
9279
|
{
|
|
9280
9280
|
"source": "npm:compress-commons",
|
|
9281
|
-
"target": "npm:is-stream",
|
|
9281
|
+
"target": "npm:is-stream@2.0.1",
|
|
9282
9282
|
"type": "static"
|
|
9283
9283
|
},
|
|
9284
9284
|
{
|
|
@@ -9288,7 +9288,7 @@
|
|
|
9288
9288
|
},
|
|
9289
9289
|
{
|
|
9290
9290
|
"source": "npm:compress-commons",
|
|
9291
|
-
"target": "npm:readable-stream",
|
|
9291
|
+
"target": "npm:readable-stream@4.7.0",
|
|
9292
9292
|
"type": "static"
|
|
9293
9293
|
},
|
|
9294
9294
|
{
|
|
@@ -9328,12 +9328,12 @@
|
|
|
9328
9328
|
},
|
|
9329
9329
|
{
|
|
9330
9330
|
"source": "npm:crc32-stream",
|
|
9331
|
-
"target": "npm:readable-stream",
|
|
9331
|
+
"target": "npm:readable-stream@4.7.0",
|
|
9332
9332
|
"type": "static"
|
|
9333
9333
|
},
|
|
9334
9334
|
{
|
|
9335
9335
|
"source": "npm:create-wdio",
|
|
9336
|
-
"target": "npm:chalk",
|
|
9336
|
+
"target": "npm:chalk@5.6.2",
|
|
9337
9337
|
"type": "static"
|
|
9338
9338
|
},
|
|
9339
9339
|
{
|
|
@@ -9368,7 +9368,7 @@
|
|
|
9368
9368
|
},
|
|
9369
9369
|
{
|
|
9370
9370
|
"source": "npm:create-wdio",
|
|
9371
|
-
"target": "npm:normalize-package-data",
|
|
9371
|
+
"target": "npm:normalize-package-data@7.0.1",
|
|
9372
9372
|
"type": "static"
|
|
9373
9373
|
},
|
|
9374
9374
|
{
|
|
@@ -9383,27 +9383,27 @@
|
|
|
9383
9383
|
},
|
|
9384
9384
|
{
|
|
9385
9385
|
"source": "npm:create-wdio",
|
|
9386
|
-
"target": "npm:semver",
|
|
9386
|
+
"target": "npm:semver@7.8.5",
|
|
9387
9387
|
"type": "static"
|
|
9388
9388
|
},
|
|
9389
9389
|
{
|
|
9390
9390
|
"source": "npm:create-wdio",
|
|
9391
|
-
"target": "npm:type-fest",
|
|
9391
|
+
"target": "npm:type-fest@4.41.0",
|
|
9392
9392
|
"type": "static"
|
|
9393
9393
|
},
|
|
9394
9394
|
{
|
|
9395
9395
|
"source": "npm:create-wdio",
|
|
9396
|
-
"target": "npm:yargs",
|
|
9396
|
+
"target": "npm:yargs@17.7.3",
|
|
9397
9397
|
"type": "static"
|
|
9398
9398
|
},
|
|
9399
9399
|
{
|
|
9400
9400
|
"source": "npm:cross-fetch",
|
|
9401
|
-
"target": "npm:node-fetch",
|
|
9401
|
+
"target": "npm:node-fetch@2.7.0",
|
|
9402
9402
|
"type": "static"
|
|
9403
9403
|
},
|
|
9404
9404
|
{
|
|
9405
9405
|
"source": "npm:cross-spawn",
|
|
9406
|
-
"target": "npm:path-key",
|
|
9406
|
+
"target": "npm:path-key@3.1.1",
|
|
9407
9407
|
"type": "static"
|
|
9408
9408
|
},
|
|
9409
9409
|
{
|
|
@@ -9467,12 +9467,12 @@
|
|
|
9467
9467
|
"type": "static"
|
|
9468
9468
|
},
|
|
9469
9469
|
{
|
|
9470
|
-
"source": "npm:debug",
|
|
9471
|
-
"target": "npm:ms",
|
|
9470
|
+
"source": "npm:debug@4.4.3",
|
|
9471
|
+
"target": "npm:ms@2.1.3",
|
|
9472
9472
|
"type": "static"
|
|
9473
9473
|
},
|
|
9474
9474
|
{
|
|
9475
|
-
"source": "npm:debug",
|
|
9475
|
+
"source": "npm:debug@4.4.3",
|
|
9476
9476
|
"target": "npm:supports-color@8.1.1",
|
|
9477
9477
|
"type": "static"
|
|
9478
9478
|
},
|
|
@@ -9482,7 +9482,7 @@
|
|
|
9482
9482
|
"type": "static"
|
|
9483
9483
|
},
|
|
9484
9484
|
{
|
|
9485
|
-
"source": "npm:decompress-response",
|
|
9485
|
+
"source": "npm:decompress-response@6.0.0",
|
|
9486
9486
|
"target": "npm:mimic-response@3.1.0",
|
|
9487
9487
|
"type": "static"
|
|
9488
9488
|
},
|
|
@@ -9573,7 +9573,7 @@
|
|
|
9573
9573
|
},
|
|
9574
9574
|
{
|
|
9575
9575
|
"source": "npm:easy-table",
|
|
9576
|
-
"target": "npm:ansi-regex",
|
|
9576
|
+
"target": "npm:ansi-regex@5.0.1",
|
|
9577
9577
|
"type": "static"
|
|
9578
9578
|
},
|
|
9579
9579
|
{
|
|
@@ -9603,7 +9603,7 @@
|
|
|
9603
9603
|
},
|
|
9604
9604
|
{
|
|
9605
9605
|
"source": "npm:edgedriver@5.6.1",
|
|
9606
|
-
"target": "npm:decamelize",
|
|
9606
|
+
"target": "npm:decamelize@6.0.1",
|
|
9607
9607
|
"type": "static"
|
|
9608
9608
|
},
|
|
9609
9609
|
{
|
|
@@ -9627,43 +9627,43 @@
|
|
|
9627
9627
|
"type": "static"
|
|
9628
9628
|
},
|
|
9629
9629
|
{
|
|
9630
|
-
"source": "npm:edgedriver",
|
|
9631
|
-
"target": "npm:@wdio/logger",
|
|
9630
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9631
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
9632
9632
|
"type": "static"
|
|
9633
9633
|
},
|
|
9634
9634
|
{
|
|
9635
|
-
"source": "npm:edgedriver",
|
|
9635
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9636
9636
|
"target": "npm:@zip.js/zip.js",
|
|
9637
9637
|
"type": "static"
|
|
9638
9638
|
},
|
|
9639
9639
|
{
|
|
9640
|
-
"source": "npm:edgedriver",
|
|
9641
|
-
"target": "npm:decamelize",
|
|
9640
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9641
|
+
"target": "npm:decamelize@6.0.1",
|
|
9642
9642
|
"type": "static"
|
|
9643
9643
|
},
|
|
9644
9644
|
{
|
|
9645
|
-
"source": "npm:edgedriver",
|
|
9645
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9646
9646
|
"target": "npm:edge-paths",
|
|
9647
9647
|
"type": "static"
|
|
9648
9648
|
},
|
|
9649
9649
|
{
|
|
9650
|
-
"source": "npm:edgedriver",
|
|
9650
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9651
9651
|
"target": "npm:fast-xml-parser@5.11.1",
|
|
9652
9652
|
"type": "static"
|
|
9653
9653
|
},
|
|
9654
9654
|
{
|
|
9655
|
-
"source": "npm:edgedriver",
|
|
9655
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9656
9656
|
"target": "npm:http-proxy-agent",
|
|
9657
9657
|
"type": "static"
|
|
9658
9658
|
},
|
|
9659
9659
|
{
|
|
9660
|
-
"source": "npm:edgedriver",
|
|
9660
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9661
9661
|
"target": "npm:https-proxy-agent@7.0.6",
|
|
9662
9662
|
"type": "static"
|
|
9663
9663
|
},
|
|
9664
9664
|
{
|
|
9665
|
-
"source": "npm:edgedriver",
|
|
9666
|
-
"target": "npm:which",
|
|
9665
|
+
"source": "npm:edgedriver@6.3.0",
|
|
9666
|
+
"target": "npm:which@6.0.1",
|
|
9667
9667
|
"type": "static"
|
|
9668
9668
|
},
|
|
9669
9669
|
{
|
|
@@ -9673,7 +9673,7 @@
|
|
|
9673
9673
|
},
|
|
9674
9674
|
{
|
|
9675
9675
|
"source": "npm:encoding-sniffer",
|
|
9676
|
-
"target": "npm:iconv-lite",
|
|
9676
|
+
"target": "npm:iconv-lite@0.6.3",
|
|
9677
9677
|
"type": "static"
|
|
9678
9678
|
},
|
|
9679
9679
|
{
|
|
@@ -9687,7 +9687,7 @@
|
|
|
9687
9687
|
"type": "static"
|
|
9688
9688
|
},
|
|
9689
9689
|
{
|
|
9690
|
-
"source": "npm:enquirer",
|
|
9690
|
+
"source": "npm:enquirer@2.3.6",
|
|
9691
9691
|
"target": "npm:ansi-colors",
|
|
9692
9692
|
"type": "static"
|
|
9693
9693
|
},
|
|
@@ -9913,7 +9913,7 @@
|
|
|
9913
9913
|
},
|
|
9914
9914
|
{
|
|
9915
9915
|
"source": "npm:execa",
|
|
9916
|
-
"target": "npm:is-plain-obj",
|
|
9916
|
+
"target": "npm:is-plain-obj@4.1.0",
|
|
9917
9917
|
"type": "static"
|
|
9918
9918
|
},
|
|
9919
9919
|
{
|
|
@@ -9958,7 +9958,7 @@
|
|
|
9958
9958
|
},
|
|
9959
9959
|
{
|
|
9960
9960
|
"source": "npm:expect-webdriverio",
|
|
9961
|
-
"target": "npm:@wdio/logger",
|
|
9961
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
9962
9962
|
"type": "static"
|
|
9963
9963
|
},
|
|
9964
9964
|
{
|
|
@@ -9978,7 +9978,7 @@
|
|
|
9978
9978
|
},
|
|
9979
9979
|
{
|
|
9980
9980
|
"source": "npm:expect-webdriverio",
|
|
9981
|
-
"target": "npm:webdriverio
|
|
9981
|
+
"target": "npm:webdriverio",
|
|
9982
9982
|
"type": "static"
|
|
9983
9983
|
},
|
|
9984
9984
|
{
|
|
@@ -10013,7 +10013,7 @@
|
|
|
10013
10013
|
},
|
|
10014
10014
|
{
|
|
10015
10015
|
"source": "npm:extract-zip",
|
|
10016
|
-
"target": "npm:debug",
|
|
10016
|
+
"target": "npm:debug@4.4.3",
|
|
10017
10017
|
"type": "static"
|
|
10018
10018
|
},
|
|
10019
10019
|
{
|
|
@@ -10092,13 +10092,13 @@
|
|
|
10092
10092
|
"type": "static"
|
|
10093
10093
|
},
|
|
10094
10094
|
{
|
|
10095
|
-
"source": "npm:figures",
|
|
10096
|
-
"target": "npm:escape-string-regexp",
|
|
10095
|
+
"source": "npm:figures@3.2.0",
|
|
10096
|
+
"target": "npm:escape-string-regexp@1.0.5",
|
|
10097
10097
|
"type": "static"
|
|
10098
10098
|
},
|
|
10099
10099
|
{
|
|
10100
10100
|
"source": "npm:figures@6.1.0",
|
|
10101
|
-
"target": "npm:is-unicode-supported",
|
|
10101
|
+
"target": "npm:is-unicode-supported@2.1.0",
|
|
10102
10102
|
"type": "static"
|
|
10103
10103
|
},
|
|
10104
10104
|
{
|
|
@@ -10118,17 +10118,17 @@
|
|
|
10118
10118
|
},
|
|
10119
10119
|
{
|
|
10120
10120
|
"source": "npm:find-up@4.1.0",
|
|
10121
|
-
"target": "npm:path-exists",
|
|
10121
|
+
"target": "npm:path-exists@4.0.0",
|
|
10122
10122
|
"type": "static"
|
|
10123
10123
|
},
|
|
10124
10124
|
{
|
|
10125
|
-
"source": "npm:find-up",
|
|
10126
|
-
"target": "npm:locate-path",
|
|
10125
|
+
"source": "npm:find-up@5.0.0",
|
|
10126
|
+
"target": "npm:locate-path@6.0.0",
|
|
10127
10127
|
"type": "static"
|
|
10128
10128
|
},
|
|
10129
10129
|
{
|
|
10130
|
-
"source": "npm:find-up",
|
|
10131
|
-
"target": "npm:path-exists",
|
|
10130
|
+
"source": "npm:find-up@5.0.0",
|
|
10131
|
+
"target": "npm:path-exists@4.0.0",
|
|
10132
10132
|
"type": "static"
|
|
10133
10133
|
},
|
|
10134
10134
|
{
|
|
@@ -10143,7 +10143,7 @@
|
|
|
10143
10143
|
},
|
|
10144
10144
|
{
|
|
10145
10145
|
"source": "npm:follow-redirects",
|
|
10146
|
-
"target": "npm:debug",
|
|
10146
|
+
"target": "npm:debug@4.4.3",
|
|
10147
10147
|
"type": "static"
|
|
10148
10148
|
},
|
|
10149
10149
|
{
|
|
@@ -10218,7 +10218,7 @@
|
|
|
10218
10218
|
},
|
|
10219
10219
|
{
|
|
10220
10220
|
"source": "npm:geckodriver@4.2.1",
|
|
10221
|
-
"target": "npm:decamelize",
|
|
10221
|
+
"target": "npm:decamelize@6.0.1",
|
|
10222
10222
|
"type": "static"
|
|
10223
10223
|
},
|
|
10224
10224
|
{
|
|
@@ -10252,32 +10252,32 @@
|
|
|
10252
10252
|
"type": "static"
|
|
10253
10253
|
},
|
|
10254
10254
|
{
|
|
10255
|
-
"source": "npm:geckodriver",
|
|
10256
|
-
"target": "npm:@wdio/logger",
|
|
10255
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10256
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
10257
10257
|
"type": "static"
|
|
10258
10258
|
},
|
|
10259
10259
|
{
|
|
10260
|
-
"source": "npm:geckodriver",
|
|
10260
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10261
10261
|
"target": "npm:@zip.js/zip.js",
|
|
10262
10262
|
"type": "static"
|
|
10263
10263
|
},
|
|
10264
10264
|
{
|
|
10265
|
-
"source": "npm:geckodriver",
|
|
10266
|
-
"target": "npm:decamelize",
|
|
10265
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10266
|
+
"target": "npm:decamelize@6.0.1",
|
|
10267
10267
|
"type": "static"
|
|
10268
10268
|
},
|
|
10269
10269
|
{
|
|
10270
|
-
"source": "npm:geckodriver",
|
|
10270
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10271
10271
|
"target": "npm:http-proxy-agent",
|
|
10272
10272
|
"type": "static"
|
|
10273
10273
|
},
|
|
10274
10274
|
{
|
|
10275
|
-
"source": "npm:geckodriver",
|
|
10275
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10276
10276
|
"target": "npm:https-proxy-agent@7.0.6",
|
|
10277
10277
|
"type": "static"
|
|
10278
10278
|
},
|
|
10279
10279
|
{
|
|
10280
|
-
"source": "npm:geckodriver",
|
|
10280
|
+
"source": "npm:geckodriver@6.1.1",
|
|
10281
10281
|
"target": "npm:modern-tar",
|
|
10282
10282
|
"type": "static"
|
|
10283
10283
|
},
|
|
@@ -10373,7 +10373,7 @@
|
|
|
10373
10373
|
},
|
|
10374
10374
|
{
|
|
10375
10375
|
"source": "npm:get-uri",
|
|
10376
|
-
"target": "npm:debug",
|
|
10376
|
+
"target": "npm:debug@4.4.3",
|
|
10377
10377
|
"type": "static"
|
|
10378
10378
|
},
|
|
10379
10379
|
{
|
|
@@ -10472,58 +10472,58 @@
|
|
|
10472
10472
|
"type": "static"
|
|
10473
10473
|
},
|
|
10474
10474
|
{
|
|
10475
|
-
"source": "npm:got",
|
|
10476
|
-
"target": "npm:@sindresorhus/is",
|
|
10475
|
+
"source": "npm:got@12.6.1",
|
|
10476
|
+
"target": "npm:@sindresorhus/is@5.6.0",
|
|
10477
10477
|
"type": "static"
|
|
10478
10478
|
},
|
|
10479
10479
|
{
|
|
10480
|
-
"source": "npm:got",
|
|
10481
|
-
"target": "npm:@szmarczak/http-timer",
|
|
10480
|
+
"source": "npm:got@12.6.1",
|
|
10481
|
+
"target": "npm:@szmarczak/http-timer@5.0.1",
|
|
10482
10482
|
"type": "static"
|
|
10483
10483
|
},
|
|
10484
10484
|
{
|
|
10485
|
-
"source": "npm:got",
|
|
10485
|
+
"source": "npm:got@12.6.1",
|
|
10486
10486
|
"target": "npm:cacheable-lookup",
|
|
10487
10487
|
"type": "static"
|
|
10488
10488
|
},
|
|
10489
10489
|
{
|
|
10490
|
-
"source": "npm:got",
|
|
10491
|
-
"target": "npm:cacheable-request",
|
|
10490
|
+
"source": "npm:got@12.6.1",
|
|
10491
|
+
"target": "npm:cacheable-request@10.2.14",
|
|
10492
10492
|
"type": "static"
|
|
10493
10493
|
},
|
|
10494
10494
|
{
|
|
10495
|
-
"source": "npm:got",
|
|
10496
|
-
"target": "npm:decompress-response",
|
|
10495
|
+
"source": "npm:got@12.6.1",
|
|
10496
|
+
"target": "npm:decompress-response@6.0.0",
|
|
10497
10497
|
"type": "static"
|
|
10498
10498
|
},
|
|
10499
10499
|
{
|
|
10500
|
-
"source": "npm:got",
|
|
10500
|
+
"source": "npm:got@12.6.1",
|
|
10501
10501
|
"target": "npm:form-data-encoder",
|
|
10502
10502
|
"type": "static"
|
|
10503
10503
|
},
|
|
10504
10504
|
{
|
|
10505
|
-
"source": "npm:got",
|
|
10506
|
-
"target": "npm:get-stream",
|
|
10505
|
+
"source": "npm:got@12.6.1",
|
|
10506
|
+
"target": "npm:get-stream@6.0.1",
|
|
10507
10507
|
"type": "static"
|
|
10508
10508
|
},
|
|
10509
10509
|
{
|
|
10510
|
-
"source": "npm:got",
|
|
10510
|
+
"source": "npm:got@12.6.1",
|
|
10511
10511
|
"target": "npm:http2-wrapper",
|
|
10512
10512
|
"type": "static"
|
|
10513
10513
|
},
|
|
10514
10514
|
{
|
|
10515
|
-
"source": "npm:got",
|
|
10516
|
-
"target": "npm:lowercase-keys",
|
|
10515
|
+
"source": "npm:got@12.6.1",
|
|
10516
|
+
"target": "npm:lowercase-keys@3.0.0",
|
|
10517
10517
|
"type": "static"
|
|
10518
10518
|
},
|
|
10519
10519
|
{
|
|
10520
|
-
"source": "npm:got",
|
|
10521
|
-
"target": "npm:p-cancelable",
|
|
10520
|
+
"source": "npm:got@12.6.1",
|
|
10521
|
+
"target": "npm:p-cancelable@3.0.0",
|
|
10522
10522
|
"type": "static"
|
|
10523
10523
|
},
|
|
10524
10524
|
{
|
|
10525
|
-
"source": "npm:got",
|
|
10526
|
-
"target": "npm:responselike",
|
|
10525
|
+
"source": "npm:got@12.6.1",
|
|
10526
|
+
"target": "npm:responselike@3.0.0",
|
|
10527
10527
|
"type": "static"
|
|
10528
10528
|
},
|
|
10529
10529
|
{
|
|
@@ -10638,7 +10638,7 @@
|
|
|
10638
10638
|
},
|
|
10639
10639
|
{
|
|
10640
10640
|
"source": "npm:http-proxy-agent",
|
|
10641
|
-
"target": "npm:debug",
|
|
10641
|
+
"target": "npm:debug@4.4.3",
|
|
10642
10642
|
"type": "static"
|
|
10643
10643
|
},
|
|
10644
10644
|
{
|
|
@@ -10652,13 +10652,13 @@
|
|
|
10652
10652
|
"type": "static"
|
|
10653
10653
|
},
|
|
10654
10654
|
{
|
|
10655
|
-
"source": "npm:https-proxy-agent",
|
|
10656
|
-
"target": "npm:agent-base",
|
|
10655
|
+
"source": "npm:https-proxy-agent@5.0.1",
|
|
10656
|
+
"target": "npm:agent-base@6.0.2",
|
|
10657
10657
|
"type": "static"
|
|
10658
10658
|
},
|
|
10659
10659
|
{
|
|
10660
|
-
"source": "npm:https-proxy-agent",
|
|
10661
|
-
"target": "npm:debug",
|
|
10660
|
+
"source": "npm:https-proxy-agent@5.0.1",
|
|
10661
|
+
"target": "npm:debug@4.4.3",
|
|
10662
10662
|
"type": "static"
|
|
10663
10663
|
},
|
|
10664
10664
|
{
|
|
@@ -10668,11 +10668,11 @@
|
|
|
10668
10668
|
},
|
|
10669
10669
|
{
|
|
10670
10670
|
"source": "npm:https-proxy-agent@7.0.6",
|
|
10671
|
-
"target": "npm:debug",
|
|
10671
|
+
"target": "npm:debug@4.4.3",
|
|
10672
10672
|
"type": "static"
|
|
10673
10673
|
},
|
|
10674
10674
|
{
|
|
10675
|
-
"source": "npm:iconv-lite",
|
|
10675
|
+
"source": "npm:iconv-lite@0.6.3",
|
|
10676
10676
|
"target": "npm:safer-buffer",
|
|
10677
10677
|
"type": "static"
|
|
10678
10678
|
},
|
|
@@ -10762,7 +10762,7 @@
|
|
|
10762
10762
|
"type": "static"
|
|
10763
10763
|
},
|
|
10764
10764
|
{
|
|
10765
|
-
"source": "npm:is-wsl",
|
|
10765
|
+
"source": "npm:is-wsl@2.2.0",
|
|
10766
10766
|
"target": "npm:is-docker",
|
|
10767
10767
|
"type": "static"
|
|
10768
10768
|
},
|
|
@@ -10788,7 +10788,7 @@
|
|
|
10788
10788
|
},
|
|
10789
10789
|
{
|
|
10790
10790
|
"source": "npm:istanbul-lib-instrument",
|
|
10791
|
-
"target": "npm:semver",
|
|
10791
|
+
"target": "npm:semver@7.8.5",
|
|
10792
10792
|
"type": "static"
|
|
10793
10793
|
},
|
|
10794
10794
|
{
|
|
@@ -10798,12 +10798,12 @@
|
|
|
10798
10798
|
},
|
|
10799
10799
|
{
|
|
10800
10800
|
"source": "npm:istanbul-lib-report",
|
|
10801
|
-
"target": "npm:make-dir",
|
|
10801
|
+
"target": "npm:make-dir@4.0.0",
|
|
10802
10802
|
"type": "static"
|
|
10803
10803
|
},
|
|
10804
10804
|
{
|
|
10805
10805
|
"source": "npm:istanbul-lib-report",
|
|
10806
|
-
"target": "npm:supports-color",
|
|
10806
|
+
"target": "npm:supports-color@7.2.0",
|
|
10807
10807
|
"type": "static"
|
|
10808
10808
|
},
|
|
10809
10809
|
{
|
|
@@ -10842,23 +10842,23 @@
|
|
|
10842
10842
|
"type": "static"
|
|
10843
10843
|
},
|
|
10844
10844
|
{
|
|
10845
|
-
"source": "npm:jest-diff",
|
|
10845
|
+
"source": "npm:jest-diff@29.7.0",
|
|
10846
10846
|
"target": "npm:chalk@4.1.2",
|
|
10847
10847
|
"type": "static"
|
|
10848
10848
|
},
|
|
10849
10849
|
{
|
|
10850
|
-
"source": "npm:jest-diff",
|
|
10850
|
+
"source": "npm:jest-diff@29.7.0",
|
|
10851
10851
|
"target": "npm:diff-sequences",
|
|
10852
10852
|
"type": "static"
|
|
10853
10853
|
},
|
|
10854
10854
|
{
|
|
10855
|
-
"source": "npm:jest-diff",
|
|
10855
|
+
"source": "npm:jest-diff@29.7.0",
|
|
10856
10856
|
"target": "npm:jest-get-type",
|
|
10857
10857
|
"type": "static"
|
|
10858
10858
|
},
|
|
10859
10859
|
{
|
|
10860
|
-
"source": "npm:jest-diff",
|
|
10861
|
-
"target": "npm:pretty-format",
|
|
10860
|
+
"source": "npm:jest-diff@29.7.0",
|
|
10861
|
+
"target": "npm:pretty-format@29.7.0",
|
|
10862
10862
|
"type": "static"
|
|
10863
10863
|
},
|
|
10864
10864
|
{
|
|
@@ -11013,7 +11013,7 @@
|
|
|
11013
11013
|
},
|
|
11014
11014
|
{
|
|
11015
11015
|
"source": "npm:js-yaml@4.3.2",
|
|
11016
|
-
"target": "npm:argparse",
|
|
11016
|
+
"target": "npm:argparse@2.0.1",
|
|
11017
11017
|
"type": "static"
|
|
11018
11018
|
},
|
|
11019
11019
|
{
|
|
@@ -11042,8 +11042,8 @@
|
|
|
11042
11042
|
"type": "static"
|
|
11043
11043
|
},
|
|
11044
11044
|
{
|
|
11045
|
-
"source": "npm:keyv",
|
|
11046
|
-
"target": "npm:json-buffer",
|
|
11045
|
+
"source": "npm:keyv@4.5.4",
|
|
11046
|
+
"target": "npm:json-buffer@3.0.1",
|
|
11047
11047
|
"type": "static"
|
|
11048
11048
|
},
|
|
11049
11049
|
{
|
|
@@ -11242,8 +11242,8 @@
|
|
|
11242
11242
|
"type": "static"
|
|
11243
11243
|
},
|
|
11244
11244
|
{
|
|
11245
|
-
"source": "npm:locate-path",
|
|
11246
|
-
"target": "npm:p-locate",
|
|
11245
|
+
"source": "npm:locate-path@6.0.0",
|
|
11246
|
+
"target": "npm:p-locate@5.0.0",
|
|
11247
11247
|
"type": "static"
|
|
11248
11248
|
},
|
|
11249
11249
|
{
|
|
@@ -11277,8 +11277,8 @@
|
|
|
11277
11277
|
"type": "static"
|
|
11278
11278
|
},
|
|
11279
11279
|
{
|
|
11280
|
-
"source": "npm:make-dir",
|
|
11281
|
-
"target": "npm:semver",
|
|
11280
|
+
"source": "npm:make-dir@4.0.0",
|
|
11281
|
+
"target": "npm:semver@7.8.5",
|
|
11282
11282
|
"type": "static"
|
|
11283
11283
|
},
|
|
11284
11284
|
{
|
|
@@ -11343,7 +11343,7 @@
|
|
|
11343
11343
|
},
|
|
11344
11344
|
{
|
|
11345
11345
|
"source": "npm:mocha",
|
|
11346
|
-
"target": "npm:debug",
|
|
11346
|
+
"target": "npm:debug@4.4.3",
|
|
11347
11347
|
"type": "static"
|
|
11348
11348
|
},
|
|
11349
11349
|
{
|
|
@@ -11358,7 +11358,7 @@
|
|
|
11358
11358
|
},
|
|
11359
11359
|
{
|
|
11360
11360
|
"source": "npm:mocha",
|
|
11361
|
-
"target": "npm:find-up",
|
|
11361
|
+
"target": "npm:find-up@5.0.0",
|
|
11362
11362
|
"type": "static"
|
|
11363
11363
|
},
|
|
11364
11364
|
{
|
|
@@ -11388,7 +11388,7 @@
|
|
|
11388
11388
|
},
|
|
11389
11389
|
{
|
|
11390
11390
|
"source": "npm:mocha",
|
|
11391
|
-
"target": "npm:ms",
|
|
11391
|
+
"target": "npm:ms@2.1.3",
|
|
11392
11392
|
"type": "static"
|
|
11393
11393
|
},
|
|
11394
11394
|
{
|
|
@@ -11398,7 +11398,7 @@
|
|
|
11398
11398
|
},
|
|
11399
11399
|
{
|
|
11400
11400
|
"source": "npm:mocha",
|
|
11401
|
-
"target": "npm:strip-json-comments",
|
|
11401
|
+
"target": "npm:strip-json-comments@3.1.1",
|
|
11402
11402
|
"type": "static"
|
|
11403
11403
|
},
|
|
11404
11404
|
{
|
|
@@ -11427,13 +11427,13 @@
|
|
|
11427
11427
|
"type": "static"
|
|
11428
11428
|
},
|
|
11429
11429
|
{
|
|
11430
|
-
"source": "npm:node-fetch",
|
|
11430
|
+
"source": "npm:node-fetch@2.7.0",
|
|
11431
11431
|
"target": "npm:whatwg-url",
|
|
11432
11432
|
"type": "static"
|
|
11433
11433
|
},
|
|
11434
11434
|
{
|
|
11435
11435
|
"source": "npm:node-fetch@3.3.2",
|
|
11436
|
-
"target": "npm:data-uri-to-buffer",
|
|
11436
|
+
"target": "npm:data-uri-to-buffer@4.0.1",
|
|
11437
11437
|
"type": "static"
|
|
11438
11438
|
},
|
|
11439
11439
|
{
|
|
@@ -11453,7 +11453,7 @@
|
|
|
11453
11453
|
},
|
|
11454
11454
|
{
|
|
11455
11455
|
"source": "npm:normalize-package-data@6.0.2",
|
|
11456
|
-
"target": "npm:semver",
|
|
11456
|
+
"target": "npm:semver@7.8.5",
|
|
11457
11457
|
"type": "static"
|
|
11458
11458
|
},
|
|
11459
11459
|
{
|
|
@@ -11462,23 +11462,23 @@
|
|
|
11462
11462
|
"type": "static"
|
|
11463
11463
|
},
|
|
11464
11464
|
{
|
|
11465
|
-
"source": "npm:normalize-package-data",
|
|
11465
|
+
"source": "npm:normalize-package-data@7.0.1",
|
|
11466
11466
|
"target": "npm:hosted-git-info@8.1.0",
|
|
11467
11467
|
"type": "static"
|
|
11468
11468
|
},
|
|
11469
11469
|
{
|
|
11470
|
-
"source": "npm:normalize-package-data",
|
|
11471
|
-
"target": "npm:semver",
|
|
11470
|
+
"source": "npm:normalize-package-data@7.0.1",
|
|
11471
|
+
"target": "npm:semver@7.8.5",
|
|
11472
11472
|
"type": "static"
|
|
11473
11473
|
},
|
|
11474
11474
|
{
|
|
11475
|
-
"source": "npm:normalize-package-data",
|
|
11475
|
+
"source": "npm:normalize-package-data@7.0.1",
|
|
11476
11476
|
"target": "npm:validate-npm-package-license",
|
|
11477
11477
|
"type": "static"
|
|
11478
11478
|
},
|
|
11479
11479
|
{
|
|
11480
|
-
"source": "npm:npm-run-path",
|
|
11481
|
-
"target": "npm:path-key",
|
|
11480
|
+
"source": "npm:npm-run-path@4.0.1",
|
|
11481
|
+
"target": "npm:path-key@3.1.1",
|
|
11482
11482
|
"type": "static"
|
|
11483
11483
|
},
|
|
11484
11484
|
{
|
|
@@ -11543,7 +11543,7 @@
|
|
|
11543
11543
|
},
|
|
11544
11544
|
{
|
|
11545
11545
|
"source": "npm:nx",
|
|
11546
|
-
"target": "npm:cliui",
|
|
11546
|
+
"target": "npm:cliui@8.0.1",
|
|
11547
11547
|
"type": "static"
|
|
11548
11548
|
},
|
|
11549
11549
|
{
|
|
@@ -11558,12 +11558,12 @@
|
|
|
11558
11558
|
},
|
|
11559
11559
|
{
|
|
11560
11560
|
"source": "npm:nx",
|
|
11561
|
-
"target": "npm:enquirer",
|
|
11561
|
+
"target": "npm:enquirer@2.3.6",
|
|
11562
11562
|
"type": "static"
|
|
11563
11563
|
},
|
|
11564
11564
|
{
|
|
11565
11565
|
"source": "npm:nx",
|
|
11566
|
-
"target": "npm:figures",
|
|
11566
|
+
"target": "npm:figures@3.2.0",
|
|
11567
11567
|
"type": "static"
|
|
11568
11568
|
},
|
|
11569
11569
|
{
|
|
@@ -11583,7 +11583,7 @@
|
|
|
11583
11583
|
},
|
|
11584
11584
|
{
|
|
11585
11585
|
"source": "npm:nx",
|
|
11586
|
-
"target": "npm:jest-diff",
|
|
11586
|
+
"target": "npm:jest-diff@29.7.0",
|
|
11587
11587
|
"type": "static"
|
|
11588
11588
|
},
|
|
11589
11589
|
{
|
|
@@ -11593,7 +11593,7 @@
|
|
|
11593
11593
|
},
|
|
11594
11594
|
{
|
|
11595
11595
|
"source": "npm:nx",
|
|
11596
|
-
"target": "npm:lines-and-columns",
|
|
11596
|
+
"target": "npm:lines-and-columns@2.0.3",
|
|
11597
11597
|
"type": "static"
|
|
11598
11598
|
},
|
|
11599
11599
|
{
|
|
@@ -11608,12 +11608,12 @@
|
|
|
11608
11608
|
},
|
|
11609
11609
|
{
|
|
11610
11610
|
"source": "npm:nx",
|
|
11611
|
-
"target": "npm:npm-run-path",
|
|
11611
|
+
"target": "npm:npm-run-path@4.0.1",
|
|
11612
11612
|
"type": "static"
|
|
11613
11613
|
},
|
|
11614
11614
|
{
|
|
11615
11615
|
"source": "npm:nx",
|
|
11616
|
-
"target": "npm:open",
|
|
11616
|
+
"target": "npm:open@8.4.2",
|
|
11617
11617
|
"type": "static"
|
|
11618
11618
|
},
|
|
11619
11619
|
{
|
|
@@ -11623,12 +11623,12 @@
|
|
|
11623
11623
|
},
|
|
11624
11624
|
{
|
|
11625
11625
|
"source": "npm:nx",
|
|
11626
|
-
"target": "npm:semver",
|
|
11626
|
+
"target": "npm:semver@7.8.5",
|
|
11627
11627
|
"type": "static"
|
|
11628
11628
|
},
|
|
11629
11629
|
{
|
|
11630
11630
|
"source": "npm:nx",
|
|
11631
|
-
"target": "npm:string-width",
|
|
11631
|
+
"target": "npm:string-width@4.2.3",
|
|
11632
11632
|
"type": "static"
|
|
11633
11633
|
},
|
|
11634
11634
|
{
|
|
@@ -11638,7 +11638,7 @@
|
|
|
11638
11638
|
},
|
|
11639
11639
|
{
|
|
11640
11640
|
"source": "npm:nx",
|
|
11641
|
-
"target": "npm:tar-stream",
|
|
11641
|
+
"target": "npm:tar-stream@2.2.0",
|
|
11642
11642
|
"type": "static"
|
|
11643
11643
|
},
|
|
11644
11644
|
{
|
|
@@ -11658,12 +11658,12 @@
|
|
|
11658
11658
|
},
|
|
11659
11659
|
{
|
|
11660
11660
|
"source": "npm:nx",
|
|
11661
|
-
"target": "npm:yargs",
|
|
11661
|
+
"target": "npm:yargs@17.7.3",
|
|
11662
11662
|
"type": "static"
|
|
11663
11663
|
},
|
|
11664
11664
|
{
|
|
11665
11665
|
"source": "npm:nx",
|
|
11666
|
-
"target": "npm:yargs-parser",
|
|
11666
|
+
"target": "npm:yargs-parser@21.1.1",
|
|
11667
11667
|
"type": "static"
|
|
11668
11668
|
},
|
|
11669
11669
|
{
|
|
@@ -11732,18 +11732,18 @@
|
|
|
11732
11732
|
"type": "static"
|
|
11733
11733
|
},
|
|
11734
11734
|
{
|
|
11735
|
-
"source": "npm:open",
|
|
11735
|
+
"source": "npm:open@8.4.2",
|
|
11736
11736
|
"target": "npm:define-lazy-prop",
|
|
11737
11737
|
"type": "static"
|
|
11738
11738
|
},
|
|
11739
11739
|
{
|
|
11740
|
-
"source": "npm:open",
|
|
11740
|
+
"source": "npm:open@8.4.2",
|
|
11741
11741
|
"target": "npm:is-docker",
|
|
11742
11742
|
"type": "static"
|
|
11743
11743
|
},
|
|
11744
11744
|
{
|
|
11745
|
-
"source": "npm:open",
|
|
11746
|
-
"target": "npm:is-wsl",
|
|
11745
|
+
"source": "npm:open@8.4.2",
|
|
11746
|
+
"target": "npm:is-wsl@2.2.0",
|
|
11747
11747
|
"type": "static"
|
|
11748
11748
|
},
|
|
11749
11749
|
{
|
|
@@ -11792,8 +11792,8 @@
|
|
|
11792
11792
|
"type": "static"
|
|
11793
11793
|
},
|
|
11794
11794
|
{
|
|
11795
|
-
"source": "npm:p-limit",
|
|
11796
|
-
"target": "npm:yocto-queue",
|
|
11795
|
+
"source": "npm:p-limit@3.1.0",
|
|
11796
|
+
"target": "npm:yocto-queue@0.1.0",
|
|
11797
11797
|
"type": "static"
|
|
11798
11798
|
},
|
|
11799
11799
|
{
|
|
@@ -11807,8 +11807,8 @@
|
|
|
11807
11807
|
"type": "static"
|
|
11808
11808
|
},
|
|
11809
11809
|
{
|
|
11810
|
-
"source": "npm:p-locate",
|
|
11811
|
-
"target": "npm:p-limit",
|
|
11810
|
+
"source": "npm:p-locate@5.0.0",
|
|
11811
|
+
"target": "npm:p-limit@3.1.0",
|
|
11812
11812
|
"type": "static"
|
|
11813
11813
|
},
|
|
11814
11814
|
{
|
|
@@ -11828,7 +11828,7 @@
|
|
|
11828
11828
|
},
|
|
11829
11829
|
{
|
|
11830
11830
|
"source": "npm:pac-proxy-agent",
|
|
11831
|
-
"target": "npm:debug",
|
|
11831
|
+
"target": "npm:debug@4.4.3",
|
|
11832
11832
|
"type": "static"
|
|
11833
11833
|
},
|
|
11834
11834
|
{
|
|
@@ -11942,18 +11942,18 @@
|
|
|
11942
11942
|
"type": "static"
|
|
11943
11943
|
},
|
|
11944
11944
|
{
|
|
11945
|
-
"source": "npm:pretty-format",
|
|
11946
|
-
"target": "npm:@jest/schemas",
|
|
11945
|
+
"source": "npm:pretty-format@29.7.0",
|
|
11946
|
+
"target": "npm:@jest/schemas@29.6.3",
|
|
11947
11947
|
"type": "static"
|
|
11948
11948
|
},
|
|
11949
11949
|
{
|
|
11950
|
-
"source": "npm:pretty-format",
|
|
11950
|
+
"source": "npm:pretty-format@29.7.0",
|
|
11951
11951
|
"target": "npm:ansi-styles@5.2.0",
|
|
11952
11952
|
"type": "static"
|
|
11953
11953
|
},
|
|
11954
11954
|
{
|
|
11955
|
-
"source": "npm:pretty-format",
|
|
11956
|
-
"target": "npm:react-is",
|
|
11955
|
+
"source": "npm:pretty-format@29.7.0",
|
|
11956
|
+
"target": "npm:react-is@18.3.1",
|
|
11957
11957
|
"type": "static"
|
|
11958
11958
|
},
|
|
11959
11959
|
{
|
|
@@ -11982,42 +11982,42 @@
|
|
|
11982
11982
|
"type": "static"
|
|
11983
11983
|
},
|
|
11984
11984
|
{
|
|
11985
|
-
"source": "npm:proxy-agent",
|
|
11985
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
11986
11986
|
"target": "npm:agent-base@7.1.4",
|
|
11987
11987
|
"type": "static"
|
|
11988
11988
|
},
|
|
11989
11989
|
{
|
|
11990
|
-
"source": "npm:proxy-agent",
|
|
11990
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
11991
11991
|
"target": "npm:debug@4.3.4",
|
|
11992
11992
|
"type": "static"
|
|
11993
11993
|
},
|
|
11994
11994
|
{
|
|
11995
|
-
"source": "npm:proxy-agent",
|
|
11995
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
11996
11996
|
"target": "npm:http-proxy-agent",
|
|
11997
11997
|
"type": "static"
|
|
11998
11998
|
},
|
|
11999
11999
|
{
|
|
12000
|
-
"source": "npm:proxy-agent",
|
|
12000
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12001
12001
|
"target": "npm:https-proxy-agent@7.0.6",
|
|
12002
12002
|
"type": "static"
|
|
12003
12003
|
},
|
|
12004
12004
|
{
|
|
12005
|
-
"source": "npm:proxy-agent",
|
|
12005
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12006
12006
|
"target": "npm:lru-cache@7.18.3",
|
|
12007
12007
|
"type": "static"
|
|
12008
12008
|
},
|
|
12009
12009
|
{
|
|
12010
|
-
"source": "npm:proxy-agent",
|
|
12010
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12011
12011
|
"target": "npm:pac-proxy-agent",
|
|
12012
12012
|
"type": "static"
|
|
12013
12013
|
},
|
|
12014
12014
|
{
|
|
12015
|
-
"source": "npm:proxy-agent",
|
|
12015
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12016
12016
|
"target": "npm:proxy-from-env@1.1.0",
|
|
12017
12017
|
"type": "static"
|
|
12018
12018
|
},
|
|
12019
12019
|
{
|
|
12020
|
-
"source": "npm:proxy-agent",
|
|
12020
|
+
"source": "npm:proxy-agent@6.3.1",
|
|
12021
12021
|
"target": "npm:socks-proxy-agent",
|
|
12022
12022
|
"type": "static"
|
|
12023
12023
|
},
|
|
@@ -12028,7 +12028,7 @@
|
|
|
12028
12028
|
},
|
|
12029
12029
|
{
|
|
12030
12030
|
"source": "npm:proxy-agent@6.5.0",
|
|
12031
|
-
"target": "npm:debug",
|
|
12031
|
+
"target": "npm:debug@4.4.3",
|
|
12032
12032
|
"type": "static"
|
|
12033
12033
|
},
|
|
12034
12034
|
{
|
|
@@ -12108,7 +12108,7 @@
|
|
|
12108
12108
|
},
|
|
12109
12109
|
{
|
|
12110
12110
|
"source": "npm:randombytes",
|
|
12111
|
-
"target": "npm:safe-buffer",
|
|
12111
|
+
"target": "npm:safe-buffer@5.2.1",
|
|
12112
12112
|
"type": "static"
|
|
12113
12113
|
},
|
|
12114
12114
|
{
|
|
@@ -12143,7 +12143,7 @@
|
|
|
12143
12143
|
},
|
|
12144
12144
|
{
|
|
12145
12145
|
"source": "npm:rc",
|
|
12146
|
-
"target": "npm:ini",
|
|
12146
|
+
"target": "npm:ini@1.3.8",
|
|
12147
12147
|
"type": "static"
|
|
12148
12148
|
},
|
|
12149
12149
|
{
|
|
@@ -12168,7 +12168,7 @@
|
|
|
12168
12168
|
},
|
|
12169
12169
|
{
|
|
12170
12170
|
"source": "npm:read-pkg-up",
|
|
12171
|
-
"target": "npm:type-fest",
|
|
12171
|
+
"target": "npm:type-fest@4.41.0",
|
|
12172
12172
|
"type": "static"
|
|
12173
12173
|
},
|
|
12174
12174
|
{
|
|
@@ -12188,7 +12188,7 @@
|
|
|
12188
12188
|
},
|
|
12189
12189
|
{
|
|
12190
12190
|
"source": "npm:read-pkg",
|
|
12191
|
-
"target": "npm:type-fest",
|
|
12191
|
+
"target": "npm:type-fest@4.41.0",
|
|
12192
12192
|
"type": "static"
|
|
12193
12193
|
},
|
|
12194
12194
|
{
|
|
@@ -12218,7 +12218,7 @@
|
|
|
12218
12218
|
},
|
|
12219
12219
|
{
|
|
12220
12220
|
"source": "npm:readable-stream@2.3.8",
|
|
12221
|
-
"target": "npm:string_decoder",
|
|
12221
|
+
"target": "npm:string_decoder@1.1.1",
|
|
12222
12222
|
"type": "static"
|
|
12223
12223
|
},
|
|
12224
12224
|
{
|
|
@@ -12242,27 +12242,27 @@
|
|
|
12242
12242
|
"type": "static"
|
|
12243
12243
|
},
|
|
12244
12244
|
{
|
|
12245
|
-
"source": "npm:readable-stream",
|
|
12245
|
+
"source": "npm:readable-stream@4.7.0",
|
|
12246
12246
|
"target": "npm:abort-controller",
|
|
12247
12247
|
"type": "static"
|
|
12248
12248
|
},
|
|
12249
12249
|
{
|
|
12250
|
-
"source": "npm:readable-stream",
|
|
12250
|
+
"source": "npm:readable-stream@4.7.0",
|
|
12251
12251
|
"target": "npm:buffer@6.0.3",
|
|
12252
12252
|
"type": "static"
|
|
12253
12253
|
},
|
|
12254
12254
|
{
|
|
12255
|
-
"source": "npm:readable-stream",
|
|
12255
|
+
"source": "npm:readable-stream@4.7.0",
|
|
12256
12256
|
"target": "npm:events",
|
|
12257
12257
|
"type": "static"
|
|
12258
12258
|
},
|
|
12259
12259
|
{
|
|
12260
|
-
"source": "npm:readable-stream",
|
|
12260
|
+
"source": "npm:readable-stream@4.7.0",
|
|
12261
12261
|
"target": "npm:process",
|
|
12262
12262
|
"type": "static"
|
|
12263
12263
|
},
|
|
12264
12264
|
{
|
|
12265
|
-
"source": "npm:readable-stream",
|
|
12265
|
+
"source": "npm:readable-stream@4.7.0",
|
|
12266
12266
|
"target": "npm:string_decoder@1.3.0",
|
|
12267
12267
|
"type": "static"
|
|
12268
12268
|
},
|
|
@@ -12297,8 +12297,8 @@
|
|
|
12297
12297
|
"type": "static"
|
|
12298
12298
|
},
|
|
12299
12299
|
{
|
|
12300
|
-
"source": "npm:responselike",
|
|
12301
|
-
"target": "npm:lowercase-keys",
|
|
12300
|
+
"source": "npm:responselike@3.0.0",
|
|
12301
|
+
"target": "npm:lowercase-keys@3.0.0",
|
|
12302
12302
|
"type": "static"
|
|
12303
12303
|
},
|
|
12304
12304
|
{
|
|
@@ -12313,7 +12313,7 @@
|
|
|
12313
12313
|
},
|
|
12314
12314
|
{
|
|
12315
12315
|
"source": "npm:restore-cursor",
|
|
12316
|
-
"target": "npm:signal-exit",
|
|
12316
|
+
"target": "npm:signal-exit@3.0.7",
|
|
12317
12317
|
"type": "static"
|
|
12318
12318
|
},
|
|
12319
12319
|
{
|
|
@@ -12342,8 +12342,8 @@
|
|
|
12342
12342
|
"type": "static"
|
|
12343
12343
|
},
|
|
12344
12344
|
{
|
|
12345
|
-
"source": "npm:serialize-error",
|
|
12346
|
-
"target": "npm:type-fest",
|
|
12345
|
+
"source": "npm:serialize-error@12.0.0",
|
|
12346
|
+
"target": "npm:type-fest@4.41.0",
|
|
12347
12347
|
"type": "static"
|
|
12348
12348
|
},
|
|
12349
12349
|
{
|
|
@@ -12363,7 +12363,7 @@
|
|
|
12363
12363
|
},
|
|
12364
12364
|
{
|
|
12365
12365
|
"source": "npm:socks-proxy-agent",
|
|
12366
|
-
"target": "npm:debug",
|
|
12366
|
+
"target": "npm:debug@4.4.3",
|
|
12367
12367
|
"type": "static"
|
|
12368
12368
|
},
|
|
12369
12369
|
{
|
|
@@ -12437,23 +12437,23 @@
|
|
|
12437
12437
|
"type": "static"
|
|
12438
12438
|
},
|
|
12439
12439
|
{
|
|
12440
|
-
"source": "npm:string-width",
|
|
12441
|
-
"target": "npm:emoji-regex",
|
|
12440
|
+
"source": "npm:string-width@4.2.3",
|
|
12441
|
+
"target": "npm:emoji-regex@8.0.0",
|
|
12442
12442
|
"type": "static"
|
|
12443
12443
|
},
|
|
12444
12444
|
{
|
|
12445
|
-
"source": "npm:string-width",
|
|
12445
|
+
"source": "npm:string-width@4.2.3",
|
|
12446
12446
|
"target": "npm:is-fullwidth-code-point",
|
|
12447
12447
|
"type": "static"
|
|
12448
12448
|
},
|
|
12449
12449
|
{
|
|
12450
|
-
"source": "npm:string-width",
|
|
12450
|
+
"source": "npm:string-width@4.2.3",
|
|
12451
12451
|
"target": "npm:strip-ansi@6.0.1",
|
|
12452
12452
|
"type": "static"
|
|
12453
12453
|
},
|
|
12454
12454
|
{
|
|
12455
12455
|
"source": "npm:string-width-cjs",
|
|
12456
|
-
"target": "npm:emoji-regex",
|
|
12456
|
+
"target": "npm:emoji-regex@8.0.0",
|
|
12457
12457
|
"type": "static"
|
|
12458
12458
|
},
|
|
12459
12459
|
{
|
|
@@ -12478,31 +12478,31 @@
|
|
|
12478
12478
|
},
|
|
12479
12479
|
{
|
|
12480
12480
|
"source": "npm:string-width@5.1.2",
|
|
12481
|
-
"target": "npm:strip-ansi",
|
|
12481
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
12482
12482
|
"type": "static"
|
|
12483
12483
|
},
|
|
12484
12484
|
{
|
|
12485
|
-
"source": "npm:string_decoder",
|
|
12485
|
+
"source": "npm:string_decoder@1.1.1",
|
|
12486
12486
|
"target": "npm:safe-buffer@5.1.2",
|
|
12487
12487
|
"type": "static"
|
|
12488
12488
|
},
|
|
12489
12489
|
{
|
|
12490
12490
|
"source": "npm:string_decoder@1.3.0",
|
|
12491
|
-
"target": "npm:safe-buffer",
|
|
12491
|
+
"target": "npm:safe-buffer@5.2.1",
|
|
12492
12492
|
"type": "static"
|
|
12493
12493
|
},
|
|
12494
12494
|
{
|
|
12495
12495
|
"source": "npm:strip-ansi@6.0.1",
|
|
12496
|
-
"target": "npm:ansi-regex",
|
|
12496
|
+
"target": "npm:ansi-regex@5.0.1",
|
|
12497
12497
|
"type": "static"
|
|
12498
12498
|
},
|
|
12499
12499
|
{
|
|
12500
12500
|
"source": "npm:strip-ansi-cjs",
|
|
12501
|
-
"target": "npm:ansi-regex",
|
|
12501
|
+
"target": "npm:ansi-regex@5.0.1",
|
|
12502
12502
|
"type": "static"
|
|
12503
12503
|
},
|
|
12504
12504
|
{
|
|
12505
|
-
"source": "npm:strip-ansi",
|
|
12505
|
+
"source": "npm:strip-ansi@7.2.0",
|
|
12506
12506
|
"target": "npm:ansi-regex@6.3.0",
|
|
12507
12507
|
"type": "static"
|
|
12508
12508
|
},
|
|
@@ -12527,7 +12527,7 @@
|
|
|
12527
12527
|
"type": "static"
|
|
12528
12528
|
},
|
|
12529
12529
|
{
|
|
12530
|
-
"source": "npm:supports-color",
|
|
12530
|
+
"source": "npm:supports-color@7.2.0",
|
|
12531
12531
|
"target": "npm:has-flag",
|
|
12532
12532
|
"type": "static"
|
|
12533
12533
|
},
|
|
@@ -12537,17 +12537,17 @@
|
|
|
12537
12537
|
"type": "static"
|
|
12538
12538
|
},
|
|
12539
12539
|
{
|
|
12540
|
-
"source": "npm:tar-fs",
|
|
12540
|
+
"source": "npm:tar-fs@3.0.4",
|
|
12541
12541
|
"target": "npm:mkdirp-classic",
|
|
12542
12542
|
"type": "static"
|
|
12543
12543
|
},
|
|
12544
12544
|
{
|
|
12545
|
-
"source": "npm:tar-fs",
|
|
12545
|
+
"source": "npm:tar-fs@3.0.4",
|
|
12546
12546
|
"target": "npm:pump",
|
|
12547
12547
|
"type": "static"
|
|
12548
12548
|
},
|
|
12549
12549
|
{
|
|
12550
|
-
"source": "npm:tar-fs",
|
|
12550
|
+
"source": "npm:tar-fs@3.0.4",
|
|
12551
12551
|
"target": "npm:tar-stream@3.2.1",
|
|
12552
12552
|
"type": "static"
|
|
12553
12553
|
},
|
|
@@ -12572,27 +12572,27 @@
|
|
|
12572
12572
|
"type": "static"
|
|
12573
12573
|
},
|
|
12574
12574
|
{
|
|
12575
|
-
"source": "npm:tar-stream",
|
|
12575
|
+
"source": "npm:tar-stream@2.2.0",
|
|
12576
12576
|
"target": "npm:bl",
|
|
12577
12577
|
"type": "static"
|
|
12578
12578
|
},
|
|
12579
12579
|
{
|
|
12580
|
-
"source": "npm:tar-stream",
|
|
12580
|
+
"source": "npm:tar-stream@2.2.0",
|
|
12581
12581
|
"target": "npm:end-of-stream",
|
|
12582
12582
|
"type": "static"
|
|
12583
12583
|
},
|
|
12584
12584
|
{
|
|
12585
|
-
"source": "npm:tar-stream",
|
|
12585
|
+
"source": "npm:tar-stream@2.2.0",
|
|
12586
12586
|
"target": "npm:fs-constants",
|
|
12587
12587
|
"type": "static"
|
|
12588
12588
|
},
|
|
12589
12589
|
{
|
|
12590
|
-
"source": "npm:tar-stream",
|
|
12590
|
+
"source": "npm:tar-stream@2.2.0",
|
|
12591
12591
|
"target": "npm:inherits",
|
|
12592
12592
|
"type": "static"
|
|
12593
12593
|
},
|
|
12594
12594
|
{
|
|
12595
|
-
"source": "npm:tar-stream",
|
|
12595
|
+
"source": "npm:tar-stream@2.2.0",
|
|
12596
12596
|
"target": "npm:readable-stream@3.6.2",
|
|
12597
12597
|
"type": "static"
|
|
12598
12598
|
},
|
|
@@ -12678,7 +12678,7 @@
|
|
|
12678
12678
|
},
|
|
12679
12679
|
{
|
|
12680
12680
|
"source": "npm:unbzip2-stream",
|
|
12681
|
-
"target": "npm:buffer",
|
|
12681
|
+
"target": "npm:buffer@5.7.1",
|
|
12682
12682
|
"type": "static"
|
|
12683
12683
|
},
|
|
12684
12684
|
{
|
|
@@ -12848,7 +12848,7 @@
|
|
|
12848
12848
|
},
|
|
12849
12849
|
{
|
|
12850
12850
|
"source": "npm:wait-port",
|
|
12851
|
-
"target": "npm:debug",
|
|
12851
|
+
"target": "npm:debug@4.4.3",
|
|
12852
12852
|
"type": "static"
|
|
12853
12853
|
},
|
|
12854
12854
|
{
|
|
@@ -12898,7 +12898,7 @@
|
|
|
12898
12898
|
},
|
|
12899
12899
|
{
|
|
12900
12900
|
"source": "npm:webdriver@8.46.0",
|
|
12901
|
-
"target": "npm:got",
|
|
12901
|
+
"target": "npm:got@12.6.1",
|
|
12902
12902
|
"type": "static"
|
|
12903
12903
|
},
|
|
12904
12904
|
{
|
|
@@ -12928,12 +12928,12 @@
|
|
|
12928
12928
|
},
|
|
12929
12929
|
{
|
|
12930
12930
|
"source": "npm:webdriver@9.31.6",
|
|
12931
|
-
"target": "npm:@wdio/logger",
|
|
12931
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
12932
12932
|
"type": "static"
|
|
12933
12933
|
},
|
|
12934
12934
|
{
|
|
12935
12935
|
"source": "npm:webdriver@9.31.6",
|
|
12936
|
-
"target": "npm:@wdio/protocols",
|
|
12936
|
+
"target": "npm:@wdio/protocols@9.31.5",
|
|
12937
12937
|
"type": "static"
|
|
12938
12938
|
},
|
|
12939
12939
|
{
|
|
@@ -13023,7 +13023,7 @@
|
|
|
13023
13023
|
},
|
|
13024
13024
|
{
|
|
13025
13025
|
"source": "npm:webdriverio@8.46.0",
|
|
13026
|
-
"target": "npm:devtools-protocol",
|
|
13026
|
+
"target": "npm:devtools-protocol@0.0.1400418",
|
|
13027
13027
|
"type": "static"
|
|
13028
13028
|
},
|
|
13029
13029
|
{
|
|
@@ -13038,7 +13038,7 @@
|
|
|
13038
13038
|
},
|
|
13039
13039
|
{
|
|
13040
13040
|
"source": "npm:webdriverio@8.46.0",
|
|
13041
|
-
"target": "npm:is-plain-obj",
|
|
13041
|
+
"target": "npm:is-plain-obj@4.1.0",
|
|
13042
13042
|
"type": "static"
|
|
13043
13043
|
},
|
|
13044
13044
|
{
|
|
@@ -13092,133 +13092,133 @@
|
|
|
13092
13092
|
"type": "static"
|
|
13093
13093
|
},
|
|
13094
13094
|
{
|
|
13095
|
-
"source": "npm:webdriverio
|
|
13095
|
+
"source": "npm:webdriverio",
|
|
13096
13096
|
"target": "npm:@types/node",
|
|
13097
13097
|
"type": "static"
|
|
13098
13098
|
},
|
|
13099
13099
|
{
|
|
13100
|
-
"source": "npm:webdriverio
|
|
13100
|
+
"source": "npm:webdriverio",
|
|
13101
13101
|
"target": "npm:@types/sinonjs__fake-timers",
|
|
13102
13102
|
"type": "static"
|
|
13103
13103
|
},
|
|
13104
13104
|
{
|
|
13105
|
-
"source": "npm:webdriverio
|
|
13105
|
+
"source": "npm:webdriverio",
|
|
13106
13106
|
"target": "npm:@wdio/config@9.31.6",
|
|
13107
13107
|
"type": "static"
|
|
13108
13108
|
},
|
|
13109
13109
|
{
|
|
13110
|
-
"source": "npm:webdriverio
|
|
13111
|
-
"target": "npm:@wdio/logger",
|
|
13110
|
+
"source": "npm:webdriverio",
|
|
13111
|
+
"target": "npm:@wdio/logger@9.29.1",
|
|
13112
13112
|
"type": "static"
|
|
13113
13113
|
},
|
|
13114
13114
|
{
|
|
13115
|
-
"source": "npm:webdriverio
|
|
13116
|
-
"target": "npm:@wdio/protocols",
|
|
13115
|
+
"source": "npm:webdriverio",
|
|
13116
|
+
"target": "npm:@wdio/protocols@9.31.5",
|
|
13117
13117
|
"type": "static"
|
|
13118
13118
|
},
|
|
13119
13119
|
{
|
|
13120
|
-
"source": "npm:webdriverio
|
|
13121
|
-
"target": "npm:@wdio/repl",
|
|
13120
|
+
"source": "npm:webdriverio",
|
|
13121
|
+
"target": "npm:@wdio/repl@9.16.2",
|
|
13122
13122
|
"type": "static"
|
|
13123
13123
|
},
|
|
13124
13124
|
{
|
|
13125
|
-
"source": "npm:webdriverio
|
|
13125
|
+
"source": "npm:webdriverio",
|
|
13126
13126
|
"target": "npm:@wdio/types@9.31.2",
|
|
13127
13127
|
"type": "static"
|
|
13128
13128
|
},
|
|
13129
13129
|
{
|
|
13130
|
-
"source": "npm:webdriverio
|
|
13130
|
+
"source": "npm:webdriverio",
|
|
13131
13131
|
"target": "npm:@wdio/utils@9.31.6",
|
|
13132
13132
|
"type": "static"
|
|
13133
13133
|
},
|
|
13134
13134
|
{
|
|
13135
|
-
"source": "npm:webdriverio
|
|
13135
|
+
"source": "npm:webdriverio",
|
|
13136
13136
|
"target": "npm:archiver",
|
|
13137
13137
|
"type": "static"
|
|
13138
13138
|
},
|
|
13139
13139
|
{
|
|
13140
|
-
"source": "npm:webdriverio
|
|
13140
|
+
"source": "npm:webdriverio",
|
|
13141
13141
|
"target": "npm:aria-query",
|
|
13142
13142
|
"type": "static"
|
|
13143
13143
|
},
|
|
13144
13144
|
{
|
|
13145
|
-
"source": "npm:webdriverio
|
|
13145
|
+
"source": "npm:webdriverio",
|
|
13146
13146
|
"target": "npm:cheerio",
|
|
13147
13147
|
"type": "static"
|
|
13148
13148
|
},
|
|
13149
13149
|
{
|
|
13150
|
-
"source": "npm:webdriverio
|
|
13150
|
+
"source": "npm:webdriverio",
|
|
13151
13151
|
"target": "npm:css-shorthand-properties",
|
|
13152
13152
|
"type": "static"
|
|
13153
13153
|
},
|
|
13154
13154
|
{
|
|
13155
|
-
"source": "npm:webdriverio
|
|
13155
|
+
"source": "npm:webdriverio",
|
|
13156
13156
|
"target": "npm:css-value",
|
|
13157
13157
|
"type": "static"
|
|
13158
13158
|
},
|
|
13159
13159
|
{
|
|
13160
|
-
"source": "npm:webdriverio
|
|
13160
|
+
"source": "npm:webdriverio",
|
|
13161
13161
|
"target": "npm:grapheme-splitter",
|
|
13162
13162
|
"type": "static"
|
|
13163
13163
|
},
|
|
13164
13164
|
{
|
|
13165
|
-
"source": "npm:webdriverio
|
|
13165
|
+
"source": "npm:webdriverio",
|
|
13166
13166
|
"target": "npm:htmlfy",
|
|
13167
13167
|
"type": "static"
|
|
13168
13168
|
},
|
|
13169
13169
|
{
|
|
13170
|
-
"source": "npm:webdriverio
|
|
13171
|
-
"target": "npm:is-plain-obj",
|
|
13170
|
+
"source": "npm:webdriverio",
|
|
13171
|
+
"target": "npm:is-plain-obj@4.1.0",
|
|
13172
13172
|
"type": "static"
|
|
13173
13173
|
},
|
|
13174
13174
|
{
|
|
13175
|
-
"source": "npm:webdriverio
|
|
13175
|
+
"source": "npm:webdriverio",
|
|
13176
13176
|
"target": "npm:jszip",
|
|
13177
13177
|
"type": "static"
|
|
13178
13178
|
},
|
|
13179
13179
|
{
|
|
13180
|
-
"source": "npm:webdriverio
|
|
13180
|
+
"source": "npm:webdriverio",
|
|
13181
13181
|
"target": "npm:lodash.clonedeep",
|
|
13182
13182
|
"type": "static"
|
|
13183
13183
|
},
|
|
13184
13184
|
{
|
|
13185
|
-
"source": "npm:webdriverio
|
|
13185
|
+
"source": "npm:webdriverio",
|
|
13186
13186
|
"target": "npm:lodash.zip",
|
|
13187
13187
|
"type": "static"
|
|
13188
13188
|
},
|
|
13189
13189
|
{
|
|
13190
|
-
"source": "npm:webdriverio
|
|
13190
|
+
"source": "npm:webdriverio",
|
|
13191
13191
|
"target": "npm:query-selector-shadow-dom",
|
|
13192
13192
|
"type": "static"
|
|
13193
13193
|
},
|
|
13194
13194
|
{
|
|
13195
|
-
"source": "npm:webdriverio
|
|
13195
|
+
"source": "npm:webdriverio",
|
|
13196
13196
|
"target": "npm:resq",
|
|
13197
13197
|
"type": "static"
|
|
13198
13198
|
},
|
|
13199
13199
|
{
|
|
13200
|
-
"source": "npm:webdriverio
|
|
13200
|
+
"source": "npm:webdriverio",
|
|
13201
13201
|
"target": "npm:rgb2hex",
|
|
13202
13202
|
"type": "static"
|
|
13203
13203
|
},
|
|
13204
13204
|
{
|
|
13205
|
-
"source": "npm:webdriverio
|
|
13206
|
-
"target": "npm:serialize-error",
|
|
13205
|
+
"source": "npm:webdriverio",
|
|
13206
|
+
"target": "npm:serialize-error@12.0.0",
|
|
13207
13207
|
"type": "static"
|
|
13208
13208
|
},
|
|
13209
13209
|
{
|
|
13210
|
-
"source": "npm:webdriverio
|
|
13211
|
-
"target": "npm:urlpattern-polyfill",
|
|
13210
|
+
"source": "npm:webdriverio",
|
|
13211
|
+
"target": "npm:urlpattern-polyfill@10.1.0",
|
|
13212
13212
|
"type": "static"
|
|
13213
13213
|
},
|
|
13214
13214
|
{
|
|
13215
|
-
"source": "npm:webdriverio
|
|
13215
|
+
"source": "npm:webdriverio",
|
|
13216
13216
|
"target": "npm:webdriver@9.31.6",
|
|
13217
13217
|
"type": "static"
|
|
13218
13218
|
},
|
|
13219
13219
|
{
|
|
13220
13220
|
"source": "npm:whatwg-encoding",
|
|
13221
|
-
"target": "npm:iconv-lite",
|
|
13221
|
+
"target": "npm:iconv-lite@0.6.3",
|
|
13222
13222
|
"type": "static"
|
|
13223
13223
|
},
|
|
13224
13224
|
{
|
|
@@ -13242,23 +13242,23 @@
|
|
|
13242
13242
|
"type": "static"
|
|
13243
13243
|
},
|
|
13244
13244
|
{
|
|
13245
|
-
"source": "npm:which",
|
|
13246
|
-
"target": "npm:isexe",
|
|
13245
|
+
"source": "npm:which@6.0.1",
|
|
13246
|
+
"target": "npm:isexe@4.0.0",
|
|
13247
13247
|
"type": "static"
|
|
13248
13248
|
},
|
|
13249
13249
|
{
|
|
13250
13250
|
"source": "npm:widest-line",
|
|
13251
|
-
"target": "npm:string-width",
|
|
13251
|
+
"target": "npm:string-width@4.2.3",
|
|
13252
13252
|
"type": "static"
|
|
13253
13253
|
},
|
|
13254
13254
|
{
|
|
13255
13255
|
"source": "npm:wrap-ansi@6.2.0",
|
|
13256
|
-
"target": "npm:ansi-styles",
|
|
13256
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
13257
13257
|
"type": "static"
|
|
13258
13258
|
},
|
|
13259
13259
|
{
|
|
13260
13260
|
"source": "npm:wrap-ansi@6.2.0",
|
|
13261
|
-
"target": "npm:string-width",
|
|
13261
|
+
"target": "npm:string-width@4.2.3",
|
|
13262
13262
|
"type": "static"
|
|
13263
13263
|
},
|
|
13264
13264
|
{
|
|
@@ -13267,28 +13267,28 @@
|
|
|
13267
13267
|
"type": "static"
|
|
13268
13268
|
},
|
|
13269
13269
|
{
|
|
13270
|
-
"source": "npm:wrap-ansi",
|
|
13271
|
-
"target": "npm:ansi-styles",
|
|
13270
|
+
"source": "npm:wrap-ansi@7.0.0",
|
|
13271
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
13272
13272
|
"type": "static"
|
|
13273
13273
|
},
|
|
13274
13274
|
{
|
|
13275
|
-
"source": "npm:wrap-ansi",
|
|
13276
|
-
"target": "npm:string-width",
|
|
13275
|
+
"source": "npm:wrap-ansi@7.0.0",
|
|
13276
|
+
"target": "npm:string-width@4.2.3",
|
|
13277
13277
|
"type": "static"
|
|
13278
13278
|
},
|
|
13279
13279
|
{
|
|
13280
|
-
"source": "npm:wrap-ansi",
|
|
13280
|
+
"source": "npm:wrap-ansi@7.0.0",
|
|
13281
13281
|
"target": "npm:strip-ansi@6.0.1",
|
|
13282
13282
|
"type": "static"
|
|
13283
13283
|
},
|
|
13284
13284
|
{
|
|
13285
13285
|
"source": "npm:wrap-ansi-cjs",
|
|
13286
|
-
"target": "npm:ansi-styles",
|
|
13286
|
+
"target": "npm:ansi-styles@4.3.0",
|
|
13287
13287
|
"type": "static"
|
|
13288
13288
|
},
|
|
13289
13289
|
{
|
|
13290
13290
|
"source": "npm:wrap-ansi-cjs",
|
|
13291
|
-
"target": "npm:string-width",
|
|
13291
|
+
"target": "npm:string-width@4.2.3",
|
|
13292
13292
|
"type": "static"
|
|
13293
13293
|
},
|
|
13294
13294
|
{
|
|
@@ -13308,7 +13308,7 @@
|
|
|
13308
13308
|
},
|
|
13309
13309
|
{
|
|
13310
13310
|
"source": "npm:wrap-ansi@8.1.0",
|
|
13311
|
-
"target": "npm:strip-ansi",
|
|
13311
|
+
"target": "npm:strip-ansi@7.2.0",
|
|
13312
13312
|
"type": "static"
|
|
13313
13313
|
},
|
|
13314
13314
|
{
|
|
@@ -13323,7 +13323,7 @@
|
|
|
13323
13323
|
},
|
|
13324
13324
|
{
|
|
13325
13325
|
"source": "npm:write-file-atomic",
|
|
13326
|
-
"target": "npm:signal-exit",
|
|
13326
|
+
"target": "npm:signal-exit@3.0.7",
|
|
13327
13327
|
"type": "static"
|
|
13328
13328
|
},
|
|
13329
13329
|
{
|
|
@@ -13333,7 +13333,7 @@
|
|
|
13333
13333
|
},
|
|
13334
13334
|
{
|
|
13335
13335
|
"source": "npm:yargs-unparser",
|
|
13336
|
-
"target": "npm:camelcase",
|
|
13336
|
+
"target": "npm:camelcase@6.3.0",
|
|
13337
13337
|
"type": "static"
|
|
13338
13338
|
},
|
|
13339
13339
|
{
|
|
@@ -13373,7 +13373,7 @@
|
|
|
13373
13373
|
},
|
|
13374
13374
|
{
|
|
13375
13375
|
"source": "npm:yargs@16.2.2",
|
|
13376
|
-
"target": "npm:string-width",
|
|
13376
|
+
"target": "npm:string-width@4.2.3",
|
|
13377
13377
|
"type": "static"
|
|
13378
13378
|
},
|
|
13379
13379
|
{
|
|
@@ -13388,7 +13388,7 @@
|
|
|
13388
13388
|
},
|
|
13389
13389
|
{
|
|
13390
13390
|
"source": "npm:yargs@17.7.2",
|
|
13391
|
-
"target": "npm:cliui",
|
|
13391
|
+
"target": "npm:cliui@8.0.1",
|
|
13392
13392
|
"type": "static"
|
|
13393
13393
|
},
|
|
13394
13394
|
{
|
|
@@ -13408,7 +13408,7 @@
|
|
|
13408
13408
|
},
|
|
13409
13409
|
{
|
|
13410
13410
|
"source": "npm:yargs@17.7.2",
|
|
13411
|
-
"target": "npm:string-width",
|
|
13411
|
+
"target": "npm:string-width@4.2.3",
|
|
13412
13412
|
"type": "static"
|
|
13413
13413
|
},
|
|
13414
13414
|
{
|
|
@@ -13418,42 +13418,42 @@
|
|
|
13418
13418
|
},
|
|
13419
13419
|
{
|
|
13420
13420
|
"source": "npm:yargs@17.7.2",
|
|
13421
|
-
"target": "npm:yargs-parser",
|
|
13421
|
+
"target": "npm:yargs-parser@21.1.1",
|
|
13422
13422
|
"type": "static"
|
|
13423
13423
|
},
|
|
13424
13424
|
{
|
|
13425
|
-
"source": "npm:yargs",
|
|
13426
|
-
"target": "npm:cliui",
|
|
13425
|
+
"source": "npm:yargs@17.7.3",
|
|
13426
|
+
"target": "npm:cliui@8.0.1",
|
|
13427
13427
|
"type": "static"
|
|
13428
13428
|
},
|
|
13429
13429
|
{
|
|
13430
|
-
"source": "npm:yargs",
|
|
13430
|
+
"source": "npm:yargs@17.7.3",
|
|
13431
13431
|
"target": "npm:escalade",
|
|
13432
13432
|
"type": "static"
|
|
13433
13433
|
},
|
|
13434
13434
|
{
|
|
13435
|
-
"source": "npm:yargs",
|
|
13435
|
+
"source": "npm:yargs@17.7.3",
|
|
13436
13436
|
"target": "npm:get-caller-file",
|
|
13437
13437
|
"type": "static"
|
|
13438
13438
|
},
|
|
13439
13439
|
{
|
|
13440
|
-
"source": "npm:yargs",
|
|
13440
|
+
"source": "npm:yargs@17.7.3",
|
|
13441
13441
|
"target": "npm:require-directory",
|
|
13442
13442
|
"type": "static"
|
|
13443
13443
|
},
|
|
13444
13444
|
{
|
|
13445
|
-
"source": "npm:yargs",
|
|
13446
|
-
"target": "npm:string-width",
|
|
13445
|
+
"source": "npm:yargs@17.7.3",
|
|
13446
|
+
"target": "npm:string-width@4.2.3",
|
|
13447
13447
|
"type": "static"
|
|
13448
13448
|
},
|
|
13449
13449
|
{
|
|
13450
|
-
"source": "npm:yargs",
|
|
13450
|
+
"source": "npm:yargs@17.7.3",
|
|
13451
13451
|
"target": "npm:y18n",
|
|
13452
13452
|
"type": "static"
|
|
13453
13453
|
},
|
|
13454
13454
|
{
|
|
13455
|
-
"source": "npm:yargs",
|
|
13456
|
-
"target": "npm:yargs-parser",
|
|
13455
|
+
"source": "npm:yargs@17.7.3",
|
|
13456
|
+
"target": "npm:yargs-parser@21.1.1",
|
|
13457
13457
|
"type": "static"
|
|
13458
13458
|
},
|
|
13459
13459
|
{
|
|
@@ -13478,7 +13478,7 @@
|
|
|
13478
13478
|
},
|
|
13479
13479
|
{
|
|
13480
13480
|
"source": "npm:zip-stream",
|
|
13481
|
-
"target": "npm:readable-stream",
|
|
13481
|
+
"target": "npm:readable-stream@4.7.0",
|
|
13482
13482
|
"type": "static"
|
|
13483
13483
|
}
|
|
13484
13484
|
]
|