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