From 9139435321d3edc214d24172e4a1edbfa9f7276a Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Wed, 2 Nov 2022 17:26:08 -0700 Subject: [PATCH] feat: support rules_js 1.6.4 with improved version mirroring (#51) --- .gitattributes | 2 + .prettierignore | 1 + WORKSPACE | 11 +- e2e/workspace/BUILD.bazel | 4 +- e2e/workspace/WORKSPACE | 11 +- internal_deps.bzl | 38 +- jest/dependencies.bzl | 31 +- jest/private/maybe.bzl | 7 + jest/private/v28.1.0/defs.bzl | 618 -- jest/private/v28.1.0/pnpm-lock.yaml | 2227 ++++++ jest/private/v28.1.0/repositories.bzl | 9682 ------------------------- jest/private/versions.bzl | 13 +- jest/repositories.bzl | 95 +- scripts/mirror_release.sh | 42 +- 14 files changed, 2330 insertions(+), 10452 deletions(-) create mode 100644 .gitattributes create mode 100644 jest/private/maybe.bzl delete mode 100755 jest/private/v28.1.0/defs.bzl create mode 100644 jest/private/v28.1.0/pnpm-lock.yaml delete mode 100755 jest/private/v28.1.0/repositories.bzl diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..5c0ad60 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +docs/*.md linguist-generated=true +pnpm-lock.yaml linguist-generated=true diff --git a/.prettierignore b/.prettierignore index 2e117bf..176883e 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,2 @@ +**/pnpm-lock.yaml docs/*.md diff --git a/WORKSPACE b/WORKSPACE index 422b934..7d4770a 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -24,10 +24,11 @@ nodejs_register_toolchains( load("//jest:repositories.bzl", "jest_repositories") -jest_repositories( - name = "jest", - jest_version = "v28.1.0", -) +jest_repositories(name = "jest") + +load("@jest//:npm_repositories.bzl", jest_npm_repositories = "npm_repositories") + +jest_npm_repositories() # For running our own unit tests load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") @@ -42,6 +43,6 @@ load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_depe go_rules_dependencies() -go_register_toolchains(version = "1.19.1") +go_register_toolchains(version = "1.19.3") gazelle_dependencies() diff --git a/e2e/workspace/BUILD.bazel b/e2e/workspace/BUILD.bazel index 0bbfb75..440eddf 100644 --- a/e2e/workspace/BUILD.bazel +++ b/e2e/workspace/BUILD.bazel @@ -1,7 +1,7 @@ -load("@jest//jest:defs.bzl", "jest_test") +load("@jest//:defs.bzl", "jest_test") jest_test( name = "test", - data = ["index.test.js"], config = "jest.config.js", + data = ["index.test.js"], ) diff --git a/e2e/workspace/WORKSPACE b/e2e/workspace/WORKSPACE index 6603dd1..82ce3fa 100644 --- a/e2e/workspace/WORKSPACE +++ b/e2e/workspace/WORKSPACE @@ -18,12 +18,13 @@ load("@aspect_rules_jest//jest:dependencies.bzl", "rules_jest_dependencies") rules_jest_dependencies() # Fetches the npm packages for jest-cli. -load("@aspect_rules_jest//jest:repositories.bzl", "LATEST_VERSION", "jest_repositories") +load("@aspect_rules_jest//jest:repositories.bzl", "jest_repositories") -jest_repositories( - name = "jest", - jest_version = LATEST_VERSION, -) +jest_repositories(name = "jest") + +load("@jest//:npm_repositories.bzl", jest_npm_repositories = "npm_repositories") + +jest_npm_repositories() # Register a nodejs toolchain, if you haven't already done so. load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains") diff --git a/internal_deps.bzl b/internal_deps.bzl index 5abe139..0a33e3b 100644 --- a/internal_deps.bzl +++ b/internal_deps.bzl @@ -4,51 +4,35 @@ Users should *not* need to install these. If users see a load() statement from these, that's a bug in our distribution. """ -load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") -load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") +# buildifier: disable=bzl-visibility +load("//jest/private:maybe.bzl", http_archive = "maybe_http_archive") def rules_jest_internal_deps(): "Fetch deps needed for local development" - maybe( - http_archive, + http_archive( name = "io_bazel_rules_go", sha256 = "099a9fb96a376ccbbb7d291ed4ecbdfd42f6bc822ab77ae6f1b5cb9e914e94fa", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip", - "https://github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip", - ], + urls = ["https://github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip"], ) - maybe( - http_archive, + http_archive( name = "bazel_gazelle", - sha256 = "efbbba6ac1a4fd342d5122cbdfdb82aeb2cf2862e35022c752eaddffada7c3f3", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.27.0/bazel-gazelle-v0.27.0.tar.gz", - "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.27.0/bazel-gazelle-v0.27.0.tar.gz", - ], + sha256 = "448e37e0dbf61d6fa8f00aaa12d191745e14f07c31cabfa731f0c8e8a4f41b97", + urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.28.0/bazel-gazelle-v0.28.0.tar.gz"], ) # Override bazel_skylib distribution to fetch sources instead # so that the gazelle extension is included # see https://github.com/bazelbuild/bazel-skylib/issues/250 - maybe( - http_archive, + http_archive( name = "bazel_skylib", sha256 = "3b620033ca48fcd6f5ef2ac85e0f6ec5639605fa2f627968490e52fc91a9932f", strip_prefix = "bazel-skylib-1.3.0", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/archive/1.3.0.tar.gz", - "https://github.com/bazelbuild/bazel-skylib/archive/refs/tags/1.3.0.tar.gz", - ], + urls = ["https://github.com/bazelbuild/bazel-skylib/archive/refs/tags/1.3.0.tar.gz"], ) - maybe( - http_archive, + http_archive( name = "io_bazel_stardoc", sha256 = "3fd8fec4ddec3c670bd810904e2e33170bedfe12f90adf943508184be458c8bb", - urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz", - "https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz", - ], + urls = ["https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz"], ) diff --git a/jest/dependencies.bzl b/jest/dependencies.bzl index 28481f2..92d19b3 100644 --- a/jest/dependencies.bzl +++ b/jest/dependencies.bzl @@ -1,7 +1,6 @@ "Runtime starlark dependencies" -load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") -load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") +load("//jest/private:maybe.bzl", http_archive = "maybe_http_archive") # WARNING: any changes in this function may be BREAKING CHANGES for users # because we'll fetch a dependency which may be different from one that @@ -11,32 +10,28 @@ load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") # and released only in semver majors. def rules_jest_dependencies(): # The minimal version of bazel_skylib we require - maybe( - http_archive, + http_archive( name = "bazel_skylib", sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506", urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz"], ) - maybe( - http_archive, + http_archive( name = "aspect_bazel_lib", - sha256 = "79381b0975ba7d2d5653239e5bab12cf54d89b10217fe771b8edd95047a2e44b", - strip_prefix = "bazel-lib-1.12.1", - url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v1.12.1.tar.gz", + sha256 = "eae670935704ce5f9d050b2c23d426b4ae453458830eebdaac1f11a6a9da150b", + strip_prefix = "bazel-lib-1.15.0", + url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v1.15.0.tar.gz", ) - maybe( - http_archive, + http_archive( name = "aspect_rules_js", - sha256 = "9d80f28eb59df0486cc1e8e82868e97d8167429ea309a7ae96dfac64ff73275b", - strip_prefix = "rules_js-1.4.0", - url = "https://github.com/aspect-build/rules_js/archive/refs/tags/v1.4.0.tar.gz", + sha256 = "a6c97d32e82f890bd3e62ab2bd1ab2610baf80c4ab9eaa9586685c5e0c7c5858", + strip_prefix = "rules_js-1.6.5", + url = "https://github.com/aspect-build/rules_js/archive/refs/tags/v1.6.5.tar.gz", ) - maybe( - http_archive, + http_archive( name = "rules_nodejs", - sha256 = "bce105e7a3d2a3c5eb90dcd6436544bf11f82e97073fb29e4090321ba2b84d8f", - urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.6.0/rules_nodejs-core-5.6.0.tar.gz"], + sha256 = "50adf0b0ff6fc77d6909a790df02eefbbb3bc2b154ece3406361dda49607a7bd", + urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.7.1/rules_nodejs-core-5.7.1.tar.gz"], ) diff --git a/jest/private/maybe.bzl b/jest/private/maybe.bzl new file mode 100644 index 0000000..b6e89fe --- /dev/null +++ b/jest/private/maybe.bzl @@ -0,0 +1,7 @@ +"maybe utilities" + +load("@bazel_tools//tools/build_defs/repo:http.bzl", _http_archive = "http_archive") +load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") + +def maybe_http_archive(**kwargs): + maybe(_http_archive, **kwargs) diff --git a/jest/private/v28.1.0/defs.bzl b/jest/private/v28.1.0/defs.bzl deleted file mode 100755 index 5bb0ae4..0000000 --- a/jest/private/v28.1.0/defs.bzl +++ /dev/null @@ -1,618 +0,0 @@ -"@generated by @aspect_rules_js//npm/private:npm_translate_lock.bzl from //:pnpm-lock.yaml" - -# buildifier: disable=bzl-visibility -load("@aspect_rules_js//js:defs.bzl", _js_library = "js_library") -load("@npm_aspect_rules_jest__at_ampproject_remapping__2.2.0__links//:defs.bzl", store_0 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_code-frame__7.18.6__links//:defs.bzl", store_1 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_compat-data__7.18.13__links//:defs.bzl", store_2 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_core__7.18.13__links//:defs.bzl", store_3 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_generator__7.18.13__links//:defs.bzl", store_4 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-compilation-targets__7.18.9__at_babel_core_7.18.13__links//:defs.bzl", store_5 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-environment-visitor__7.18.9__links//:defs.bzl", store_6 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-function-name__7.18.9__links//:defs.bzl", store_7 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-hoist-variables__7.18.6__links//:defs.bzl", store_8 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-module-imports__7.18.6__links//:defs.bzl", store_9 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-module-transforms__7.18.9__links//:defs.bzl", store_10 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-plugin-utils__7.18.9__links//:defs.bzl", store_11 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-simple-access__7.18.6__links//:defs.bzl", store_12 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-split-export-declaration__7.18.6__links//:defs.bzl", store_13 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-string-parser__7.18.10__links//:defs.bzl", store_14 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-validator-identifier__7.18.6__links//:defs.bzl", store_15 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helper-validator-option__7.18.6__links//:defs.bzl", store_16 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_helpers__7.18.9__links//:defs.bzl", store_17 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_highlight__7.18.6__links//:defs.bzl", store_18 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_parser__7.18.13__links//:defs.bzl", store_19 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-async-generators__7.8.4__at_babel_core_7.18.13__links//:defs.bzl", store_20 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-bigint__7.8.3__at_babel_core_7.18.13__links//:defs.bzl", store_21 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-class-properties__7.12.13__at_babel_core_7.18.13__links//:defs.bzl", store_22 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-import-meta__7.10.4__at_babel_core_7.18.13__links//:defs.bzl", store_23 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-json-strings__7.8.3__at_babel_core_7.18.13__links//:defs.bzl", store_24 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-logical-assignment-operators__7.10.4__at_babel_core_7.18.13__links//:defs.bzl", store_25 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-nullish-coalescing-operator__7.8.3__at_babel_core_7.18.13__links//:defs.bzl", store_26 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-numeric-separator__7.10.4__at_babel_core_7.18.13__links//:defs.bzl", store_27 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-object-rest-spread__7.8.3__at_babel_core_7.18.13__links//:defs.bzl", store_28 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-optional-catch-binding__7.8.3__at_babel_core_7.18.13__links//:defs.bzl", store_29 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-optional-chaining__7.8.3__at_babel_core_7.18.13__links//:defs.bzl", store_30 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-top-level-await__7.14.5__at_babel_core_7.18.13__links//:defs.bzl", store_31 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_plugin-syntax-typescript__7.18.6__at_babel_core_7.18.13__links//:defs.bzl", store_32 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_template__7.18.10__links//:defs.bzl", store_33 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_traverse__7.18.13__links//:defs.bzl", store_34 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_babel_types__7.18.13__links//:defs.bzl", store_35 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_bcoe_v8-coverage__0.2.3__links//:defs.bzl", store_36 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_istanbuljs_load-nyc-config__1.1.0__links//:defs.bzl", store_37 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_istanbuljs_schema__0.1.3__links//:defs.bzl", store_38 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_console__28.1.3__links//:defs.bzl", store_39 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_core__28.1.3__links//:defs.bzl", store_40 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_environment__28.1.3__links//:defs.bzl", store_41 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_expect-utils__28.1.3__links//:defs.bzl", store_42 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_expect__28.1.3__links//:defs.bzl", store_43 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_fake-timers__28.1.3__links//:defs.bzl", store_44 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_globals__28.1.3__links//:defs.bzl", store_45 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_reporters__28.1.3__links//:defs.bzl", store_46 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_schemas__28.1.3__links//:defs.bzl", store_47 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_source-map__28.1.2__links//:defs.bzl", store_48 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_test-result__28.1.3__links//:defs.bzl", store_49 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_test-sequencer__28.1.3__links//:defs.bzl", link_50 = "npm_link_imported_package_store", store_50 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_transform__28.1.3__links//:defs.bzl", store_51 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jest_types__28.1.3__links//:defs.bzl", store_52 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jridgewell_gen-mapping__0.1.1__links//:defs.bzl", store_53 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jridgewell_gen-mapping__0.3.2__links//:defs.bzl", store_54 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jridgewell_resolve-uri__3.1.0__links//:defs.bzl", store_55 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jridgewell_set-array__1.1.2__links//:defs.bzl", store_56 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jridgewell_sourcemap-codec__1.4.14__links//:defs.bzl", store_57 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_jridgewell_trace-mapping__0.3.15__links//:defs.bzl", store_58 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_sinclair_typebox__0.24.28__links//:defs.bzl", store_59 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_sinonjs_commons__1.8.3__links//:defs.bzl", store_60 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_sinonjs_fake-timers__9.1.2__links//:defs.bzl", store_61 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_babel__core__7.1.19__links//:defs.bzl", store_62 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_babel__generator__7.6.4__links//:defs.bzl", store_63 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_babel__template__7.4.1__links//:defs.bzl", store_64 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_babel__traverse__7.18.0__links//:defs.bzl", store_65 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_graceful-fs__4.1.5__links//:defs.bzl", store_66 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_istanbul-lib-coverage__2.0.4__links//:defs.bzl", store_67 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_istanbul-lib-report__3.0.0__links//:defs.bzl", store_68 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_istanbul-reports__3.0.1__links//:defs.bzl", store_69 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_node__18.7.13__links//:defs.bzl", store_70 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_prettier__2.7.0__links//:defs.bzl", store_71 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_stack-utils__2.0.1__links//:defs.bzl", store_72 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_yargs-parser__21.0.0__links//:defs.bzl", store_73 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__at_types_yargs__17.0.11__links//:defs.bzl", store_74 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__ansi-escapes__4.3.2__links//:defs.bzl", store_75 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__ansi-regex__5.0.1__links//:defs.bzl", store_76 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__ansi-styles__3.2.1__links//:defs.bzl", store_77 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__ansi-styles__4.3.0__links//:defs.bzl", store_78 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__ansi-styles__5.2.0__links//:defs.bzl", store_79 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__anymatch__3.1.2__links//:defs.bzl", store_80 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__argparse__1.0.10__links//:defs.bzl", store_81 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__babel-jest__28.1.3__at_babel_core_7.18.13__links//:defs.bzl", store_82 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__babel-plugin-istanbul__6.1.1__links//:defs.bzl", store_83 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__babel-plugin-jest-hoist__28.1.3__links//:defs.bzl", store_84 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__babel-preset-current-node-syntax__1.0.1__at_babel_core_7.18.13__links//:defs.bzl", store_85 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__babel-preset-jest__28.1.3__at_babel_core_7.18.13__links//:defs.bzl", store_86 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__balanced-match__1.0.2__links//:defs.bzl", store_87 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__brace-expansion__1.1.11__links//:defs.bzl", store_88 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__braces__3.0.2__links//:defs.bzl", store_89 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__browserslist__4.21.3__links//:defs.bzl", store_90 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__bser__2.1.1__links//:defs.bzl", store_91 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__buffer-from__1.1.2__links//:defs.bzl", store_92 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__callsites__3.1.0__links//:defs.bzl", store_93 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__camelcase__5.3.1__links//:defs.bzl", store_94 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__camelcase__6.3.0__links//:defs.bzl", store_95 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__caniuse-lite__1.0.30001383__links//:defs.bzl", store_96 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__chalk__2.4.2__links//:defs.bzl", store_97 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__chalk__4.1.2__links//:defs.bzl", store_98 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__char-regex__1.0.2__links//:defs.bzl", store_99 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__ci-info__3.3.2__links//:defs.bzl", store_100 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__cjs-module-lexer__1.2.2__links//:defs.bzl", store_101 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__cliui__7.0.4__links//:defs.bzl", store_102 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__co__4.6.0__links//:defs.bzl", store_103 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__collect-v8-coverage__1.0.1__links//:defs.bzl", store_104 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__color-convert__1.9.3__links//:defs.bzl", store_105 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__color-convert__2.0.1__links//:defs.bzl", store_106 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__color-name__1.1.3__links//:defs.bzl", store_107 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__color-name__1.1.4__links//:defs.bzl", store_108 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__concat-map__0.0.1__links//:defs.bzl", store_109 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__convert-source-map__1.8.0__links//:defs.bzl", store_110 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__cross-spawn__7.0.3__links//:defs.bzl", store_111 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__debug__4.3.4__links//:defs.bzl", store_112 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__dedent__0.7.0__links//:defs.bzl", store_113 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__deepmerge__4.2.2__links//:defs.bzl", store_114 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__detect-newline__3.1.0__links//:defs.bzl", store_115 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__diff-sequences__28.1.1__links//:defs.bzl", store_116 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__electron-to-chromium__1.4.233__links//:defs.bzl", store_117 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__emittery__0.10.2__links//:defs.bzl", store_118 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__emoji-regex__8.0.0__links//:defs.bzl", store_119 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__error-ex__1.3.2__links//:defs.bzl", store_120 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__escalade__3.1.1__links//:defs.bzl", store_121 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__escape-string-regexp__1.0.5__links//:defs.bzl", store_122 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__escape-string-regexp__2.0.0__links//:defs.bzl", store_123 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__esprima__4.0.1__links//:defs.bzl", store_124 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__execa__5.1.1__links//:defs.bzl", store_125 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__exit__0.1.2__links//:defs.bzl", store_126 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__expect__28.1.3__links//:defs.bzl", store_127 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__fast-json-stable-stringify__2.1.0__links//:defs.bzl", store_128 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__fb-watchman__2.0.1__links//:defs.bzl", store_129 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__fill-range__7.0.1__links//:defs.bzl", store_130 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__find-up__4.1.0__links//:defs.bzl", store_131 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__fs.realpath__1.0.0__links//:defs.bzl", store_132 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__fsevents__2.3.2__links//:defs.bzl", store_133 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__function-bind__1.1.1__links//:defs.bzl", store_134 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__gensync__1.0.0-beta.2__links//:defs.bzl", store_135 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__get-caller-file__2.0.5__links//:defs.bzl", store_136 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__get-package-type__0.1.0__links//:defs.bzl", store_137 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__get-stream__6.0.1__links//:defs.bzl", store_138 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__glob__7.2.3__links//:defs.bzl", store_139 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__globals__11.12.0__links//:defs.bzl", store_140 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__graceful-fs__4.2.10__links//:defs.bzl", store_141 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__has-flag__3.0.0__links//:defs.bzl", store_142 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__has-flag__4.0.0__links//:defs.bzl", store_143 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__has__1.0.3__links//:defs.bzl", store_144 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__html-escaper__2.0.2__links//:defs.bzl", store_145 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__human-signals__2.1.0__links//:defs.bzl", store_146 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__import-local__3.1.0__links//:defs.bzl", store_147 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__imurmurhash__0.1.4__links//:defs.bzl", store_148 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__inflight__1.0.6__links//:defs.bzl", store_149 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__inherits__2.0.4__links//:defs.bzl", store_150 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__is-arrayish__0.2.1__links//:defs.bzl", store_151 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__is-core-module__2.10.0__links//:defs.bzl", store_152 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__is-fullwidth-code-point__3.0.0__links//:defs.bzl", store_153 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__is-generator-fn__2.1.0__links//:defs.bzl", store_154 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__is-number__7.0.0__links//:defs.bzl", store_155 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__is-stream__2.0.1__links//:defs.bzl", store_156 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__isexe__2.0.0__links//:defs.bzl", store_157 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__istanbul-lib-coverage__3.2.0__links//:defs.bzl", store_158 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__istanbul-lib-instrument__5.2.0__links//:defs.bzl", store_159 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__istanbul-lib-report__3.0.0__links//:defs.bzl", store_160 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__istanbul-lib-source-maps__4.0.1__links//:defs.bzl", store_161 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__istanbul-reports__3.1.5__links//:defs.bzl", store_162 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-changed-files__28.1.3__links//:defs.bzl", store_163 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-circus__28.1.3__links//:defs.bzl", store_164 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-cli__28.1.0__links//:defs.bzl", link_165 = "npm_link_imported_package_store", store_165 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-config__28.1.3__links//:defs.bzl", store_166 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-config__28.1.3__at_types_node_18.7.13__links//:defs.bzl", store_167 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-diff__28.1.3__links//:defs.bzl", store_168 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-docblock__28.1.1__links//:defs.bzl", store_169 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-each__28.1.3__links//:defs.bzl", store_170 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-environment-node__28.1.3__links//:defs.bzl", store_171 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-get-type__28.0.2__links//:defs.bzl", store_172 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-haste-map__28.1.3__links//:defs.bzl", store_173 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-leak-detector__28.1.3__links//:defs.bzl", store_174 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-matcher-utils__28.1.3__links//:defs.bzl", store_175 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-message-util__28.1.3__links//:defs.bzl", store_176 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-mock__28.1.3__links//:defs.bzl", store_177 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-pnp-resolver__1.2.2__jest-resolve_28.1.3__links//:defs.bzl", store_178 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-regex-util__28.0.2__links//:defs.bzl", store_179 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-resolve-dependencies__28.1.3__links//:defs.bzl", store_180 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-resolve__28.1.3__links//:defs.bzl", store_181 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-runner__28.1.3__links//:defs.bzl", store_182 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-runtime__28.1.3__links//:defs.bzl", store_183 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-snapshot__28.1.3__links//:defs.bzl", store_184 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-util__28.1.3__links//:defs.bzl", store_185 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-validate__28.1.3__links//:defs.bzl", store_186 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-watcher__28.1.3__links//:defs.bzl", store_187 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jest-worker__28.1.3__links//:defs.bzl", store_188 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__js-tokens__4.0.0__links//:defs.bzl", store_189 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__js-yaml__3.14.1__links//:defs.bzl", store_190 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__jsesc__2.5.2__links//:defs.bzl", store_191 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__json-parse-even-better-errors__2.3.1__links//:defs.bzl", store_192 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__json5__2.2.1__links//:defs.bzl", store_193 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__kleur__3.0.3__links//:defs.bzl", store_194 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__leven__3.1.0__links//:defs.bzl", store_195 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__lines-and-columns__1.2.4__links//:defs.bzl", store_196 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__locate-path__5.0.0__links//:defs.bzl", store_197 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__lru-cache__6.0.0__links//:defs.bzl", store_198 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__make-dir__3.1.0__links//:defs.bzl", store_199 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__makeerror__1.0.12__links//:defs.bzl", store_200 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__merge-stream__2.0.0__links//:defs.bzl", store_201 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__micromatch__4.0.5__links//:defs.bzl", store_202 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__mimic-fn__2.1.0__links//:defs.bzl", store_203 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__minimatch__3.1.2__links//:defs.bzl", store_204 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__ms__2.1.2__links//:defs.bzl", store_205 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__natural-compare__1.4.0__links//:defs.bzl", store_206 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__node-int64__0.4.0__links//:defs.bzl", store_207 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__node-releases__2.0.6__links//:defs.bzl", store_208 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__normalize-path__3.0.0__links//:defs.bzl", store_209 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__npm-run-path__4.0.1__links//:defs.bzl", store_210 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__once__1.4.0__links//:defs.bzl", store_211 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__onetime__5.1.2__links//:defs.bzl", store_212 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__p-limit__2.3.0__links//:defs.bzl", store_213 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__p-limit__3.1.0__links//:defs.bzl", store_214 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__p-locate__4.1.0__links//:defs.bzl", store_215 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__p-try__2.2.0__links//:defs.bzl", store_216 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__parse-json__5.2.0__links//:defs.bzl", store_217 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__path-exists__4.0.0__links//:defs.bzl", store_218 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__path-is-absolute__1.0.1__links//:defs.bzl", store_219 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__path-key__3.1.1__links//:defs.bzl", store_220 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__path-parse__1.0.7__links//:defs.bzl", store_221 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__picocolors__1.0.0__links//:defs.bzl", store_222 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__picomatch__2.3.1__links//:defs.bzl", store_223 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__pirates__4.0.5__links//:defs.bzl", store_224 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__pkg-dir__4.2.0__links//:defs.bzl", store_225 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__pretty-format__28.1.3__links//:defs.bzl", store_226 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__prompts__2.4.2__links//:defs.bzl", store_227 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__react-is__18.2.0__links//:defs.bzl", store_228 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__require-directory__2.1.1__links//:defs.bzl", store_229 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__resolve-cwd__3.0.0__links//:defs.bzl", store_230 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__resolve-from__5.0.0__links//:defs.bzl", store_231 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__resolve.exports__1.1.0__links//:defs.bzl", store_232 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__resolve__1.22.1__links//:defs.bzl", store_233 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__rimraf__3.0.2__links//:defs.bzl", store_234 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__safe-buffer__5.1.2__links//:defs.bzl", store_235 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__semver__6.3.0__links//:defs.bzl", store_236 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__semver__7.3.7__links//:defs.bzl", store_237 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__shebang-command__2.0.0__links//:defs.bzl", store_238 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__shebang-regex__3.0.0__links//:defs.bzl", store_239 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__signal-exit__3.0.7__links//:defs.bzl", store_240 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__sisteransi__1.0.5__links//:defs.bzl", store_241 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__slash__3.0.0__links//:defs.bzl", store_242 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__source-map-support__0.5.13__links//:defs.bzl", store_243 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__source-map__0.6.1__links//:defs.bzl", store_244 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__sprintf-js__1.0.3__links//:defs.bzl", store_245 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__stack-utils__2.0.5__links//:defs.bzl", store_246 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__string-length__4.0.2__links//:defs.bzl", store_247 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__string-width__4.2.3__links//:defs.bzl", store_248 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__strip-ansi__6.0.1__links//:defs.bzl", store_249 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__strip-bom__4.0.0__links//:defs.bzl", store_250 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__strip-final-newline__2.0.0__links//:defs.bzl", store_251 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__strip-json-comments__3.1.1__links//:defs.bzl", store_252 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__supports-color__5.5.0__links//:defs.bzl", store_253 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__supports-color__7.2.0__links//:defs.bzl", store_254 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__supports-color__8.1.1__links//:defs.bzl", store_255 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__supports-hyperlinks__2.2.0__links//:defs.bzl", store_256 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__supports-preserve-symlinks-flag__1.0.0__links//:defs.bzl", store_257 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__terminal-link__2.1.1__links//:defs.bzl", store_258 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__test-exclude__6.0.0__links//:defs.bzl", store_259 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__tmpl__1.0.5__links//:defs.bzl", store_260 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__to-fast-properties__2.0.0__links//:defs.bzl", store_261 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__to-regex-range__5.0.1__links//:defs.bzl", store_262 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__type-detect__4.0.8__links//:defs.bzl", store_263 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__type-fest__0.21.3__links//:defs.bzl", store_264 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__update-browserslist-db__1.0.5__browserslist_4.21.3__links//:defs.bzl", store_265 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__v8-to-istanbul__9.0.1__links//:defs.bzl", store_266 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__walker__1.0.8__links//:defs.bzl", store_267 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__which__2.0.2__links//:defs.bzl", store_268 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__wrap-ansi__7.0.0__links//:defs.bzl", store_269 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__wrappy__1.0.2__links//:defs.bzl", store_270 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__write-file-atomic__4.0.2__links//:defs.bzl", store_271 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__y18n__5.0.8__links//:defs.bzl", store_272 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__yallist__4.0.0__links//:defs.bzl", store_273 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__yargs-parser__21.1.1__links//:defs.bzl", store_274 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__yargs__17.5.1__links//:defs.bzl", store_275 = "npm_imported_package_store") -load("@npm_aspect_rules_jest__yocto-queue__0.1.0__links//:defs.bzl", store_276 = "npm_imported_package_store") - -def npm_link_all_packages(name = "node_modules", imported_links = []): - """Generated list of npm_link_package() target generators and first-party linked packages corresponding to the packages in //:pnpm-lock.yaml - - Args: - name: name of catch all target to generate for all packages linked - imported_links: optional list link functions from manually imported packages - that were fetched with npm_import rules, - - For example, - - ``` - load("@npm//:defs.bzl", "npm_link_all_packages") - load("@npm_meaning-of-life__links//:defs.bzl", npm_link_meaning_of_life = "npm_link_imported_package") - - npm_link_all_packages( - name = "node_modules", - imported_links = [ - npm_link_meaning_of_life, - ], - )``` - """ - - root_package = "" - link_packages = [""] - is_root = native.package_name() == root_package - link = native.package_name() in link_packages - if not is_root and not link: - msg = "The npm_link_all_packages() macro loaded from @npm_aspect_rules_jest//:defs.bzl and called in bazel package '%s' may only be called in the bazel package(s) corresponding to the root package '' and packages ['']" % native.package_name() - fail(msg) - link_targets = [] - scope_targets = {} - - for link_fn in imported_links: - new_link_targets, new_scope_targets = link_fn(name) - link_targets.extend(new_link_targets) - for _scope, _targets in new_scope_targets.items(): - scope_targets[_scope] = scope_targets[_scope] + _targets if _scope in scope_targets else _targets - - if is_root: - store_0(name = "{}/@ampproject/remapping".format(name)) - store_1(name = "{}/@babel/code-frame".format(name)) - store_2(name = "{}/@babel/compat-data".format(name)) - store_3(name = "{}/@babel/core".format(name)) - store_4(name = "{}/@babel/generator".format(name)) - store_5(name = "{}/@babel/helper-compilation-targets".format(name)) - store_6(name = "{}/@babel/helper-environment-visitor".format(name)) - store_7(name = "{}/@babel/helper-function-name".format(name)) - store_8(name = "{}/@babel/helper-hoist-variables".format(name)) - store_9(name = "{}/@babel/helper-module-imports".format(name)) - store_10(name = "{}/@babel/helper-module-transforms".format(name)) - store_11(name = "{}/@babel/helper-plugin-utils".format(name)) - store_12(name = "{}/@babel/helper-simple-access".format(name)) - store_13(name = "{}/@babel/helper-split-export-declaration".format(name)) - store_14(name = "{}/@babel/helper-string-parser".format(name)) - store_15(name = "{}/@babel/helper-validator-identifier".format(name)) - store_16(name = "{}/@babel/helper-validator-option".format(name)) - store_17(name = "{}/@babel/helpers".format(name)) - store_18(name = "{}/@babel/highlight".format(name)) - store_19(name = "{}/@babel/parser".format(name)) - store_20(name = "{}/@babel/plugin-syntax-async-generators".format(name)) - store_21(name = "{}/@babel/plugin-syntax-bigint".format(name)) - store_22(name = "{}/@babel/plugin-syntax-class-properties".format(name)) - store_23(name = "{}/@babel/plugin-syntax-import-meta".format(name)) - store_24(name = "{}/@babel/plugin-syntax-json-strings".format(name)) - store_25(name = "{}/@babel/plugin-syntax-logical-assignment-operators".format(name)) - store_26(name = "{}/@babel/plugin-syntax-nullish-coalescing-operator".format(name)) - store_27(name = "{}/@babel/plugin-syntax-numeric-separator".format(name)) - store_28(name = "{}/@babel/plugin-syntax-object-rest-spread".format(name)) - store_29(name = "{}/@babel/plugin-syntax-optional-catch-binding".format(name)) - store_30(name = "{}/@babel/plugin-syntax-optional-chaining".format(name)) - store_31(name = "{}/@babel/plugin-syntax-top-level-await".format(name)) - store_32(name = "{}/@babel/plugin-syntax-typescript".format(name)) - store_33(name = "{}/@babel/template".format(name)) - store_34(name = "{}/@babel/traverse".format(name)) - store_35(name = "{}/@babel/types".format(name)) - store_36(name = "{}/@bcoe/v8-coverage".format(name)) - store_37(name = "{}/@istanbuljs/load-nyc-config".format(name)) - store_38(name = "{}/@istanbuljs/schema".format(name)) - store_39(name = "{}/@jest/console".format(name)) - store_40(name = "{}/@jest/core".format(name)) - store_41(name = "{}/@jest/environment".format(name)) - store_42(name = "{}/@jest/expect-utils".format(name)) - store_43(name = "{}/@jest/expect".format(name)) - store_44(name = "{}/@jest/fake-timers".format(name)) - store_45(name = "{}/@jest/globals".format(name)) - store_46(name = "{}/@jest/reporters".format(name)) - store_47(name = "{}/@jest/schemas".format(name)) - store_48(name = "{}/@jest/source-map".format(name)) - store_49(name = "{}/@jest/test-result".format(name)) - store_50(name = "{}/@jest/test-sequencer".format(name)) - store_51(name = "{}/@jest/transform".format(name)) - store_52(name = "{}/@jest/types".format(name)) - store_53(name = "{}/@jridgewell/gen-mapping".format(name)) - store_54(name = "{}/@jridgewell/gen-mapping".format(name)) - store_55(name = "{}/@jridgewell/resolve-uri".format(name)) - store_56(name = "{}/@jridgewell/set-array".format(name)) - store_57(name = "{}/@jridgewell/sourcemap-codec".format(name)) - store_58(name = "{}/@jridgewell/trace-mapping".format(name)) - store_59(name = "{}/@sinclair/typebox".format(name)) - store_60(name = "{}/@sinonjs/commons".format(name)) - store_61(name = "{}/@sinonjs/fake-timers".format(name)) - store_62(name = "{}/@types/babel__core".format(name)) - store_63(name = "{}/@types/babel__generator".format(name)) - store_64(name = "{}/@types/babel__template".format(name)) - store_65(name = "{}/@types/babel__traverse".format(name)) - store_66(name = "{}/@types/graceful-fs".format(name)) - store_67(name = "{}/@types/istanbul-lib-coverage".format(name)) - store_68(name = "{}/@types/istanbul-lib-report".format(name)) - store_69(name = "{}/@types/istanbul-reports".format(name)) - store_70(name = "{}/@types/node".format(name)) - store_71(name = "{}/@types/prettier".format(name)) - store_72(name = "{}/@types/stack-utils".format(name)) - store_73(name = "{}/@types/yargs-parser".format(name)) - store_74(name = "{}/@types/yargs".format(name)) - store_75(name = "{}/ansi-escapes".format(name)) - store_76(name = "{}/ansi-regex".format(name)) - store_77(name = "{}/ansi-styles".format(name)) - store_78(name = "{}/ansi-styles".format(name)) - store_79(name = "{}/ansi-styles".format(name)) - store_80(name = "{}/anymatch".format(name)) - store_81(name = "{}/argparse".format(name)) - store_82(name = "{}/babel-jest".format(name)) - store_83(name = "{}/babel-plugin-istanbul".format(name)) - store_84(name = "{}/babel-plugin-jest-hoist".format(name)) - store_85(name = "{}/babel-preset-current-node-syntax".format(name)) - store_86(name = "{}/babel-preset-jest".format(name)) - store_87(name = "{}/balanced-match".format(name)) - store_88(name = "{}/brace-expansion".format(name)) - store_89(name = "{}/braces".format(name)) - store_90(name = "{}/browserslist".format(name)) - store_91(name = "{}/bser".format(name)) - store_92(name = "{}/buffer-from".format(name)) - store_93(name = "{}/callsites".format(name)) - store_94(name = "{}/camelcase".format(name)) - store_95(name = "{}/camelcase".format(name)) - store_96(name = "{}/caniuse-lite".format(name)) - store_97(name = "{}/chalk".format(name)) - store_98(name = "{}/chalk".format(name)) - store_99(name = "{}/char-regex".format(name)) - store_100(name = "{}/ci-info".format(name)) - store_101(name = "{}/cjs-module-lexer".format(name)) - store_102(name = "{}/cliui".format(name)) - store_103(name = "{}/co".format(name)) - store_104(name = "{}/collect-v8-coverage".format(name)) - store_105(name = "{}/color-convert".format(name)) - store_106(name = "{}/color-convert".format(name)) - store_107(name = "{}/color-name".format(name)) - store_108(name = "{}/color-name".format(name)) - store_109(name = "{}/concat-map".format(name)) - store_110(name = "{}/convert-source-map".format(name)) - store_111(name = "{}/cross-spawn".format(name)) - store_112(name = "{}/debug".format(name)) - store_113(name = "{}/dedent".format(name)) - store_114(name = "{}/deepmerge".format(name)) - store_115(name = "{}/detect-newline".format(name)) - store_116(name = "{}/diff-sequences".format(name)) - store_117(name = "{}/electron-to-chromium".format(name)) - store_118(name = "{}/emittery".format(name)) - store_119(name = "{}/emoji-regex".format(name)) - store_120(name = "{}/error-ex".format(name)) - store_121(name = "{}/escalade".format(name)) - store_122(name = "{}/escape-string-regexp".format(name)) - store_123(name = "{}/escape-string-regexp".format(name)) - store_124(name = "{}/esprima".format(name)) - store_125(name = "{}/execa".format(name)) - store_126(name = "{}/exit".format(name)) - store_127(name = "{}/expect".format(name)) - store_128(name = "{}/fast-json-stable-stringify".format(name)) - store_129(name = "{}/fb-watchman".format(name)) - store_130(name = "{}/fill-range".format(name)) - store_131(name = "{}/find-up".format(name)) - store_132(name = "{}/fs.realpath".format(name)) - store_133(name = "{}/fsevents".format(name)) - store_134(name = "{}/function-bind".format(name)) - store_135(name = "{}/gensync".format(name)) - store_136(name = "{}/get-caller-file".format(name)) - store_137(name = "{}/get-package-type".format(name)) - store_138(name = "{}/get-stream".format(name)) - store_139(name = "{}/glob".format(name)) - store_140(name = "{}/globals".format(name)) - store_141(name = "{}/graceful-fs".format(name)) - store_142(name = "{}/has-flag".format(name)) - store_143(name = "{}/has-flag".format(name)) - store_144(name = "{}/has".format(name)) - store_145(name = "{}/html-escaper".format(name)) - store_146(name = "{}/human-signals".format(name)) - store_147(name = "{}/import-local".format(name)) - store_148(name = "{}/imurmurhash".format(name)) - store_149(name = "{}/inflight".format(name)) - store_150(name = "{}/inherits".format(name)) - store_151(name = "{}/is-arrayish".format(name)) - store_152(name = "{}/is-core-module".format(name)) - store_153(name = "{}/is-fullwidth-code-point".format(name)) - store_154(name = "{}/is-generator-fn".format(name)) - store_155(name = "{}/is-number".format(name)) - store_156(name = "{}/is-stream".format(name)) - store_157(name = "{}/isexe".format(name)) - store_158(name = "{}/istanbul-lib-coverage".format(name)) - store_159(name = "{}/istanbul-lib-instrument".format(name)) - store_160(name = "{}/istanbul-lib-report".format(name)) - store_161(name = "{}/istanbul-lib-source-maps".format(name)) - store_162(name = "{}/istanbul-reports".format(name)) - store_163(name = "{}/jest-changed-files".format(name)) - store_164(name = "{}/jest-circus".format(name)) - store_165(name = "{}/jest-cli".format(name)) - store_166(name = "{}/jest-config".format(name)) - store_167(name = "{}/jest-config".format(name)) - store_168(name = "{}/jest-diff".format(name)) - store_169(name = "{}/jest-docblock".format(name)) - store_170(name = "{}/jest-each".format(name)) - store_171(name = "{}/jest-environment-node".format(name)) - store_172(name = "{}/jest-get-type".format(name)) - store_173(name = "{}/jest-haste-map".format(name)) - store_174(name = "{}/jest-leak-detector".format(name)) - store_175(name = "{}/jest-matcher-utils".format(name)) - store_176(name = "{}/jest-message-util".format(name)) - store_177(name = "{}/jest-mock".format(name)) - store_178(name = "{}/jest-pnp-resolver".format(name)) - store_179(name = "{}/jest-regex-util".format(name)) - store_180(name = "{}/jest-resolve-dependencies".format(name)) - store_181(name = "{}/jest-resolve".format(name)) - store_182(name = "{}/jest-runner".format(name)) - store_183(name = "{}/jest-runtime".format(name)) - store_184(name = "{}/jest-snapshot".format(name)) - store_185(name = "{}/jest-util".format(name)) - store_186(name = "{}/jest-validate".format(name)) - store_187(name = "{}/jest-watcher".format(name)) - store_188(name = "{}/jest-worker".format(name)) - store_189(name = "{}/js-tokens".format(name)) - store_190(name = "{}/js-yaml".format(name)) - store_191(name = "{}/jsesc".format(name)) - store_192(name = "{}/json-parse-even-better-errors".format(name)) - store_193(name = "{}/json5".format(name)) - store_194(name = "{}/kleur".format(name)) - store_195(name = "{}/leven".format(name)) - store_196(name = "{}/lines-and-columns".format(name)) - store_197(name = "{}/locate-path".format(name)) - store_198(name = "{}/lru-cache".format(name)) - store_199(name = "{}/make-dir".format(name)) - store_200(name = "{}/makeerror".format(name)) - store_201(name = "{}/merge-stream".format(name)) - store_202(name = "{}/micromatch".format(name)) - store_203(name = "{}/mimic-fn".format(name)) - store_204(name = "{}/minimatch".format(name)) - store_205(name = "{}/ms".format(name)) - store_206(name = "{}/natural-compare".format(name)) - store_207(name = "{}/node-int64".format(name)) - store_208(name = "{}/node-releases".format(name)) - store_209(name = "{}/normalize-path".format(name)) - store_210(name = "{}/npm-run-path".format(name)) - store_211(name = "{}/once".format(name)) - store_212(name = "{}/onetime".format(name)) - store_213(name = "{}/p-limit".format(name)) - store_214(name = "{}/p-limit".format(name)) - store_215(name = "{}/p-locate".format(name)) - store_216(name = "{}/p-try".format(name)) - store_217(name = "{}/parse-json".format(name)) - store_218(name = "{}/path-exists".format(name)) - store_219(name = "{}/path-is-absolute".format(name)) - store_220(name = "{}/path-key".format(name)) - store_221(name = "{}/path-parse".format(name)) - store_222(name = "{}/picocolors".format(name)) - store_223(name = "{}/picomatch".format(name)) - store_224(name = "{}/pirates".format(name)) - store_225(name = "{}/pkg-dir".format(name)) - store_226(name = "{}/pretty-format".format(name)) - store_227(name = "{}/prompts".format(name)) - store_228(name = "{}/react-is".format(name)) - store_229(name = "{}/require-directory".format(name)) - store_230(name = "{}/resolve-cwd".format(name)) - store_231(name = "{}/resolve-from".format(name)) - store_232(name = "{}/resolve.exports".format(name)) - store_233(name = "{}/resolve".format(name)) - store_234(name = "{}/rimraf".format(name)) - store_235(name = "{}/safe-buffer".format(name)) - store_236(name = "{}/semver".format(name)) - store_237(name = "{}/semver".format(name)) - store_238(name = "{}/shebang-command".format(name)) - store_239(name = "{}/shebang-regex".format(name)) - store_240(name = "{}/signal-exit".format(name)) - store_241(name = "{}/sisteransi".format(name)) - store_242(name = "{}/slash".format(name)) - store_243(name = "{}/source-map-support".format(name)) - store_244(name = "{}/source-map".format(name)) - store_245(name = "{}/sprintf-js".format(name)) - store_246(name = "{}/stack-utils".format(name)) - store_247(name = "{}/string-length".format(name)) - store_248(name = "{}/string-width".format(name)) - store_249(name = "{}/strip-ansi".format(name)) - store_250(name = "{}/strip-bom".format(name)) - store_251(name = "{}/strip-final-newline".format(name)) - store_252(name = "{}/strip-json-comments".format(name)) - store_253(name = "{}/supports-color".format(name)) - store_254(name = "{}/supports-color".format(name)) - store_255(name = "{}/supports-color".format(name)) - store_256(name = "{}/supports-hyperlinks".format(name)) - store_257(name = "{}/supports-preserve-symlinks-flag".format(name)) - store_258(name = "{}/terminal-link".format(name)) - store_259(name = "{}/test-exclude".format(name)) - store_260(name = "{}/tmpl".format(name)) - store_261(name = "{}/to-fast-properties".format(name)) - store_262(name = "{}/to-regex-range".format(name)) - store_263(name = "{}/type-detect".format(name)) - store_264(name = "{}/type-fest".format(name)) - store_265(name = "{}/update-browserslist-db".format(name)) - store_266(name = "{}/v8-to-istanbul".format(name)) - store_267(name = "{}/walker".format(name)) - store_268(name = "{}/which".format(name)) - store_269(name = "{}/wrap-ansi".format(name)) - store_270(name = "{}/wrappy".format(name)) - store_271(name = "{}/write-file-atomic".format(name)) - store_272(name = "{}/y18n".format(name)) - store_273(name = "{}/yallist".format(name)) - store_274(name = "{}/yargs-parser".format(name)) - store_275(name = "{}/yargs".format(name)) - store_276(name = "{}/yocto-queue".format(name)) - if link: - if native.package_name() == "": - link_targets.append(link_50(name = "{}/@jest/test-sequencer".format(name))) - scope_targets["@jest"] = scope_targets["@jest"] + [link_targets[-1]] if "@jest" in scope_targets else [link_targets[-1]] - link_targets.append(link_165(name = "{}/jest-cli".format(name))) - - for scope, scoped_targets in scope_targets.items(): - _js_library( - name = "{}/{}".format(name, scope), - srcs = scoped_targets, - tags = ["manual"], - visibility = ["//visibility:public"], - ) - - _js_library( - name = name, - srcs = link_targets, - tags = ["manual"], - visibility = ["//visibility:public"], - ) diff --git a/jest/private/v28.1.0/pnpm-lock.yaml b/jest/private/v28.1.0/pnpm-lock.yaml new file mode 100644 index 0000000..c99b624 --- /dev/null +++ b/jest/private/v28.1.0/pnpm-lock.yaml @@ -0,0 +1,2227 @@ +lockfileVersion: 5.4 + +specifiers: + jest-cli: 28.1.0 + +dependencies: + jest-cli: 28.1.0 + +packages: + + /@ampproject/remapping/2.2.0: + resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.1.1 + '@jridgewell/trace-mapping': 0.3.17 + dev: false + + /@babel/code-frame/7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: false + + /@babel/compat-data/7.20.1: + resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/core/7.19.6: + resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.1 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 + '@babel/helper-module-transforms': 7.19.6 + '@babel/helpers': 7.20.1 + '@babel/parser': 7.20.1 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/generator/7.20.1: + resolution: {integrity: sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.0 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + dev: false + + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.6: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.1 + '@babel/core': 7.19.6 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + semver: 6.3.0 + dev: false + + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-function-name/7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/types': 7.20.0 + dev: false + + /@babel/helper-hoist-variables/7.18.6: + resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.0 + dev: false + + /@babel/helper-module-imports/7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.0 + dev: false + + /@babel/helper-module-transforms/7.19.6: + resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.19.4 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/helper-plugin-utils/7.19.0: + resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-simple-access/7.19.4: + resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.0 + dev: false + + /@babel/helper-split-export-declaration/7.18.6: + resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.0 + dev: false + + /@babel/helper-string-parser/7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-validator-identifier/7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-validator-option/7.18.6: + resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helpers/7.20.1: + resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/highlight/7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.19.1 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: false + + /@babel/parser/7.20.1: + resolution: {integrity: sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.20.0 + dev: false + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.6: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.6: + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.6: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.6: + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.6: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.6: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.6: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.6: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.6: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.6: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.6: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.6: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.19.6: + resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.19.0 + dev: false + + /@babel/template/7.18.10: + resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.20.1 + '@babel/types': 7.20.0 + dev: false + + /@babel/traverse/7.20.1: + resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.1 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.20.1 + '@babel/types': 7.20.0 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/types/7.20.0: + resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + dev: false + + /@bcoe/v8-coverage/0.2.3: + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + dev: false + + /@istanbuljs/load-nyc-config/1.1.0: + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + dev: false + + /@istanbuljs/schema/0.1.3: + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + dev: false + + /@jest/console/28.1.3: + resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + chalk: 4.1.2 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + dev: false + + /@jest/core/28.1.3: + resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/console': 28.1.3 + '@jest/reporters': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.5.0 + exit: 0.1.2 + graceful-fs: 4.2.10 + jest-changed-files: 28.1.3 + jest-config: 28.1.3_@types+node@18.11.9 + jest-haste-map: 28.1.3 + jest-message-util: 28.1.3 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-resolve-dependencies: 28.1.3 + jest-runner: 28.1.3 + jest-runtime: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + jest-watcher: 28.1.3 + micromatch: 4.0.5 + pretty-format: 28.1.3 + rimraf: 3.0.2 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - supports-color + - ts-node + dev: false + + /@jest/environment/28.1.3: + resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + jest-mock: 28.1.3 + dev: false + + /@jest/expect-utils/28.1.3: + resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + jest-get-type: 28.0.2 + dev: false + + /@jest/expect/28.1.3: + resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + expect: 28.1.3 + jest-snapshot: 28.1.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@jest/fake-timers/28.1.3: + resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 18.11.9 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-util: 28.1.3 + dev: false + + /@jest/globals/28.1.3: + resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/types': 28.1.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@jest/reporters/28.1.3: + resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.17 + '@types/node': 18.11.9 + chalk: 4.1.2 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 5.2.1 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.5 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + jest-worker: 28.1.3 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + terminal-link: 2.1.1 + v8-to-istanbul: 9.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /@jest/schemas/28.1.3: + resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@sinclair/typebox': 0.24.51 + dev: false + + /@jest/source-map/28.1.2: + resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + callsites: 3.1.0 + graceful-fs: 4.2.10 + dev: false + + /@jest/test-result/28.1.3: + resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/console': 28.1.3 + '@jest/types': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + collect-v8-coverage: 1.0.1 + dev: false + + /@jest/test-sequencer/28.1.3: + resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/test-result': 28.1.3 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + slash: 3.0.0 + dev: false + + /@jest/transform/28.1.3: + resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/core': 7.19.6 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.17 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 1.9.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + micromatch: 4.0.5 + pirates: 4.0.5 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + dev: false + + /@jest/types/28.1.3: + resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/schemas': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 18.11.9 + '@types/yargs': 17.0.13 + chalk: 4.1.2 + dev: false + + /@jridgewell/gen-mapping/0.1.1: + resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: false + + /@jridgewell/gen-mapping/0.3.2: + resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.17 + dev: false + + /@jridgewell/resolve-uri/3.1.0: + resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + engines: {node: '>=6.0.0'} + dev: false + + /@jridgewell/set-array/1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: false + + /@jridgewell/sourcemap-codec/1.4.14: + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + dev: false + + /@jridgewell/trace-mapping/0.3.17: + resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: false + + /@sinclair/typebox/0.24.51: + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + dev: false + + /@sinonjs/commons/1.8.4: + resolution: {integrity: sha512-RpmQdHVo8hCEHDVpO39zToS9jOhR6nw+/lQAzRNq9ErrGV9IeHM71XCn68svVl/euFeVW6BWX4p35gkhbOcSIQ==} + dependencies: + type-detect: 4.0.8 + dev: false + + /@sinonjs/fake-timers/9.1.2: + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + dependencies: + '@sinonjs/commons': 1.8.4 + dev: false + + /@types/babel__core/7.1.19: + resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} + dependencies: + '@babel/parser': 7.20.1 + '@babel/types': 7.20.0 + '@types/babel__generator': 7.6.4 + '@types/babel__template': 7.4.1 + '@types/babel__traverse': 7.18.2 + dev: false + + /@types/babel__generator/7.6.4: + resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} + dependencies: + '@babel/types': 7.20.0 + dev: false + + /@types/babel__template/7.4.1: + resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} + dependencies: + '@babel/parser': 7.20.1 + '@babel/types': 7.20.0 + dev: false + + /@types/babel__traverse/7.18.2: + resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} + dependencies: + '@babel/types': 7.20.0 + dev: false + + /@types/graceful-fs/4.1.5: + resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} + dependencies: + '@types/node': 18.11.9 + dev: false + + /@types/istanbul-lib-coverage/2.0.4: + resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + dev: false + + /@types/istanbul-lib-report/3.0.0: + resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + dev: false + + /@types/istanbul-reports/3.0.1: + resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + dependencies: + '@types/istanbul-lib-report': 3.0.0 + dev: false + + /@types/node/18.11.9: + resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} + dev: false + + /@types/prettier/2.7.1: + resolution: {integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==} + dev: false + + /@types/stack-utils/2.0.1: + resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + dev: false + + /@types/yargs-parser/21.0.0: + resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + dev: false + + /@types/yargs/17.0.13: + resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==} + dependencies: + '@types/yargs-parser': 21.0.0 + dev: false + + /ansi-escapes/4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.21.3 + dev: false + + /ansi-regex/5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: false + + /ansi-styles/3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: false + + /ansi-styles/4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: false + + /ansi-styles/5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + dev: false + + /anymatch/3.1.2: + resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: false + + /argparse/1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: false + + /babel-jest/28.1.3_@babel+core@7.19.6: + resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.19.6 + '@jest/transform': 28.1.3 + '@types/babel__core': 7.1.19 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 28.1.3_@babel+core@7.19.6 + chalk: 4.1.2 + graceful-fs: 4.2.10 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: false + + /babel-plugin-istanbul/6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + dependencies: + '@babel/helper-plugin-utils': 7.19.0 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + dev: false + + /babel-plugin-jest-hoist/28.1.3: + resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/template': 7.18.10 + '@babel/types': 7.20.0 + '@types/babel__core': 7.1.19 + '@types/babel__traverse': 7.18.2 + dev: false + + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.6: + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.19.6 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.6 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.6 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.6 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.6 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.6 + dev: false + + /babel-preset-jest/28.1.3_@babel+core@7.19.6: + resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.19.6 + babel-plugin-jest-hoist: 28.1.3 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.6 + dev: false + + /balanced-match/1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: false + + /brace-expansion/1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: false + + /braces/3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: false + + /browserslist/4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001429 + electron-to-chromium: 1.4.284 + node-releases: 2.0.6 + update-browserslist-db: 1.0.10_browserslist@4.21.4 + dev: false + + /bser/2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + dependencies: + node-int64: 0.4.0 + dev: false + + /buffer-from/1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: false + + /callsites/3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: false + + /camelcase/5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: false + + /camelcase/6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: false + + /caniuse-lite/1.0.30001429: + resolution: {integrity: sha512-511ThLu1hF+5RRRt0zYCf2U2yRr9GPF6m5y90SBCWsvSoYoW7yAGlv/elyPaNfvGCkp6kj/KFZWU0BMA69Prsg==} + dev: false + + /chalk/2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: false + + /chalk/4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: false + + /char-regex/1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + dev: false + + /ci-info/3.5.0: + resolution: {integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==} + dev: false + + /cjs-module-lexer/1.2.2: + resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} + dev: false + + /cliui/8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: false + + /co/4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + dev: false + + /collect-v8-coverage/1.0.1: + resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} + dev: false + + /color-convert/1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: false + + /color-convert/2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: false + + /color-name/1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: false + + /color-name/1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: false + + /concat-map/0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: false + + /convert-source-map/1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + dev: false + + /cross-spawn/7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: false + + /debug/4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: false + + /dedent/0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dev: false + + /deepmerge/4.2.2: + resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} + engines: {node: '>=0.10.0'} + dev: false + + /detect-newline/3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + dev: false + + /diff-sequences/28.1.1: + resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: false + + /electron-to-chromium/1.4.284: + resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} + dev: false + + /emittery/0.10.2: + resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} + engines: {node: '>=12'} + dev: false + + /emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: false + + /error-ex/1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: false + + /escalade/3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: false + + /escape-string-regexp/1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: false + + /escape-string-regexp/2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + dev: false + + /esprima/4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: false + + /execa/5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: false + + /exit/0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + dev: false + + /expect/28.1.3: + resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/expect-utils': 28.1.3 + jest-get-type: 28.0.2 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + dev: false + + /fast-json-stable-stringify/2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: false + + /fb-watchman/2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + dependencies: + bser: 2.1.1 + dev: false + + /fill-range/7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: false + + /find-up/4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: false + + /fs.realpath/1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: false + + /fsevents/2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /function-bind/1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: false + + /gensync/1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: false + + /get-caller-file/2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: false + + /get-package-type/0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + dev: false + + /get-stream/6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: false + + /glob/7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: false + + /globals/11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: false + + /graceful-fs/4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + dev: false + + /has-flag/3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: false + + /has-flag/4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: false + + /has/1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + dev: false + + /html-escaper/2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + dev: false + + /human-signals/2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: false + + /import-local/3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + dev: false + + /imurmurhash/0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: false + + /inflight/1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: false + + /inherits/2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: false + + /is-arrayish/0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: false + + /is-core-module/2.11.0: + resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} + dependencies: + has: 1.0.3 + dev: false + + /is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: false + + /is-generator-fn/2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + dev: false + + /is-number/7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: false + + /is-stream/2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: false + + /isexe/2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: false + + /istanbul-lib-coverage/3.2.0: + resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} + engines: {node: '>=8'} + dev: false + + /istanbul-lib-instrument/5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + dependencies: + '@babel/core': 7.19.6 + '@babel/parser': 7.20.1 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.0 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + + /istanbul-lib-report/3.0.0: + resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} + engines: {node: '>=8'} + dependencies: + istanbul-lib-coverage: 3.2.0 + make-dir: 3.1.0 + supports-color: 7.2.0 + dev: false + + /istanbul-lib-source-maps/4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + dependencies: + debug: 4.3.4 + istanbul-lib-coverage: 3.2.0 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + dev: false + + /istanbul-reports/3.1.5: + resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} + engines: {node: '>=8'} + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.0 + dev: false + + /jest-changed-files/28.1.3: + resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + execa: 5.1.1 + p-limit: 3.1.0 + dev: false + + /jest-circus/28.1.3: + resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + chalk: 4.1.2 + co: 4.6.0 + dedent: 0.7.0 + is-generator-fn: 2.1.0 + jest-each: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-runtime: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + p-limit: 3.1.0 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.5 + transitivePeerDependencies: + - supports-color + dev: false + + /jest-cli/28.1.0: + resolution: {integrity: sha512-fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + jest-config: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + prompts: 2.4.2 + yargs: 17.6.1 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: false + + /jest-config/28.1.3: + resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.19.6 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + babel-jest: 28.1.3_@babel+core@7.19.6 + chalk: 4.1.2 + ci-info: 3.5.0 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 28.1.3 + jest-environment-node: 28.1.3 + jest-get-type: 28.0.2 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-runner: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 28.1.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: false + + /jest-config/28.1.3_@types+node@18.11.9: + resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.19.6 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + babel-jest: 28.1.3_@babel+core@7.19.6 + chalk: 4.1.2 + ci-info: 3.5.0 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 28.1.3 + jest-environment-node: 28.1.3 + jest-get-type: 28.0.2 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-runner: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 28.1.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: false + + /jest-diff/28.1.3: + resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + diff-sequences: 28.1.1 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: false + + /jest-docblock/28.1.1: + resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + detect-newline: 3.1.0 + dev: false + + /jest-each/28.1.3: + resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + chalk: 4.1.2 + jest-get-type: 28.0.2 + jest-util: 28.1.3 + pretty-format: 28.1.3 + dev: false + + /jest-environment-node/28.1.3: + resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + jest-mock: 28.1.3 + jest-util: 28.1.3 + dev: false + + /jest-get-type/28.0.2: + resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: false + + /jest-haste-map/28.1.3: + resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/graceful-fs': 4.1.5 + '@types/node': 18.11.9 + anymatch: 3.1.2 + fb-watchman: 2.0.2 + graceful-fs: 4.2.10 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + jest-worker: 28.1.3 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.2 + dev: false + + /jest-leak-detector/28.1.3: + resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: false + + /jest-matcher-utils/28.1.3: + resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: false + + /jest-message-util/28.1.3: + resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/code-frame': 7.18.6 + '@jest/types': 28.1.3 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.10 + micromatch: 4.0.5 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.5 + dev: false + + /jest-mock/28.1.3: + resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + dev: false + + /jest-pnp-resolver/1.2.2_jest-resolve@28.1.3: + resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 28.1.3 + dev: false + + /jest-regex-util/28.0.2: + resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: false + + /jest-resolve-dependencies/28.1.3: + resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + jest-regex-util: 28.0.2 + jest-snapshot: 28.1.3 + transitivePeerDependencies: + - supports-color + dev: false + + /jest-resolve/28.1.3: + resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + jest-pnp-resolver: 1.2.2_jest-resolve@28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + resolve: 1.22.1 + resolve.exports: 1.1.0 + slash: 3.0.0 + dev: false + + /jest-runner/28.1.3: + resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/console': 28.1.3 + '@jest/environment': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + chalk: 4.1.2 + emittery: 0.10.2 + graceful-fs: 4.2.10 + jest-docblock: 28.1.1 + jest-environment-node: 28.1.3 + jest-haste-map: 28.1.3 + jest-leak-detector: 28.1.3 + jest-message-util: 28.1.3 + jest-resolve: 28.1.3 + jest-runtime: 28.1.3 + jest-util: 28.1.3 + jest-watcher: 28.1.3 + jest-worker: 28.1.3 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color + dev: false + + /jest-runtime/28.1.3: + resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/globals': 28.1.3 + '@jest/source-map': 28.1.2 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + chalk: 4.1.2 + cjs-module-lexer: 1.2.2 + collect-v8-coverage: 1.0.1 + execa: 5.1.1 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-haste-map: 28.1.3 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: false + + /jest-snapshot/28.1.3: + resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/core': 7.19.6 + '@babel/generator': 7.20.1 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.19.6 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 + '@jest/expect-utils': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/babel__traverse': 7.18.2 + '@types/prettier': 2.7.1 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.6 + chalk: 4.1.2 + expect: 28.1.3 + graceful-fs: 4.2.10 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + jest-haste-map: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + natural-compare: 1.4.0 + pretty-format: 28.1.3 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + dev: false + + /jest-util/28.1.3: + resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + chalk: 4.1.2 + ci-info: 3.5.0 + graceful-fs: 4.2.10 + picomatch: 2.3.1 + dev: false + + /jest-validate/28.1.3: + resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 28.0.2 + leven: 3.1.0 + pretty-format: 28.1.3 + dev: false + + /jest-watcher/28.1.3: + resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.9 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.10.2 + jest-util: 28.1.3 + string-length: 4.0.2 + dev: false + + /jest-worker/28.1.3: + resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@types/node': 18.11.9 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: false + + /js-tokens/4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: false + + /js-yaml/3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: false + + /jsesc/2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: false + + /json-parse-even-better-errors/2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: false + + /json5/2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + hasBin: true + dev: false + + /kleur/3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + dev: false + + /leven/3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + dev: false + + /lines-and-columns/1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: false + + /locate-path/5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: false + + /lru-cache/6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: false + + /make-dir/3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.0 + dev: false + + /makeerror/1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + dependencies: + tmpl: 1.0.5 + dev: false + + /merge-stream/2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: false + + /micromatch/4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: false + + /mimic-fn/2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: false + + /minimatch/3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: false + + /ms/2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: false + + /natural-compare/1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: false + + /node-int64/0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + dev: false + + /node-releases/2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + dev: false + + /normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: false + + /npm-run-path/4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: false + + /once/1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: false + + /onetime/5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: false + + /p-limit/2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: false + + /p-limit/3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: false + + /p-locate/4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: false + + /p-try/2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: false + + /parse-json/5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.18.6 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: false + + /path-exists/4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: false + + /path-is-absolute/1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: false + + /path-key/3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: false + + /path-parse/1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: false + + /picocolors/1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + dev: false + + /picomatch/2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: false + + /pirates/4.0.5: + resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} + engines: {node: '>= 6'} + dev: false + + /pkg-dir/4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + dev: false + + /pretty-format/28.1.3: + resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/schemas': 28.1.3 + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: false + + /prompts/2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + dev: false + + /react-is/18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + dev: false + + /require-directory/2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: false + + /resolve-cwd/3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + dependencies: + resolve-from: 5.0.0 + dev: false + + /resolve-from/5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: false + + /resolve.exports/1.1.0: + resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} + engines: {node: '>=10'} + dev: false + + /resolve/1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + hasBin: true + dependencies: + is-core-module: 2.11.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: false + + /rimraf/3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: false + + /semver/6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: false + + /semver/7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: false + + /shebang-command/2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: false + + /shebang-regex/3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: false + + /signal-exit/3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: false + + /sisteransi/1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + dev: false + + /slash/3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: false + + /source-map-support/0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: false + + /source-map/0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + dev: false + + /sprintf-js/1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + dev: false + + /stack-utils/2.0.5: + resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} + engines: {node: '>=10'} + dependencies: + escape-string-regexp: 2.0.0 + dev: false + + /string-length/4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + dev: false + + /string-width/4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: false + + /strip-ansi/6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: false + + /strip-bom/4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + dev: false + + /strip-final-newline/2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: false + + /strip-json-comments/3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: false + + /supports-color/5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: false + + /supports-color/7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: false + + /supports-color/8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + dependencies: + has-flag: 4.0.0 + dev: false + + /supports-hyperlinks/2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + dev: false + + /supports-preserve-symlinks-flag/1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: false + + /terminal-link/2.1.1: + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} + dependencies: + ansi-escapes: 4.3.2 + supports-hyperlinks: 2.3.0 + dev: false + + /test-exclude/6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + dev: false + + /tmpl/1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + dev: false + + /to-fast-properties/2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + dev: false + + /to-regex-range/5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: false + + /type-detect/4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + dev: false + + /type-fest/0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + dev: false + + /update-browserslist-db/1.0.10_browserslist@4.21.4: + resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.4 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: false + + /v8-to-istanbul/9.0.1: + resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} + engines: {node: '>=10.12.0'} + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + '@types/istanbul-lib-coverage': 2.0.4 + convert-source-map: 1.9.0 + dev: false + + /walker/1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + dependencies: + makeerror: 1.0.12 + dev: false + + /which/2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: false + + /wrap-ansi/7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: false + + /wrappy/1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: false + + /write-file-atomic/4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: false + + /y18n/5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: false + + /yallist/4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: false + + /yargs-parser/21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: false + + /yargs/17.6.1: + resolution: {integrity: sha512-leBuCGrL4dAd6ispNOGsJlhd0uZ6Qehkbu/B9KCR+Pxa/NVdNwi+i31lo0buCm6XxhJQFshXCD0/evfV4xfoUg==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: false + + /yocto-queue/0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: false diff --git a/jest/private/v28.1.0/repositories.bzl b/jest/private/v28.1.0/repositories.bzl deleted file mode 100755 index e77808c..0000000 --- a/jest/private/v28.1.0/repositories.bzl +++ /dev/null @@ -1,9682 +0,0 @@ -"@generated by @aspect_rules_js//npm/private:npm_translate_lock.bzl from //:pnpm-lock.yaml" - -load("@aspect_rules_js//npm:npm_import.bzl", "npm_import") - -def npm_repositories(): - "Generated npm_import repository rules corresponding to npm packages in //:pnpm-lock.yaml" - npm_import( - name = "npm_aspect_rules_jest__at_ampproject_remapping__2.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@ampproject/remapping", - version = "2.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - deps = { - "@jridgewell/gen-mapping": "0.1.1", - "@jridgewell/trace-mapping": "0.3.15", - }, - transitive_closure = { - "@ampproject/remapping": ["2.2.0"], - "@jridgewell/gen-mapping": ["0.1.1"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/set-array": ["1.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_code-frame__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/code-frame", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - deps = { - "@babel/highlight": "7.18.6", - }, - transitive_closure = { - "@babel/code-frame": ["7.18.6"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_compat-data__7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/compat-data", - version = "7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==", - transitive_closure = { - "@babel/compat-data": ["7.18.13"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_core__7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/core", - version = "7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==", - deps = { - "@ampproject/remapping": "2.2.0", - "@babel/code-frame": "7.18.6", - "@babel/generator": "7.18.13", - "@babel/helper-compilation-targets": "7.18.9_@babel+core@7.18.13", - "@babel/helper-module-transforms": "7.18.9", - "@babel/helpers": "7.18.9", - "@babel/parser": "7.18.13", - "@babel/template": "7.18.10", - "@babel/traverse": "7.18.13", - "@babel/types": "7.18.13", - "convert-source-map": "1.8.0", - "debug": "4.3.4", - "gensync": "1.0.0-beta.2", - "json5": "2.2.1", - "semver": "6.3.0", - }, - transitive_closure = { - "@babel/core": ["7.18.13"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_generator__7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/generator", - version = "7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==", - deps = { - "@babel/types": "7.18.13", - "@jridgewell/gen-mapping": "0.3.2", - "jsesc": "2.5.2", - }, - transitive_closure = { - "@babel/generator": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jridgewell/gen-mapping": ["0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-compilation-targets__7.18.9__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-compilation-targets", - version = "7.18.9_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", - deps = { - "@babel/compat-data": "7.18.13", - "@babel/core": "7.18.13", - "@babel/helper-validator-option": "7.18.6", - "browserslist": "4.21.3", - "semver": "6.3.0", - }, - transitive_closure = { - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/compat-data": ["7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "semver": ["6.3.0"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-environment-visitor__7.18.9", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-environment-visitor", - version = "7.18.9", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", - transitive_closure = { - "@babel/helper-environment-visitor": ["7.18.9"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-function-name__7.18.9", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-function-name", - version = "7.18.9", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", - deps = { - "@babel/template": "7.18.10", - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/helper-function-name": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-hoist-variables__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-hoist-variables", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - deps = { - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-module-imports__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-module-imports", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - deps = { - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/helper-module-imports": ["7.18.6"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-module-transforms__7.18.9", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-module-transforms", - version = "7.18.9", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", - deps = { - "@babel/helper-environment-visitor": "7.18.9", - "@babel/helper-module-imports": "7.18.6", - "@babel/helper-simple-access": "7.18.6", - "@babel/helper-split-export-declaration": "7.18.6", - "@babel/helper-validator-identifier": "7.18.6", - "@babel/template": "7.18.10", - "@babel/traverse": "7.18.13", - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@jridgewell/gen-mapping": ["0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-plugin-utils__7.18.9", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-plugin-utils", - version = "7.18.9", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==", - transitive_closure = { - "@babel/helper-plugin-utils": ["7.18.9"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-simple-access__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-simple-access", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", - deps = { - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/helper-simple-access": ["7.18.6"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-split-export-declaration__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-split-export-declaration", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - deps = { - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-string-parser__7.18.10", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-string-parser", - version = "7.18.10", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", - transitive_closure = { - "@babel/helper-string-parser": ["7.18.10"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-validator-identifier__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-validator-identifier", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", - transitive_closure = { - "@babel/helper-validator-identifier": ["7.18.6"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helper-validator-option__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helper-validator-option", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", - transitive_closure = { - "@babel/helper-validator-option": ["7.18.6"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_helpers__7.18.9", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/helpers", - version = "7.18.9", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", - deps = { - "@babel/template": "7.18.10", - "@babel/traverse": "7.18.13", - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/helpers": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@jridgewell/gen-mapping": ["0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_highlight__7.18.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/highlight", - version = "7.18.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - deps = { - "@babel/helper-validator-identifier": "7.18.6", - "chalk": "2.4.2", - "js-tokens": "4.0.0", - }, - transitive_closure = { - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_parser__7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/parser", - version = "7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==", - deps = { - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/parser": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-async-generators__7.8.4__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-async-generators", - version = "7.8.4_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-bigint__7.8.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-bigint", - version = "7.8.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-class-properties__7.12.13__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-class-properties", - version = "7.12.13_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-import-meta__7.10.4__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-import-meta", - version = "7.10.4_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-json-strings__7.8.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-json-strings", - version = "7.8.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-logical-assignment-operators__7.10.4__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-logical-assignment-operators", - version = "7.10.4_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-nullish-coalescing-operator__7.8.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-nullish-coalescing-operator", - version = "7.8.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-numeric-separator__7.10.4__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-numeric-separator", - version = "7.10.4_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-object-rest-spread__7.8.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-object-rest-spread", - version = "7.8.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-optional-catch-binding__7.8.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-optional-catch-binding", - version = "7.8.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-optional-chaining__7.8.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-optional-chaining", - version = "7.8.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-top-level-await__7.14.5__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-top-level-await", - version = "7.14.5_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_plugin-syntax-typescript__7.18.6__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/plugin-syntax-typescript", - version = "7.18.6_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", - deps = { - "@babel/core": "7.18.13", - "@babel/helper-plugin-utils": "7.18.9", - }, - transitive_closure = { - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_template__7.18.10", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/template", - version = "7.18.10", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", - deps = { - "@babel/code-frame": "7.18.6", - "@babel/parser": "7.18.13", - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@babel/template": ["7.18.10"], - "@babel/code-frame": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_traverse__7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/traverse", - version = "7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==", - deps = { - "@babel/code-frame": "7.18.6", - "@babel/generator": "7.18.13", - "@babel/helper-environment-visitor": "7.18.9", - "@babel/helper-function-name": "7.18.9", - "@babel/helper-hoist-variables": "7.18.6", - "@babel/helper-split-export-declaration": "7.18.6", - "@babel/parser": "7.18.13", - "@babel/types": "7.18.13", - "debug": "4.3.4", - "globals": "11.12.0", - }, - transitive_closure = { - "@babel/traverse": ["7.18.13"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "@babel/types": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_babel_types__7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@babel/types", - version = "7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==", - deps = { - "@babel/helper-string-parser": "7.18.10", - "@babel/helper-validator-identifier": "7.18.6", - "to-fast-properties": "2.0.0", - }, - transitive_closure = { - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_bcoe_v8-coverage__0.2.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@bcoe/v8-coverage", - version = "0.2.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - transitive_closure = { - "@bcoe/v8-coverage": ["0.2.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_istanbuljs_load-nyc-config__1.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@istanbuljs/load-nyc-config", - version = "1.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - deps = { - "camelcase": "5.3.1", - "find-up": "4.1.0", - "get-package-type": "0.1.0", - "js-yaml": "3.14.1", - "resolve-from": "5.0.0", - }, - transitive_closure = { - "@istanbuljs/load-nyc-config": ["1.1.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_istanbuljs_schema__0.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@istanbuljs/schema", - version = "0.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - transitive_closure = { - "@istanbuljs/schema": ["0.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_console__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/console", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", - deps = { - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "chalk": "4.1.2", - "jest-message-util": "28.1.3", - "jest-util": "28.1.3", - "slash": "3.0.0", - }, - transitive_closure = { - "@jest/console": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "chalk": ["2.4.2", "4.1.2"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "slash": ["3.0.0"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "supports-color": ["7.2.0", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_core__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/core", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==", - deps = { - "@jest/console": "28.1.3", - "@jest/reporters": "28.1.3", - "@jest/test-result": "28.1.3", - "@jest/transform": "28.1.3", - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "ansi-escapes": "4.3.2", - "chalk": "4.1.2", - "ci-info": "3.3.2", - "exit": "0.1.2", - "graceful-fs": "4.2.10", - "jest-changed-files": "28.1.3", - "jest-config": "28.1.3_@types+node@18.7.13", - "jest-haste-map": "28.1.3", - "jest-message-util": "28.1.3", - "jest-regex-util": "28.0.2", - "jest-resolve": "28.1.3", - "jest-resolve-dependencies": "28.1.3", - "jest-runner": "28.1.3", - "jest-runtime": "28.1.3", - "jest-snapshot": "28.1.3", - "jest-util": "28.1.3", - "jest-validate": "28.1.3", - "jest-watcher": "28.1.3", - "micromatch": "4.0.5", - "pretty-format": "28.1.3", - "rimraf": "3.0.2", - "slash": "3.0.0", - "strip-ansi": "6.0.1", - }, - transitive_closure = { - "@jest/core": ["28.1.3"], - "@jest/console": ["28.1.3"], - "@jest/reporters": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "ansi-escapes": ["4.3.2"], - "chalk": ["2.4.2", "4.1.2"], - "ci-info": ["3.3.2"], - "exit": ["0.1.2"], - "graceful-fs": ["4.2.10"], - "jest-changed-files": ["28.1.3"], - "jest-config": ["28.1.3_@types+node@18.7.13"], - "jest-haste-map": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "jest-resolve": ["28.1.3"], - "jest-resolve-dependencies": ["28.1.3"], - "jest-runner": ["28.1.3"], - "jest-runtime": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "jest-util": ["28.1.3"], - "jest-validate": ["28.1.3"], - "jest-watcher": ["28.1.3"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "rimraf": ["3.0.2"], - "slash": ["3.0.0"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - "glob": ["7.2.3"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "minimatch": ["3.1.2"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "@jest/schemas": ["28.1.3"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "emittery": ["0.10.2"], - "string-length": ["4.0.2"], - "char-regex": ["1.0.2"], - "camelcase": ["5.3.1", "6.3.0"], - "jest-get-type": ["28.0.2"], - "leven": ["3.1.0"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "expect": ["28.1.3"], - "jest-diff": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "natural-compare": ["1.4.0"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@babel/highlight": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["2.0.0", "1.0.5"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "convert-source-map": ["1.8.0"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "safe-buffer": ["5.1.2"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jest/environment": ["28.1.3"], - "@jest/fake-timers": ["28.1.3"], - "@jest/globals": ["28.1.3"], - "@jest/source-map": ["28.1.2"], - "cjs-module-lexer": ["1.2.2"], - "collect-v8-coverage": ["1.0.1"], - "execa": ["5.1.1"], - "jest-mock": ["28.1.3"], - "strip-bom": ["4.0.0"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "merge-stream": ["2.0.0"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - "callsites": ["3.1.0"], - "@jest/expect": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - "jest-docblock": ["28.1.1"], - "jest-environment-node": ["28.1.3"], - "jest-leak-detector": ["28.1.3"], - "jest-worker": ["28.1.3"], - "p-limit": ["2.3.0", "3.1.0"], - "source-map-support": ["0.5.13"], - "buffer-from": ["1.1.2"], - "source-map": ["0.6.1"], - "yocto-queue": ["0.1.0"], - "detect-newline": ["3.1.0"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "@types/stack-utils": ["2.0.1"], - "stack-utils": ["2.0.5"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "@jest/test-sequencer": ["28.1.3"], - "babel-jest": ["28.1.3_@babel+core@7.18.13"], - "deepmerge": ["4.2.2"], - "jest-circus": ["28.1.3"], - "parse-json": ["5.2.0"], - "strip-json-comments": ["3.1.1"], - "error-ex": ["1.3.2"], - "json-parse-even-better-errors": ["2.3.1"], - "lines-and-columns": ["1.2.4"], - "is-arrayish": ["0.2.1"], - "co": ["4.6.0"], - "dedent": ["0.7.0"], - "is-generator-fn": ["2.1.0"], - "jest-each": ["28.1.3"], - "@types/babel__core": ["7.1.19"], - "babel-plugin-istanbul": ["6.1.1"], - "babel-preset-jest": ["28.1.3_@babel+core@7.18.13"], - "babel-plugin-jest-hoist": ["28.1.3"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "istanbul-lib-coverage": ["3.2.0"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-try": ["2.2.0"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "type-fest": ["0.21.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "@bcoe/v8-coverage": ["0.2.3"], - "istanbul-lib-report": ["3.0.0"], - "istanbul-lib-source-maps": ["4.0.1"], - "istanbul-reports": ["3.1.5"], - "terminal-link": ["2.1.1"], - "v8-to-istanbul": ["9.0.1"], - "supports-hyperlinks": ["2.2.0"], - "html-escaper": ["2.0.2"], - "make-dir": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_environment__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/environment", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==", - deps = { - "@jest/fake-timers": "28.1.3", - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "jest-mock": "28.1.3", - }, - transitive_closure = { - "@jest/environment": ["28.1.3"], - "@jest/fake-timers": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "jest-mock": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "chalk": ["2.4.2", "4.1.2"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "supports-color": ["5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "@sinonjs/fake-timers": ["9.1.2"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "ansi-regex": ["5.0.1"], - "react-is": ["18.2.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_expect-utils__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/expect-utils", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==", - deps = { - "jest-get-type": "28.0.2", - }, - transitive_closure = { - "@jest/expect-utils": ["28.1.3"], - "jest-get-type": ["28.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_expect__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/expect", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==", - deps = { - "expect": "28.1.3", - "jest-snapshot": "28.1.3", - }, - transitive_closure = { - "@jest/expect": ["28.1.3"], - "expect": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "chalk": ["2.4.2", "4.1.2"], - "graceful-fs": ["4.2.10"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-haste-map": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "natural-compare": ["1.4.0"], - "pretty-format": ["28.1.3"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-regex-util": ["28.0.2"], - "jest-worker": ["28.1.3"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "merge-stream": ["2.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@jridgewell/trace-mapping": ["0.3.15"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@babel/parser": ["7.18.13"], - "istanbul-lib-coverage": ["3.2.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_fake-timers__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/fake-timers", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==", - deps = { - "@jest/types": "28.1.3", - "@sinonjs/fake-timers": "9.1.2", - "@types/node": "18.7.13", - "jest-message-util": "28.1.3", - "jest-mock": "28.1.3", - "jest-util": "28.1.3", - }, - transitive_closure = { - "@jest/fake-timers": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@types/node": ["18.7.13"], - "jest-message-util": ["28.1.3"], - "jest-mock": ["28.1.3"], - "jest-util": ["28.1.3"], - "chalk": ["2.4.2", "4.1.2"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "supports-color": ["5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_globals__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/globals", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==", - deps = { - "@jest/environment": "28.1.3", - "@jest/expect": "28.1.3", - "@jest/types": "28.1.3", - }, - transitive_closure = { - "@jest/globals": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/expect": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/node": ["18.7.13"], - "@types/yargs": ["17.0.11"], - "chalk": ["2.4.2", "4.1.2"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "supports-color": ["8.1.1", "5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "expect": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "graceful-fs": ["4.2.10"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-haste-map": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "natural-compare": ["1.4.0"], - "pretty-format": ["28.1.3"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "ansi-regex": ["5.0.1"], - "react-is": ["18.2.0"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-regex-util": ["28.0.2"], - "jest-worker": ["28.1.3"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "merge-stream": ["2.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@jridgewell/trace-mapping": ["0.3.15"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@babel/parser": ["7.18.13"], - "istanbul-lib-coverage": ["3.2.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jest/fake-timers": ["28.1.3"], - "jest-mock": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_reporters__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/reporters", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==", - deps = { - "@bcoe/v8-coverage": "0.2.3", - "@jest/console": "28.1.3", - "@jest/test-result": "28.1.3", - "@jest/transform": "28.1.3", - "@jest/types": "28.1.3", - "@jridgewell/trace-mapping": "0.3.15", - "@types/node": "18.7.13", - "chalk": "4.1.2", - "collect-v8-coverage": "1.0.1", - "exit": "0.1.2", - "glob": "7.2.3", - "graceful-fs": "4.2.10", - "istanbul-lib-coverage": "3.2.0", - "istanbul-lib-instrument": "5.2.0", - "istanbul-lib-report": "3.0.0", - "istanbul-lib-source-maps": "4.0.1", - "istanbul-reports": "3.1.5", - "jest-message-util": "28.1.3", - "jest-util": "28.1.3", - "jest-worker": "28.1.3", - "slash": "3.0.0", - "string-length": "4.0.2", - "strip-ansi": "6.0.1", - "terminal-link": "2.1.1", - "v8-to-istanbul": "9.0.1", - }, - transitive_closure = { - "@jest/reporters": ["28.1.3"], - "@bcoe/v8-coverage": ["0.2.3"], - "@jest/console": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@types/node": ["18.7.13"], - "chalk": ["2.4.2", "4.1.2"], - "collect-v8-coverage": ["1.0.1"], - "exit": ["0.1.2"], - "glob": ["7.2.3"], - "graceful-fs": ["4.2.10"], - "istanbul-lib-coverage": ["3.2.0"], - "istanbul-lib-instrument": ["5.2.0"], - "istanbul-lib-report": ["3.0.0"], - "istanbul-lib-source-maps": ["4.0.1"], - "istanbul-reports": ["3.1.5"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "jest-worker": ["28.1.3"], - "slash": ["3.0.0"], - "string-length": ["4.0.2"], - "strip-ansi": ["6.0.1"], - "terminal-link": ["2.1.1"], - "v8-to-istanbul": ["9.0.1"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "convert-source-map": ["1.8.0"], - "safe-buffer": ["5.1.2"], - "ansi-escapes": ["4.3.2"], - "supports-hyperlinks": ["2.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "supports-color": ["5.5.0", "8.1.1", "7.2.0"], - "type-fest": ["0.21.3"], - "ansi-regex": ["5.0.1"], - "char-regex": ["1.0.2"], - "merge-stream": ["2.0.0"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "html-escaper": ["2.0.2"], - "debug": ["4.3.4"], - "source-map": ["0.6.1"], - "ms": ["2.1.2"], - "make-dir": ["3.1.0"], - "semver": ["6.3.0"], - "@babel/core": ["7.18.13"], - "@babel/parser": ["7.18.13"], - "@istanbuljs/schema": ["0.1.3"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "minimatch": ["3.1.2"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "babel-plugin-istanbul": ["6.1.1"], - "fast-json-stable-stringify": ["2.1.0"], - "jest-haste-map": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "test-exclude": ["6.0.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_schemas__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/schemas", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", - deps = { - "@sinclair/typebox": "0.24.28", - }, - transitive_closure = { - "@jest/schemas": ["28.1.3"], - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_source-map__28.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/source-map", - version = "28.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==", - deps = { - "@jridgewell/trace-mapping": "0.3.15", - "callsites": "3.1.0", - "graceful-fs": "4.2.10", - }, - transitive_closure = { - "@jest/source-map": ["28.1.2"], - "@jridgewell/trace-mapping": ["0.3.15"], - "callsites": ["3.1.0"], - "graceful-fs": ["4.2.10"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_test-result__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/test-result", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", - deps = { - "@jest/console": "28.1.3", - "@jest/types": "28.1.3", - "@types/istanbul-lib-coverage": "2.0.4", - "collect-v8-coverage": "1.0.1", - }, - transitive_closure = { - "@jest/test-result": ["28.1.3"], - "@jest/console": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "collect-v8-coverage": ["1.0.1"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-reports": ["3.0.1"], - "@types/node": ["18.7.13"], - "@types/yargs": ["17.0.11"], - "chalk": ["2.4.2", "4.1.2"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "supports-color": ["5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "slash": ["3.0.0"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "ansi-regex": ["5.0.1"], - "react-is": ["18.2.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_test-sequencer__28.1.3", - root_package = "", - link_workspace = "", - link_packages = { - "": ["@jest/test-sequencer"], - }, - package = "@jest/test-sequencer", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==", - deps = { - "@jest/test-result": "28.1.3", - "graceful-fs": "4.2.10", - "jest-haste-map": "28.1.3", - "slash": "3.0.0", - }, - transitive_closure = { - "@jest/test-sequencer": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "graceful-fs": ["4.2.10"], - "jest-haste-map": ["28.1.3"], - "slash": ["3.0.0"], - "@jest/types": ["28.1.3"], - "@types/graceful-fs": ["4.1.5"], - "@types/node": ["18.7.13"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-regex-util": ["28.0.2"], - "jest-util": ["28.1.3"], - "jest-worker": ["28.1.3"], - "micromatch": ["4.0.5"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "merge-stream": ["2.0.0"], - "supports-color": ["5.5.0", "7.2.0", "8.1.1"], - "has-flag": ["3.0.0", "4.0.0"], - "chalk": ["2.4.2", "4.1.2"], - "ci-info": ["3.3.2"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "@jest/console": ["28.1.3"], - "collect-v8-coverage": ["1.0.1"], - "jest-message-util": ["28.1.3"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "pretty-format": ["28.1.3"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "ansi-regex": ["5.0.1"], - "react-is": ["18.2.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_transform__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/transform", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", - deps = { - "@babel/core": "7.18.13", - "@jest/types": "28.1.3", - "@jridgewell/trace-mapping": "0.3.15", - "babel-plugin-istanbul": "6.1.1", - "chalk": "4.1.2", - "convert-source-map": "1.8.0", - "fast-json-stable-stringify": "2.1.0", - "graceful-fs": "4.2.10", - "jest-haste-map": "28.1.3", - "jest-regex-util": "28.0.2", - "jest-util": "28.1.3", - "micromatch": "4.0.5", - "pirates": "4.0.5", - "slash": "3.0.0", - "write-file-atomic": "4.0.2", - }, - transitive_closure = { - "@jest/transform": ["28.1.3"], - "@babel/core": ["7.18.13"], - "@jest/types": ["28.1.3"], - "@jridgewell/trace-mapping": ["0.3.15"], - "babel-plugin-istanbul": ["6.1.1"], - "chalk": ["2.4.2", "4.1.2"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "graceful-fs": ["4.2.10"], - "jest-haste-map": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "jest-util": ["28.1.3"], - "micromatch": ["4.0.5"], - "pirates": ["4.0.5"], - "slash": ["3.0.0"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-worker": ["28.1.3"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "merge-stream": ["2.0.0"], - "supports-color": ["5.5.0", "7.2.0", "8.1.1"], - "has-flag": ["3.0.0", "4.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "safe-buffer": ["5.1.2"], - "ansi-styles": ["3.2.1", "4.3.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@babel/parser": ["7.18.13"], - "istanbul-lib-coverage": ["3.2.0"], - "semver": ["6.3.0"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "ms": ["2.1.2"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@babel/highlight": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["1.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jest_types__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jest/types", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", - deps = { - "@jest/schemas": "28.1.3", - "@types/istanbul-lib-coverage": "2.0.4", - "@types/istanbul-reports": "3.0.1", - "@types/node": "18.7.13", - "@types/yargs": "17.0.11", - "chalk": "4.1.2", - }, - transitive_closure = { - "@jest/types": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/node": ["18.7.13"], - "@types/yargs": ["17.0.11"], - "chalk": ["4.1.2"], - "ansi-styles": ["4.3.0"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jridgewell_gen-mapping__0.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jridgewell/gen-mapping", - version = "0.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - deps = { - "@jridgewell/set-array": "1.1.2", - "@jridgewell/sourcemap-codec": "1.4.14", - }, - transitive_closure = { - "@jridgewell/gen-mapping": ["0.1.1"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jridgewell_gen-mapping__0.3.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jridgewell/gen-mapping", - version = "0.3.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - deps = { - "@jridgewell/set-array": "1.1.2", - "@jridgewell/sourcemap-codec": "1.4.14", - "@jridgewell/trace-mapping": "0.3.15", - }, - transitive_closure = { - "@jridgewell/gen-mapping": ["0.3.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jridgewell_resolve-uri__3.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jridgewell/resolve-uri", - version = "3.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - transitive_closure = { - "@jridgewell/resolve-uri": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jridgewell_set-array__1.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jridgewell/set-array", - version = "1.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - transitive_closure = { - "@jridgewell/set-array": ["1.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jridgewell_sourcemap-codec__1.4.14", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jridgewell/sourcemap-codec", - version = "1.4.14", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - transitive_closure = { - "@jridgewell/sourcemap-codec": ["1.4.14"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_jridgewell_trace-mapping__0.3.15", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@jridgewell/trace-mapping", - version = "0.3.15", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", - deps = { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14", - }, - transitive_closure = { - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_sinclair_typebox__0.24.28", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@sinclair/typebox", - version = "0.24.28", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-dgJd3HLOkLmz4Bw50eZx/zJwtBq65nms3N9VBYu5LTjJ883oBFkTyXRlCB/ZGGwqYpJJHA5zW2Ibhl5ngITfow==", - transitive_closure = { - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_sinonjs_commons__1.8.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@sinonjs/commons", - version = "1.8.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", - deps = { - "type-detect": "4.0.8", - }, - transitive_closure = { - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_sinonjs_fake-timers__9.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@sinonjs/fake-timers", - version = "9.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", - deps = { - "@sinonjs/commons": "1.8.3", - }, - transitive_closure = { - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_babel__core__7.1.19", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/babel__core", - version = "7.1.19", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", - deps = { - "@babel/parser": "7.18.13", - "@babel/types": "7.18.13", - "@types/babel__generator": "7.6.4", - "@types/babel__template": "7.4.1", - "@types/babel__traverse": "7.18.0", - }, - transitive_closure = { - "@types/babel__core": ["7.1.19"], - "@babel/parser": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "@types/babel__traverse": ["7.18.0"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_babel__generator__7.6.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/babel__generator", - version = "7.6.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - deps = { - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@types/babel__generator": ["7.6.4"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_babel__template__7.4.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/babel__template", - version = "7.4.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - deps = { - "@babel/parser": "7.18.13", - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@types/babel__template": ["7.4.1"], - "@babel/parser": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_babel__traverse__7.18.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/babel__traverse", - version = "7.18.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-v4Vwdko+pgymgS+A2UIaJru93zQd85vIGWObM5ekZNdXCKtDYqATlEYnWgfo86Q6I1Lh0oXnksDnMU1cwmlPDw==", - deps = { - "@babel/types": "7.18.13", - }, - transitive_closure = { - "@types/babel__traverse": ["7.18.0"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_graceful-fs__4.1.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/graceful-fs", - version = "4.1.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", - deps = { - "@types/node": "18.7.13", - }, - transitive_closure = { - "@types/graceful-fs": ["4.1.5"], - "@types/node": ["18.7.13"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_istanbul-lib-coverage__2.0.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/istanbul-lib-coverage", - version = "2.0.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - transitive_closure = { - "@types/istanbul-lib-coverage": ["2.0.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_istanbul-lib-report__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/istanbul-lib-report", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - deps = { - "@types/istanbul-lib-coverage": "2.0.4", - }, - transitive_closure = { - "@types/istanbul-lib-report": ["3.0.0"], - "@types/istanbul-lib-coverage": ["2.0.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_istanbul-reports__3.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/istanbul-reports", - version = "3.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - deps = { - "@types/istanbul-lib-report": "3.0.0", - }, - transitive_closure = { - "@types/istanbul-reports": ["3.0.1"], - "@types/istanbul-lib-report": ["3.0.0"], - "@types/istanbul-lib-coverage": ["2.0.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_node__18.7.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/node", - version = "18.7.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw==", - transitive_closure = { - "@types/node": ["18.7.13"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_prettier__2.7.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/prettier", - version = "2.7.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-RI1L7N4JnW5gQw2spvL7Sllfuf1SaHdrZpCHiBlCXjIlufi1SMNnbu2teze3/QE67Fg2tBlH7W+mi4hVNk4p0A==", - transitive_closure = { - "@types/prettier": ["2.7.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_stack-utils__2.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/stack-utils", - version = "2.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - transitive_closure = { - "@types/stack-utils": ["2.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_yargs-parser__21.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/yargs-parser", - version = "21.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - transitive_closure = { - "@types/yargs-parser": ["21.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__at_types_yargs__17.0.11", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "@types/yargs", - version = "17.0.11", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-aB4y9UDUXTSMxmM4MH+YnuR0g5Cph3FLQBoWoMB21DSvFVAxRVEHEMx3TLh+zUZYMCQtKiqazz0Q4Rre31f/OA==", - deps = { - "@types/yargs-parser": "21.0.0", - }, - transitive_closure = { - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__ansi-escapes__4.3.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "ansi-escapes", - version = "4.3.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - deps = { - "type-fest": "0.21.3", - }, - transitive_closure = { - "ansi-escapes": ["4.3.2"], - "type-fest": ["0.21.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__ansi-regex__5.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "ansi-regex", - version = "5.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - transitive_closure = { - "ansi-regex": ["5.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__ansi-styles__3.2.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "ansi-styles", - version = "3.2.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - deps = { - "color-convert": "1.9.3", - }, - transitive_closure = { - "ansi-styles": ["3.2.1"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__ansi-styles__4.3.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "ansi-styles", - version = "4.3.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - deps = { - "color-convert": "2.0.1", - }, - transitive_closure = { - "ansi-styles": ["4.3.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__ansi-styles__5.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "ansi-styles", - version = "5.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - transitive_closure = { - "ansi-styles": ["5.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__anymatch__3.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "anymatch", - version = "3.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - deps = { - "normalize-path": "3.0.0", - "picomatch": "2.3.1", - }, - transitive_closure = { - "anymatch": ["3.1.2"], - "normalize-path": ["3.0.0"], - "picomatch": ["2.3.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__argparse__1.0.10", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "argparse", - version = "1.0.10", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - deps = { - "sprintf-js": "1.0.3", - }, - transitive_closure = { - "argparse": ["1.0.10"], - "sprintf-js": ["1.0.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__babel-jest__28.1.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "babel-jest", - version = "28.1.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==", - deps = { - "@babel/core": "7.18.13", - "@jest/transform": "28.1.3", - "@types/babel__core": "7.1.19", - "babel-plugin-istanbul": "6.1.1", - "babel-preset-jest": "28.1.3_@babel+core@7.18.13", - "chalk": "4.1.2", - "graceful-fs": "4.2.10", - "slash": "3.0.0", - }, - transitive_closure = { - "babel-jest": ["28.1.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@jest/transform": ["28.1.3"], - "@types/babel__core": ["7.1.19"], - "babel-plugin-istanbul": ["6.1.1"], - "babel-preset-jest": ["28.1.3_@babel+core@7.18.13"], - "chalk": ["2.4.2", "4.1.2"], - "graceful-fs": ["4.2.10"], - "slash": ["3.0.0"], - "ansi-styles": ["3.2.1", "4.3.0"], - "supports-color": ["8.1.1", "5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "babel-plugin-jest-hoist": ["28.1.3"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/types": ["7.18.13"], - "@types/babel__traverse": ["7.18.0"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "@babel/highlight": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["1.0.5"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "istanbul-lib-coverage": ["3.2.0"], - "semver": ["6.3.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "@jest/types": ["28.1.3"], - "@jridgewell/trace-mapping": ["0.3.15"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "jest-haste-map": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "jest-util": ["28.1.3"], - "micromatch": ["4.0.5"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-worker": ["28.1.3"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "merge-stream": ["2.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "safe-buffer": ["5.1.2"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "@ampproject/remapping": ["2.2.0"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/traverse": ["7.18.13"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "ms": ["2.1.2"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__babel-plugin-istanbul__6.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "babel-plugin-istanbul", - version = "6.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - deps = { - "@babel/helper-plugin-utils": "7.18.9", - "@istanbuljs/load-nyc-config": "1.1.0", - "@istanbuljs/schema": "0.1.3", - "istanbul-lib-instrument": "5.2.0", - "test-exclude": "6.0.0", - }, - transitive_closure = { - "babel-plugin-istanbul": ["6.1.1"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@babel/core": ["7.18.13"], - "@babel/parser": ["7.18.13"], - "istanbul-lib-coverage": ["3.2.0"], - "semver": ["6.3.0"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__babel-plugin-jest-hoist__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "babel-plugin-jest-hoist", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==", - deps = { - "@babel/template": "7.18.10", - "@babel/types": "7.18.13", - "@types/babel__core": "7.1.19", - "@types/babel__traverse": "7.18.0", - }, - transitive_closure = { - "babel-plugin-jest-hoist": ["28.1.3"], - "@babel/template": ["7.18.10"], - "@babel/types": ["7.18.13"], - "@types/babel__core": ["7.1.19"], - "@types/babel__traverse": ["7.18.0"], - "@babel/parser": ["7.18.13"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__babel-preset-current-node-syntax__1.0.1__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "babel-preset-current-node-syntax", - version = "1.0.1_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - deps = { - "@babel/core": "7.18.13", - "@babel/plugin-syntax-async-generators": "7.8.4_@babel+core@7.18.13", - "@babel/plugin-syntax-bigint": "7.8.3_@babel+core@7.18.13", - "@babel/plugin-syntax-class-properties": "7.12.13_@babel+core@7.18.13", - "@babel/plugin-syntax-import-meta": "7.10.4_@babel+core@7.18.13", - "@babel/plugin-syntax-json-strings": "7.8.3_@babel+core@7.18.13", - "@babel/plugin-syntax-logical-assignment-operators": "7.10.4_@babel+core@7.18.13", - "@babel/plugin-syntax-nullish-coalescing-operator": "7.8.3_@babel+core@7.18.13", - "@babel/plugin-syntax-numeric-separator": "7.10.4_@babel+core@7.18.13", - "@babel/plugin-syntax-object-rest-spread": "7.8.3_@babel+core@7.18.13", - "@babel/plugin-syntax-optional-catch-binding": "7.8.3_@babel+core@7.18.13", - "@babel/plugin-syntax-optional-chaining": "7.8.3_@babel+core@7.18.13", - "@babel/plugin-syntax-top-level-await": "7.14.5_@babel+core@7.18.13", - }, - transitive_closure = { - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/parser": ["7.18.13"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__babel-preset-jest__28.1.3__at_babel_core_7.18.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "babel-preset-jest", - version = "28.1.3_@babel+core@7.18.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==", - deps = { - "@babel/core": "7.18.13", - "babel-plugin-jest-hoist": "28.1.3", - "babel-preset-current-node-syntax": "1.0.1_@babel+core@7.18.13", - }, - transitive_closure = { - "babel-preset-jest": ["28.1.3_@babel+core@7.18.13"], - "@babel/core": ["7.18.13"], - "babel-plugin-jest-hoist": ["28.1.3"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/types": ["7.18.13"], - "@types/babel__core": ["7.1.19"], - "@types/babel__traverse": ["7.18.0"], - "@babel/parser": ["7.18.13"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - "@ampproject/remapping": ["2.2.0"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/traverse": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "semver": ["6.3.0"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__balanced-match__1.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "balanced-match", - version = "1.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - transitive_closure = { - "balanced-match": ["1.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__brace-expansion__1.1.11", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "brace-expansion", - version = "1.1.11", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - deps = { - "balanced-match": "1.0.2", - "concat-map": "0.0.1", - }, - transitive_closure = { - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__braces__3.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "braces", - version = "3.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - deps = { - "fill-range": "7.0.1", - }, - transitive_closure = { - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__browserslist__4.21.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "browserslist", - version = "4.21.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==", - deps = { - "caniuse-lite": "1.0.30001383", - "electron-to-chromium": "1.4.233", - "node-releases": "2.0.6", - "update-browserslist-db": "1.0.5_browserslist@4.21.3", - }, - transitive_closure = { - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__bser__2.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "bser", - version = "2.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - deps = { - "node-int64": "0.4.0", - }, - transitive_closure = { - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__buffer-from__1.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "buffer-from", - version = "1.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - transitive_closure = { - "buffer-from": ["1.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__callsites__3.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "callsites", - version = "3.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - transitive_closure = { - "callsites": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__camelcase__5.3.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "camelcase", - version = "5.3.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - transitive_closure = { - "camelcase": ["5.3.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__camelcase__6.3.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "camelcase", - version = "6.3.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - transitive_closure = { - "camelcase": ["6.3.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__caniuse-lite__1.0.30001383", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "caniuse-lite", - version = "1.0.30001383", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-swMpEoTp5vDoGBZsYZX7L7nXHe6dsHxi9o6/LKf/f0LukVtnrxly5GVb/fWdCDTqi/yw6Km6tiJ0pmBacm0gbg==", - transitive_closure = { - "caniuse-lite": ["1.0.30001383"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__chalk__2.4.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "chalk", - version = "2.4.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - deps = { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.5.0", - }, - transitive_closure = { - "chalk": ["2.4.2"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__chalk__4.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "chalk", - version = "4.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - deps = { - "ansi-styles": "4.3.0", - "supports-color": "7.2.0", - }, - transitive_closure = { - "chalk": ["4.1.2"], - "ansi-styles": ["4.3.0"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__char-regex__1.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "char-regex", - version = "1.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - transitive_closure = { - "char-regex": ["1.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__ci-info__3.3.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "ci-info", - version = "3.3.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", - transitive_closure = { - "ci-info": ["3.3.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__cjs-module-lexer__1.2.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "cjs-module-lexer", - version = "1.2.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", - transitive_closure = { - "cjs-module-lexer": ["1.2.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__cliui__7.0.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "cliui", - version = "7.0.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - deps = { - "string-width": "4.2.3", - "strip-ansi": "6.0.1", - "wrap-ansi": "7.0.0", - }, - transitive_closure = { - "cliui": ["7.0.4"], - "string-width": ["4.2.3"], - "strip-ansi": ["6.0.1"], - "wrap-ansi": ["7.0.0"], - "ansi-styles": ["4.3.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - "ansi-regex": ["5.0.1"], - "emoji-regex": ["8.0.0"], - "is-fullwidth-code-point": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__co__4.6.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "co", - version = "4.6.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - transitive_closure = { - "co": ["4.6.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__collect-v8-coverage__1.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "collect-v8-coverage", - version = "1.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - transitive_closure = { - "collect-v8-coverage": ["1.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__color-convert__1.9.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "color-convert", - version = "1.9.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - deps = { - "color-name": "1.1.3", - }, - transitive_closure = { - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__color-convert__2.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "color-convert", - version = "2.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - deps = { - "color-name": "1.1.4", - }, - transitive_closure = { - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__color-name__1.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "color-name", - version = "1.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - transitive_closure = { - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__color-name__1.1.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "color-name", - version = "1.1.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - transitive_closure = { - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__concat-map__0.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "concat-map", - version = "0.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - transitive_closure = { - "concat-map": ["0.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__convert-source-map__1.8.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "convert-source-map", - version = "1.8.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - deps = { - "safe-buffer": "5.1.2", - }, - transitive_closure = { - "convert-source-map": ["1.8.0"], - "safe-buffer": ["5.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__cross-spawn__7.0.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "cross-spawn", - version = "7.0.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - deps = { - "path-key": "3.1.1", - "shebang-command": "2.0.0", - "which": "2.0.2", - }, - transitive_closure = { - "cross-spawn": ["7.0.3"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__debug__4.3.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "debug", - version = "4.3.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - deps = { - "ms": "2.1.2", - }, - transitive_closure = { - "debug": ["4.3.4"], - "ms": ["2.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__dedent__0.7.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "dedent", - version = "0.7.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - transitive_closure = { - "dedent": ["0.7.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__deepmerge__4.2.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "deepmerge", - version = "4.2.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", - transitive_closure = { - "deepmerge": ["4.2.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__detect-newline__3.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "detect-newline", - version = "3.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - transitive_closure = { - "detect-newline": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__diff-sequences__28.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "diff-sequences", - version = "28.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==", - transitive_closure = { - "diff-sequences": ["28.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__electron-to-chromium__1.4.233", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "electron-to-chromium", - version = "1.4.233", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ejwIKXTg1wqbmkcRJh9Ur3hFGHFDZDw1POzdsVrB2WZjgRuRMHIQQKNpe64N/qh3ZtH2otEoRoS+s6arAAuAAw==", - transitive_closure = { - "electron-to-chromium": ["1.4.233"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__emittery__0.10.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "emittery", - version = "0.10.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", - transitive_closure = { - "emittery": ["0.10.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__emoji-regex__8.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "emoji-regex", - version = "8.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - transitive_closure = { - "emoji-regex": ["8.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__error-ex__1.3.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "error-ex", - version = "1.3.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - deps = { - "is-arrayish": "0.2.1", - }, - transitive_closure = { - "error-ex": ["1.3.2"], - "is-arrayish": ["0.2.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__escalade__3.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "escalade", - version = "3.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - transitive_closure = { - "escalade": ["3.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__escape-string-regexp__1.0.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "escape-string-regexp", - version = "1.0.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - transitive_closure = { - "escape-string-regexp": ["1.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__escape-string-regexp__2.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "escape-string-regexp", - version = "2.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - transitive_closure = { - "escape-string-regexp": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__esprima__4.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "esprima", - version = "4.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - transitive_closure = { - "esprima": ["4.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__execa__5.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "execa", - version = "5.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - deps = { - "cross-spawn": "7.0.3", - "get-stream": "6.0.1", - "human-signals": "2.1.0", - "is-stream": "2.0.1", - "merge-stream": "2.0.0", - "npm-run-path": "4.0.1", - "onetime": "5.1.2", - "signal-exit": "3.0.7", - "strip-final-newline": "2.0.0", - }, - transitive_closure = { - "execa": ["5.1.1"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "merge-stream": ["2.0.0"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__exit__0.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "exit", - version = "0.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - transitive_closure = { - "exit": ["0.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__expect__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "expect", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==", - deps = { - "@jest/expect-utils": "28.1.3", - "jest-get-type": "28.0.2", - "jest-matcher-utils": "28.1.3", - "jest-message-util": "28.1.3", - "jest-util": "28.1.3", - }, - transitive_closure = { - "expect": ["28.1.3"], - "@jest/expect-utils": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-matcher-utils": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "chalk": ["2.4.2", "4.1.2"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "supports-color": ["5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "ansi-regex": ["5.0.1"], - "react-is": ["18.2.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "jest-diff": ["28.1.3"], - "diff-sequences": ["28.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__fast-json-stable-stringify__2.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "fast-json-stable-stringify", - version = "2.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - transitive_closure = { - "fast-json-stable-stringify": ["2.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__fb-watchman__2.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "fb-watchman", - version = "2.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", - deps = { - "bser": "2.1.1", - }, - transitive_closure = { - "fb-watchman": ["2.0.1"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__fill-range__7.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "fill-range", - version = "7.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - deps = { - "to-regex-range": "5.0.1", - }, - transitive_closure = { - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__find-up__4.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "find-up", - version = "4.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - deps = { - "locate-path": "5.0.0", - "path-exists": "4.0.0", - }, - transitive_closure = { - "find-up": ["4.1.0"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__fs.realpath__1.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "fs.realpath", - version = "1.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - transitive_closure = { - "fs.realpath": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__fsevents__2.3.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "fsevents", - version = "2.3.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - transitive_closure = { - "fsevents": ["2.3.2"], - }, - run_lifecycle_hooks = True, - ) - - npm_import( - name = "npm_aspect_rules_jest__function-bind__1.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "function-bind", - version = "1.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - transitive_closure = { - "function-bind": ["1.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__gensync__1.0.0-beta.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "gensync", - version = "1.0.0-beta.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - transitive_closure = { - "gensync": ["1.0.0-beta.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__get-caller-file__2.0.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "get-caller-file", - version = "2.0.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - transitive_closure = { - "get-caller-file": ["2.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__get-package-type__0.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "get-package-type", - version = "0.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - transitive_closure = { - "get-package-type": ["0.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__get-stream__6.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "get-stream", - version = "6.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - transitive_closure = { - "get-stream": ["6.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__glob__7.2.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "glob", - version = "7.2.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - deps = { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.4", - "minimatch": "3.1.2", - "once": "1.4.0", - "path-is-absolute": "1.0.1", - }, - transitive_closure = { - "glob": ["7.2.3"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "minimatch": ["3.1.2"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__globals__11.12.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "globals", - version = "11.12.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - transitive_closure = { - "globals": ["11.12.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__graceful-fs__4.2.10", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "graceful-fs", - version = "4.2.10", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - transitive_closure = { - "graceful-fs": ["4.2.10"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__has-flag__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "has-flag", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - transitive_closure = { - "has-flag": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__has-flag__4.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "has-flag", - version = "4.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - transitive_closure = { - "has-flag": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__has__1.0.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "has", - version = "1.0.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - deps = { - "function-bind": "1.1.1", - }, - transitive_closure = { - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__html-escaper__2.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "html-escaper", - version = "2.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - transitive_closure = { - "html-escaper": ["2.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__human-signals__2.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "human-signals", - version = "2.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - transitive_closure = { - "human-signals": ["2.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__import-local__3.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "import-local", - version = "3.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - deps = { - "pkg-dir": "4.2.0", - "resolve-cwd": "3.0.0", - }, - transitive_closure = { - "import-local": ["3.1.0"], - "pkg-dir": ["4.2.0"], - "resolve-cwd": ["3.0.0"], - "resolve-from": ["5.0.0"], - "find-up": ["4.1.0"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__imurmurhash__0.1.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "imurmurhash", - version = "0.1.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - transitive_closure = { - "imurmurhash": ["0.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__inflight__1.0.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "inflight", - version = "1.0.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - deps = { - "once": "1.4.0", - "wrappy": "1.0.2", - }, - transitive_closure = { - "inflight": ["1.0.6"], - "once": ["1.4.0"], - "wrappy": ["1.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__inherits__2.0.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "inherits", - version = "2.0.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - transitive_closure = { - "inherits": ["2.0.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__is-arrayish__0.2.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "is-arrayish", - version = "0.2.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - transitive_closure = { - "is-arrayish": ["0.2.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__is-core-module__2.10.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "is-core-module", - version = "2.10.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", - deps = { - "has": "1.0.3", - }, - transitive_closure = { - "is-core-module": ["2.10.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__is-fullwidth-code-point__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "is-fullwidth-code-point", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - transitive_closure = { - "is-fullwidth-code-point": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__is-generator-fn__2.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "is-generator-fn", - version = "2.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - transitive_closure = { - "is-generator-fn": ["2.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__is-number__7.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "is-number", - version = "7.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - transitive_closure = { - "is-number": ["7.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__is-stream__2.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "is-stream", - version = "2.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - transitive_closure = { - "is-stream": ["2.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__isexe__2.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "isexe", - version = "2.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - transitive_closure = { - "isexe": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__istanbul-lib-coverage__3.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "istanbul-lib-coverage", - version = "3.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - transitive_closure = { - "istanbul-lib-coverage": ["3.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__istanbul-lib-instrument__5.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "istanbul-lib-instrument", - version = "5.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", - deps = { - "@babel/core": "7.18.13", - "@babel/parser": "7.18.13", - "@istanbuljs/schema": "0.1.3", - "istanbul-lib-coverage": "3.2.0", - "semver": "6.3.0", - }, - transitive_closure = { - "istanbul-lib-instrument": ["5.2.0"], - "@babel/core": ["7.18.13"], - "@babel/parser": ["7.18.13"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-coverage": ["3.2.0"], - "semver": ["6.3.0"], - "@babel/types": ["7.18.13"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/generator": ["7.18.13"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "@babel/template": ["7.18.10"], - "@babel/traverse": ["7.18.13"], - "convert-source-map": ["1.8.0"], - "debug": ["4.3.4"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "ms": ["2.1.2"], - "safe-buffer": ["5.1.2"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "globals": ["11.12.0"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@babel/highlight": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__istanbul-lib-report__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "istanbul-lib-report", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - deps = { - "istanbul-lib-coverage": "3.2.0", - "make-dir": "3.1.0", - "supports-color": "7.2.0", - }, - transitive_closure = { - "istanbul-lib-report": ["3.0.0"], - "istanbul-lib-coverage": ["3.2.0"], - "make-dir": ["3.1.0"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "semver": ["6.3.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__istanbul-lib-source-maps__4.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "istanbul-lib-source-maps", - version = "4.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - deps = { - "debug": "4.3.4", - "istanbul-lib-coverage": "3.2.0", - "source-map": "0.6.1", - }, - transitive_closure = { - "istanbul-lib-source-maps": ["4.0.1"], - "debug": ["4.3.4"], - "istanbul-lib-coverage": ["3.2.0"], - "source-map": ["0.6.1"], - "ms": ["2.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__istanbul-reports__3.1.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "istanbul-reports", - version = "3.1.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", - deps = { - "html-escaper": "2.0.2", - "istanbul-lib-report": "3.0.0", - }, - transitive_closure = { - "istanbul-reports": ["3.1.5"], - "html-escaper": ["2.0.2"], - "istanbul-lib-report": ["3.0.0"], - "istanbul-lib-coverage": ["3.2.0"], - "make-dir": ["3.1.0"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "semver": ["6.3.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-changed-files__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-changed-files", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==", - deps = { - "execa": "5.1.1", - "p-limit": "3.1.0", - }, - transitive_closure = { - "jest-changed-files": ["28.1.3"], - "execa": ["5.1.1"], - "p-limit": ["3.1.0"], - "yocto-queue": ["0.1.0"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "merge-stream": ["2.0.0"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-circus__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-circus", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==", - deps = { - "@jest/environment": "28.1.3", - "@jest/expect": "28.1.3", - "@jest/test-result": "28.1.3", - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "chalk": "4.1.2", - "co": "4.6.0", - "dedent": "0.7.0", - "is-generator-fn": "2.1.0", - "jest-each": "28.1.3", - "jest-matcher-utils": "28.1.3", - "jest-message-util": "28.1.3", - "jest-runtime": "28.1.3", - "jest-snapshot": "28.1.3", - "jest-util": "28.1.3", - "p-limit": "3.1.0", - "pretty-format": "28.1.3", - "slash": "3.0.0", - "stack-utils": "2.0.5", - }, - transitive_closure = { - "jest-circus": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/expect": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "chalk": ["2.4.2", "4.1.2"], - "co": ["4.6.0"], - "dedent": ["0.7.0"], - "is-generator-fn": ["2.1.0"], - "jest-each": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-runtime": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "jest-util": ["28.1.3"], - "p-limit": ["2.3.0", "3.1.0"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "yocto-queue": ["0.1.0"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "expect": ["28.1.3"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-haste-map": ["28.1.3"], - "natural-compare": ["1.4.0"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-regex-util": ["28.0.2"], - "jest-worker": ["28.1.3"], - "micromatch": ["4.0.5"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "merge-stream": ["2.0.0"], - "supports-color": ["7.2.0", "5.5.0", "8.1.1"], - "has-flag": ["3.0.0", "4.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@jridgewell/trace-mapping": ["0.3.15"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@babel/parser": ["7.18.13"], - "istanbul-lib-coverage": ["3.2.0"], - "camelcase": ["6.3.0", "5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-try": ["2.2.0"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@babel/highlight": ["7.18.6"], - "js-tokens": ["4.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "@jest/fake-timers": ["28.1.3"], - "@jest/globals": ["28.1.3"], - "@jest/source-map": ["28.1.2"], - "cjs-module-lexer": ["1.2.2"], - "collect-v8-coverage": ["1.0.1"], - "execa": ["5.1.1"], - "jest-mock": ["28.1.3"], - "jest-resolve": ["28.1.3"], - "strip-bom": ["4.0.0"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "jest-validate": ["28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "leven": ["3.1.0"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - "callsites": ["3.1.0"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - "@types/stack-utils": ["2.0.1"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@jest/console": ["28.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-cli__28.1.0", - root_package = "", - link_workspace = "", - link_packages = { - "": ["jest-cli"], - }, - package = "jest-cli", - version = "28.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ==", - deps = { - "@jest/core": "28.1.3", - "@jest/test-result": "28.1.3", - "@jest/types": "28.1.3", - "chalk": "4.1.2", - "exit": "0.1.2", - "graceful-fs": "4.2.10", - "import-local": "3.1.0", - "jest-config": "28.1.3", - "jest-util": "28.1.3", - "jest-validate": "28.1.3", - "prompts": "2.4.2", - "yargs": "17.5.1", - }, - transitive_closure = { - "jest-cli": ["28.1.0"], - "@jest/core": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/types": ["28.1.3"], - "chalk": ["2.4.2", "4.1.2"], - "exit": ["0.1.2"], - "graceful-fs": ["4.2.10"], - "import-local": ["3.1.0"], - "jest-config": ["28.1.3_@types+node@18.7.13", "28.1.3"], - "jest-util": ["28.1.3"], - "jest-validate": ["28.1.3"], - "prompts": ["2.4.2"], - "yargs": ["17.5.1"], - "cliui": ["7.0.4"], - "escalade": ["3.1.1"], - "get-caller-file": ["2.0.5"], - "require-directory": ["2.1.1"], - "string-width": ["4.2.3"], - "y18n": ["5.0.8"], - "yargs-parser": ["21.1.1"], - "emoji-regex": ["8.0.0"], - "is-fullwidth-code-point": ["3.0.0"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - "wrap-ansi": ["7.0.0"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "kleur": ["3.0.3"], - "sisteransi": ["1.0.5"], - "camelcase": ["5.3.1", "6.3.0"], - "jest-get-type": ["28.0.2"], - "leven": ["3.1.0"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@babel/core": ["7.18.13"], - "@jest/test-sequencer": ["28.1.3"], - "babel-jest": ["28.1.3_@babel+core@7.18.13"], - "deepmerge": ["4.2.2"], - "glob": ["7.2.3"], - "jest-circus": ["28.1.3"], - "jest-environment-node": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "jest-resolve": ["28.1.3"], - "jest-runner": ["28.1.3"], - "micromatch": ["4.0.5"], - "parse-json": ["5.2.0"], - "slash": ["3.0.0"], - "strip-json-comments": ["3.1.1"], - "@babel/code-frame": ["7.18.6"], - "error-ex": ["1.3.2"], - "json-parse-even-better-errors": ["2.3.1"], - "lines-and-columns": ["1.2.4"], - "is-arrayish": ["0.2.1"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["2.0.0", "1.0.5"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@jest/console": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "emittery": ["0.10.2"], - "jest-docblock": ["28.1.1"], - "jest-haste-map": ["28.1.3"], - "jest-leak-detector": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-runtime": ["28.1.3"], - "jest-watcher": ["28.1.3"], - "jest-worker": ["28.1.3"], - "p-limit": ["2.3.0", "3.1.0"], - "source-map-support": ["0.5.13"], - "buffer-from": ["1.1.2"], - "source-map": ["0.6.1"], - "yocto-queue": ["0.1.0"], - "merge-stream": ["2.0.0"], - "ansi-escapes": ["4.3.2"], - "string-length": ["4.0.2"], - "char-regex": ["1.0.2"], - "type-fest": ["0.21.3"], - "@jest/fake-timers": ["28.1.3"], - "@jest/globals": ["28.1.3"], - "@jest/source-map": ["28.1.2"], - "cjs-module-lexer": ["1.2.2"], - "collect-v8-coverage": ["1.0.1"], - "execa": ["5.1.1"], - "jest-mock": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "strip-bom": ["4.0.0"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "expect": ["28.1.3"], - "jest-diff": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "natural-compare": ["1.4.0"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - "callsites": ["3.1.0"], - "@jest/expect": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - "@types/stack-utils": ["2.0.1"], - "stack-utils": ["2.0.5"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "detect-newline": ["3.1.0"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "istanbul-lib-coverage": ["3.2.0"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-try": ["2.2.0"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "co": ["4.6.0"], - "dedent": ["0.7.0"], - "is-generator-fn": ["2.1.0"], - "jest-each": ["28.1.3"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@types/babel__core": ["7.1.19"], - "babel-preset-jest": ["28.1.3_@babel+core@7.18.13"], - "babel-plugin-jest-hoist": ["28.1.3"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "picocolors": ["1.0.0"], - "pkg-dir": ["4.2.0"], - "resolve-cwd": ["3.0.0"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@jest/reporters": ["28.1.3"], - "jest-changed-files": ["28.1.3"], - "jest-resolve-dependencies": ["28.1.3"], - "rimraf": ["3.0.2"], - "@bcoe/v8-coverage": ["0.2.3"], - "istanbul-lib-report": ["3.0.0"], - "istanbul-lib-source-maps": ["4.0.1"], - "istanbul-reports": ["3.1.5"], - "terminal-link": ["2.1.1"], - "v8-to-istanbul": ["9.0.1"], - "supports-hyperlinks": ["2.2.0"], - "html-escaper": ["2.0.2"], - "make-dir": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-config__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-config", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==", - deps = { - "@babel/core": "7.18.13", - "@jest/test-sequencer": "28.1.3", - "@jest/types": "28.1.3", - "babel-jest": "28.1.3_@babel+core@7.18.13", - "chalk": "4.1.2", - "ci-info": "3.3.2", - "deepmerge": "4.2.2", - "glob": "7.2.3", - "graceful-fs": "4.2.10", - "jest-circus": "28.1.3", - "jest-environment-node": "28.1.3", - "jest-get-type": "28.0.2", - "jest-regex-util": "28.0.2", - "jest-resolve": "28.1.3", - "jest-runner": "28.1.3", - "jest-util": "28.1.3", - "jest-validate": "28.1.3", - "micromatch": "4.0.5", - "parse-json": "5.2.0", - "pretty-format": "28.1.3", - "slash": "3.0.0", - "strip-json-comments": "3.1.1", - }, - transitive_closure = { - "jest-config": ["28.1.3"], - "@babel/core": ["7.18.13"], - "@jest/test-sequencer": ["28.1.3"], - "@jest/types": ["28.1.3"], - "babel-jest": ["28.1.3_@babel+core@7.18.13"], - "chalk": ["2.4.2", "4.1.2"], - "ci-info": ["3.3.2"], - "deepmerge": ["4.2.2"], - "glob": ["7.2.3"], - "graceful-fs": ["4.2.10"], - "jest-circus": ["28.1.3"], - "jest-environment-node": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-regex-util": ["28.0.2"], - "jest-resolve": ["28.1.3"], - "jest-runner": ["28.1.3"], - "jest-util": ["28.1.3"], - "jest-validate": ["28.1.3"], - "micromatch": ["4.0.5"], - "parse-json": ["5.2.0"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "strip-json-comments": ["3.1.1"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@babel/code-frame": ["7.18.6"], - "error-ex": ["1.3.2"], - "json-parse-even-better-errors": ["2.3.1"], - "lines-and-columns": ["1.2.4"], - "is-arrayish": ["0.2.1"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["2.0.0", "1.0.5"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "camelcase": ["5.3.1", "6.3.0"], - "leven": ["3.1.0"], - "@types/node": ["18.7.13"], - "@jest/console": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "emittery": ["0.10.2"], - "jest-docblock": ["28.1.1"], - "jest-haste-map": ["28.1.3"], - "jest-leak-detector": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-runtime": ["28.1.3"], - "jest-watcher": ["28.1.3"], - "jest-worker": ["28.1.3"], - "p-limit": ["2.3.0", "3.1.0"], - "source-map-support": ["0.5.13"], - "buffer-from": ["1.1.2"], - "source-map": ["0.6.1"], - "yocto-queue": ["0.1.0"], - "merge-stream": ["2.0.0"], - "ansi-escapes": ["4.3.2"], - "string-length": ["4.0.2"], - "char-regex": ["1.0.2"], - "strip-ansi": ["6.0.1"], - "type-fest": ["0.21.3"], - "@jest/fake-timers": ["28.1.3"], - "@jest/globals": ["28.1.3"], - "@jest/source-map": ["28.1.2"], - "cjs-module-lexer": ["1.2.2"], - "collect-v8-coverage": ["1.0.1"], - "execa": ["5.1.1"], - "jest-mock": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "strip-bom": ["4.0.0"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "expect": ["28.1.3"], - "jest-diff": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "natural-compare": ["1.4.0"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - "callsites": ["3.1.0"], - "@jest/expect": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - "@types/stack-utils": ["2.0.1"], - "stack-utils": ["2.0.5"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "detect-newline": ["3.1.0"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "istanbul-lib-coverage": ["3.2.0"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-try": ["2.2.0"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "co": ["4.6.0"], - "dedent": ["0.7.0"], - "is-generator-fn": ["2.1.0"], - "jest-each": ["28.1.3"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@types/babel__core": ["7.1.19"], - "babel-preset-jest": ["28.1.3_@babel+core@7.18.13"], - "babel-plugin-jest-hoist": ["28.1.3"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-config__28.1.3__at_types_node_18.7.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-config", - version = "28.1.3_@types+node@18.7.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==", - deps = { - "@babel/core": "7.18.13", - "@jest/test-sequencer": "28.1.3", - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "babel-jest": "28.1.3_@babel+core@7.18.13", - "chalk": "4.1.2", - "ci-info": "3.3.2", - "deepmerge": "4.2.2", - "glob": "7.2.3", - "graceful-fs": "4.2.10", - "jest-circus": "28.1.3", - "jest-environment-node": "28.1.3", - "jest-get-type": "28.0.2", - "jest-regex-util": "28.0.2", - "jest-resolve": "28.1.3", - "jest-runner": "28.1.3", - "jest-util": "28.1.3", - "jest-validate": "28.1.3", - "micromatch": "4.0.5", - "parse-json": "5.2.0", - "pretty-format": "28.1.3", - "slash": "3.0.0", - "strip-json-comments": "3.1.1", - }, - transitive_closure = { - "jest-config": ["28.1.3_@types+node@18.7.13"], - "@babel/core": ["7.18.13"], - "@jest/test-sequencer": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "babel-jest": ["28.1.3_@babel+core@7.18.13"], - "chalk": ["2.4.2", "4.1.2"], - "ci-info": ["3.3.2"], - "deepmerge": ["4.2.2"], - "glob": ["7.2.3"], - "graceful-fs": ["4.2.10"], - "jest-circus": ["28.1.3"], - "jest-environment-node": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-regex-util": ["28.0.2"], - "jest-resolve": ["28.1.3"], - "jest-runner": ["28.1.3"], - "jest-util": ["28.1.3"], - "jest-validate": ["28.1.3"], - "micromatch": ["4.0.5"], - "parse-json": ["5.2.0"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "strip-json-comments": ["3.1.1"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@babel/code-frame": ["7.18.6"], - "error-ex": ["1.3.2"], - "json-parse-even-better-errors": ["2.3.1"], - "lines-and-columns": ["1.2.4"], - "is-arrayish": ["0.2.1"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["2.0.0", "1.0.5"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "camelcase": ["5.3.1", "6.3.0"], - "leven": ["3.1.0"], - "@jest/console": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "emittery": ["0.10.2"], - "jest-docblock": ["28.1.1"], - "jest-haste-map": ["28.1.3"], - "jest-leak-detector": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-runtime": ["28.1.3"], - "jest-watcher": ["28.1.3"], - "jest-worker": ["28.1.3"], - "p-limit": ["2.3.0", "3.1.0"], - "source-map-support": ["0.5.13"], - "buffer-from": ["1.1.2"], - "source-map": ["0.6.1"], - "yocto-queue": ["0.1.0"], - "merge-stream": ["2.0.0"], - "ansi-escapes": ["4.3.2"], - "string-length": ["4.0.2"], - "char-regex": ["1.0.2"], - "strip-ansi": ["6.0.1"], - "type-fest": ["0.21.3"], - "@jest/fake-timers": ["28.1.3"], - "@jest/globals": ["28.1.3"], - "@jest/source-map": ["28.1.2"], - "cjs-module-lexer": ["1.2.2"], - "collect-v8-coverage": ["1.0.1"], - "execa": ["5.1.1"], - "jest-mock": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "strip-bom": ["4.0.0"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "expect": ["28.1.3"], - "jest-diff": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "natural-compare": ["1.4.0"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - "callsites": ["3.1.0"], - "@jest/expect": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - "@types/stack-utils": ["2.0.1"], - "stack-utils": ["2.0.5"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "detect-newline": ["3.1.0"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "istanbul-lib-coverage": ["3.2.0"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-try": ["2.2.0"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "co": ["4.6.0"], - "dedent": ["0.7.0"], - "is-generator-fn": ["2.1.0"], - "jest-each": ["28.1.3"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@types/babel__core": ["7.1.19"], - "babel-preset-jest": ["28.1.3_@babel+core@7.18.13"], - "babel-plugin-jest-hoist": ["28.1.3"], - "@types/babel__generator": ["7.6.4"], - "@types/babel__template": ["7.4.1"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-diff__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-diff", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", - deps = { - "chalk": "4.1.2", - "diff-sequences": "28.1.1", - "jest-get-type": "28.0.2", - "pretty-format": "28.1.3", - }, - transitive_closure = { - "jest-diff": ["28.1.3"], - "chalk": ["4.1.2"], - "diff-sequences": ["28.1.1"], - "jest-get-type": ["28.0.2"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-docblock__28.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-docblock", - version = "28.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==", - deps = { - "detect-newline": "3.1.0", - }, - transitive_closure = { - "jest-docblock": ["28.1.1"], - "detect-newline": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-each__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-each", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==", - deps = { - "@jest/types": "28.1.3", - "chalk": "4.1.2", - "jest-get-type": "28.0.2", - "jest-util": "28.1.3", - "pretty-format": "28.1.3", - }, - transitive_closure = { - "jest-each": ["28.1.3"], - "@jest/types": ["28.1.3"], - "chalk": ["4.1.2"], - "jest-get-type": ["28.0.2"], - "jest-util": ["28.1.3"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-environment-node__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-environment-node", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==", - deps = { - "@jest/environment": "28.1.3", - "@jest/fake-timers": "28.1.3", - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "jest-mock": "28.1.3", - "jest-util": "28.1.3", - }, - transitive_closure = { - "jest-environment-node": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/fake-timers": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "jest-mock": ["28.1.3"], - "jest-util": ["28.1.3"], - "chalk": ["2.4.2", "4.1.2"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "supports-color": ["5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "@sinonjs/fake-timers": ["9.1.2"], - "jest-message-util": ["28.1.3"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "ansi-regex": ["5.0.1"], - "react-is": ["18.2.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-get-type__28.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-get-type", - version = "28.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", - transitive_closure = { - "jest-get-type": ["28.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-haste-map__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-haste-map", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", - deps = { - "fsevents": "2.3.2", - "@jest/types": "28.1.3", - "@types/graceful-fs": "4.1.5", - "@types/node": "18.7.13", - "anymatch": "3.1.2", - "fb-watchman": "2.0.1", - "graceful-fs": "4.2.10", - "jest-regex-util": "28.0.2", - "jest-util": "28.1.3", - "jest-worker": "28.1.3", - "micromatch": "4.0.5", - "walker": "1.0.8", - }, - transitive_closure = { - "jest-haste-map": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/graceful-fs": ["4.1.5"], - "@types/node": ["18.7.13"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "graceful-fs": ["4.2.10"], - "jest-regex-util": ["28.0.2"], - "jest-util": ["28.1.3"], - "jest-worker": ["28.1.3"], - "micromatch": ["4.0.5"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "merge-stream": ["2.0.0"], - "supports-color": ["7.2.0", "8.1.1"], - "has-flag": ["4.0.0"], - "chalk": ["4.1.2"], - "ci-info": ["3.3.2"], - "ansi-styles": ["4.3.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-leak-detector__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-leak-detector", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==", - deps = { - "jest-get-type": "28.0.2", - "pretty-format": "28.1.3", - }, - transitive_closure = { - "jest-leak-detector": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-matcher-utils__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-matcher-utils", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==", - deps = { - "chalk": "4.1.2", - "jest-diff": "28.1.3", - "jest-get-type": "28.0.2", - "pretty-format": "28.1.3", - }, - transitive_closure = { - "jest-matcher-utils": ["28.1.3"], - "chalk": ["4.1.2"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "diff-sequences": ["28.1.1"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-message-util__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-message-util", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", - deps = { - "@babel/code-frame": "7.18.6", - "@jest/types": "28.1.3", - "@types/stack-utils": "2.0.1", - "chalk": "4.1.2", - "graceful-fs": "4.2.10", - "micromatch": "4.0.5", - "pretty-format": "28.1.3", - "slash": "3.0.0", - "stack-utils": "2.0.5", - }, - transitive_closure = { - "jest-message-util": ["28.1.3"], - "@babel/code-frame": ["7.18.6"], - "@jest/types": ["28.1.3"], - "@types/stack-utils": ["2.0.1"], - "chalk": ["2.4.2", "4.1.2"], - "graceful-fs": ["4.2.10"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["3.2.1", "4.3.0", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "supports-color": ["5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/node": ["18.7.13"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-mock__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-mock", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", - deps = { - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - }, - transitive_closure = { - "jest-mock": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "chalk": ["4.1.2"], - "ansi-styles": ["4.3.0"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-pnp-resolver__1.2.2__jest-resolve_28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-pnp-resolver", - version = "1.2.2_jest-resolve@28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", - deps = { - "jest-resolve": "28.1.3", - }, - transitive_closure = { - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "jest-resolve": ["28.1.3"], - "chalk": ["4.1.2"], - "graceful-fs": ["4.2.10"], - "jest-haste-map": ["28.1.3"], - "jest-util": ["28.1.3"], - "jest-validate": ["28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "slash": ["3.0.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "@jest/types": ["28.1.3"], - "camelcase": ["6.3.0"], - "jest-get-type": ["28.0.2"], - "leven": ["3.1.0"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/node": ["18.7.13"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-regex-util": ["28.0.2"], - "jest-worker": ["28.1.3"], - "micromatch": ["4.0.5"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "merge-stream": ["2.0.0"], - "supports-color": ["7.2.0", "8.1.1"], - "has-flag": ["4.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-regex-util__28.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-regex-util", - version = "28.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", - transitive_closure = { - "jest-regex-util": ["28.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-resolve-dependencies__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-resolve-dependencies", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==", - deps = { - "jest-regex-util": "28.0.2", - "jest-snapshot": "28.1.3", - }, - transitive_closure = { - "jest-resolve-dependencies": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "jest-snapshot": ["28.1.3"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "chalk": ["2.4.2", "4.1.2"], - "expect": ["28.1.3"], - "graceful-fs": ["4.2.10"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-haste-map": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "natural-compare": ["1.4.0"], - "pretty-format": ["28.1.3"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-worker": ["28.1.3"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "merge-stream": ["2.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@jridgewell/trace-mapping": ["0.3.15"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@babel/parser": ["7.18.13"], - "istanbul-lib-coverage": ["3.2.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-resolve__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-resolve", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==", - deps = { - "chalk": "4.1.2", - "graceful-fs": "4.2.10", - "jest-haste-map": "28.1.3", - "jest-pnp-resolver": "1.2.2_jest-resolve@28.1.3", - "jest-util": "28.1.3", - "jest-validate": "28.1.3", - "resolve": "1.22.1", - "resolve.exports": "1.1.0", - "slash": "3.0.0", - }, - transitive_closure = { - "jest-resolve": ["28.1.3"], - "chalk": ["4.1.2"], - "graceful-fs": ["4.2.10"], - "jest-haste-map": ["28.1.3"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "jest-util": ["28.1.3"], - "jest-validate": ["28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "slash": ["3.0.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "@jest/types": ["28.1.3"], - "camelcase": ["6.3.0"], - "jest-get-type": ["28.0.2"], - "leven": ["3.1.0"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/node": ["18.7.13"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-regex-util": ["28.0.2"], - "jest-worker": ["28.1.3"], - "micromatch": ["4.0.5"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "merge-stream": ["2.0.0"], - "supports-color": ["7.2.0", "8.1.1"], - "has-flag": ["4.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-runner__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-runner", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==", - deps = { - "@jest/console": "28.1.3", - "@jest/environment": "28.1.3", - "@jest/test-result": "28.1.3", - "@jest/transform": "28.1.3", - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "chalk": "4.1.2", - "emittery": "0.10.2", - "graceful-fs": "4.2.10", - "jest-docblock": "28.1.1", - "jest-environment-node": "28.1.3", - "jest-haste-map": "28.1.3", - "jest-leak-detector": "28.1.3", - "jest-message-util": "28.1.3", - "jest-resolve": "28.1.3", - "jest-runtime": "28.1.3", - "jest-util": "28.1.3", - "jest-watcher": "28.1.3", - "jest-worker": "28.1.3", - "p-limit": "3.1.0", - "source-map-support": "0.5.13", - }, - transitive_closure = { - "jest-runner": ["28.1.3"], - "@jest/console": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "chalk": ["2.4.2", "4.1.2"], - "emittery": ["0.10.2"], - "graceful-fs": ["4.2.10"], - "jest-docblock": ["28.1.1"], - "jest-environment-node": ["28.1.3"], - "jest-haste-map": ["28.1.3"], - "jest-leak-detector": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-resolve": ["28.1.3"], - "jest-runtime": ["28.1.3"], - "jest-util": ["28.1.3"], - "jest-watcher": ["28.1.3"], - "jest-worker": ["28.1.3"], - "p-limit": ["2.3.0", "3.1.0"], - "source-map-support": ["0.5.13"], - "buffer-from": ["1.1.2"], - "source-map": ["0.6.1"], - "yocto-queue": ["0.1.0"], - "merge-stream": ["2.0.0"], - "supports-color": ["7.2.0", "5.5.0", "8.1.1"], - "has-flag": ["3.0.0", "4.0.0"], - "ansi-escapes": ["4.3.2"], - "string-length": ["4.0.2"], - "char-regex": ["1.0.2"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - "type-fest": ["0.21.3"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@jest/fake-timers": ["28.1.3"], - "@jest/globals": ["28.1.3"], - "@jest/source-map": ["28.1.2"], - "cjs-module-lexer": ["1.2.2"], - "collect-v8-coverage": ["1.0.1"], - "execa": ["5.1.1"], - "glob": ["7.2.3"], - "jest-mock": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "jest-snapshot": ["28.1.3"], - "slash": ["3.0.0"], - "strip-bom": ["4.0.0"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "expect": ["28.1.3"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-matcher-utils": ["28.1.3"], - "natural-compare": ["1.4.0"], - "pretty-format": ["28.1.3"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@babel/highlight": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["2.0.0", "1.0.5"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "convert-source-map": ["1.8.0"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "safe-buffer": ["5.1.2"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "minimatch": ["3.1.2"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - "callsites": ["3.1.0"], - "@jest/expect": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "jest-validate": ["28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "camelcase": ["5.3.1", "6.3.0"], - "leven": ["3.1.0"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "stack-utils": ["2.0.5"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "detect-newline": ["3.1.0"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "babel-plugin-istanbul": ["6.1.1"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "istanbul-lib-coverage": ["3.2.0"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-runtime__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-runtime", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==", - deps = { - "@jest/environment": "28.1.3", - "@jest/fake-timers": "28.1.3", - "@jest/globals": "28.1.3", - "@jest/source-map": "28.1.2", - "@jest/test-result": "28.1.3", - "@jest/transform": "28.1.3", - "@jest/types": "28.1.3", - "chalk": "4.1.2", - "cjs-module-lexer": "1.2.2", - "collect-v8-coverage": "1.0.1", - "execa": "5.1.1", - "glob": "7.2.3", - "graceful-fs": "4.2.10", - "jest-haste-map": "28.1.3", - "jest-message-util": "28.1.3", - "jest-mock": "28.1.3", - "jest-regex-util": "28.0.2", - "jest-resolve": "28.1.3", - "jest-snapshot": "28.1.3", - "jest-util": "28.1.3", - "slash": "3.0.0", - "strip-bom": "4.0.0", - }, - transitive_closure = { - "jest-runtime": ["28.1.3"], - "@jest/environment": ["28.1.3"], - "@jest/fake-timers": ["28.1.3"], - "@jest/globals": ["28.1.3"], - "@jest/source-map": ["28.1.2"], - "@jest/test-result": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@jest/types": ["28.1.3"], - "chalk": ["2.4.2", "4.1.2"], - "cjs-module-lexer": ["1.2.2"], - "collect-v8-coverage": ["1.0.1"], - "execa": ["5.1.1"], - "glob": ["7.2.3"], - "graceful-fs": ["4.2.10"], - "jest-haste-map": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-mock": ["28.1.3"], - "jest-regex-util": ["28.0.2"], - "jest-resolve": ["28.1.3"], - "jest-snapshot": ["28.1.3"], - "jest-util": ["28.1.3"], - "slash": ["3.0.0"], - "strip-bom": ["4.0.0"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "expect": ["28.1.3"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-matcher-utils": ["28.1.3"], - "natural-compare": ["1.4.0"], - "pretty-format": ["28.1.3"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@babel/helper-string-parser": ["7.18.10"], - "@babel/helper-validator-identifier": ["7.18.6"], - "to-fast-properties": ["2.0.0"], - "@babel/code-frame": ["7.18.6"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "@babel/parser": ["7.18.13"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@babel/highlight": ["7.18.6"], - "js-tokens": ["4.0.0"], - "escape-string-regexp": ["2.0.0", "1.0.5"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "convert-source-map": ["1.8.0"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "safe-buffer": ["5.1.2"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "jest-pnp-resolver": ["1.2.2_jest-resolve@28.1.3"], - "jest-validate": ["28.1.3"], - "resolve": ["1.22.1"], - "resolve.exports": ["1.1.0"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - "camelcase": ["5.3.1", "6.3.0"], - "leven": ["3.1.0"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "stack-utils": ["2.0.5"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-worker": ["28.1.3"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "merge-stream": ["2.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "minimatch": ["3.1.2"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "cross-spawn": ["7.0.3"], - "get-stream": ["6.0.1"], - "human-signals": ["2.1.0"], - "is-stream": ["2.0.1"], - "npm-run-path": ["4.0.1"], - "onetime": ["5.1.2"], - "signal-exit": ["3.0.7"], - "strip-final-newline": ["2.0.0"], - "mimic-fn": ["2.1.0"], - "path-key": ["3.1.1"], - "shebang-command": ["2.0.0"], - "which": ["2.0.2"], - "isexe": ["2.0.0"], - "shebang-regex": ["3.0.0"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "babel-plugin-istanbul": ["6.1.1"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "istanbul-lib-coverage": ["3.2.0"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - "@jest/console": ["28.1.3"], - "callsites": ["3.1.0"], - "@jest/expect": ["28.1.3"], - "@sinonjs/fake-timers": ["9.1.2"], - "@sinonjs/commons": ["1.8.3"], - "type-detect": ["4.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-snapshot__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-snapshot", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==", - deps = { - "@babel/core": "7.18.13", - "@babel/generator": "7.18.13", - "@babel/plugin-syntax-typescript": "7.18.6_@babel+core@7.18.13", - "@babel/traverse": "7.18.13", - "@babel/types": "7.18.13", - "@jest/expect-utils": "28.1.3", - "@jest/transform": "28.1.3", - "@jest/types": "28.1.3", - "@types/babel__traverse": "7.18.0", - "@types/prettier": "2.7.0", - "babel-preset-current-node-syntax": "1.0.1_@babel+core@7.18.13", - "chalk": "4.1.2", - "expect": "28.1.3", - "graceful-fs": "4.2.10", - "jest-diff": "28.1.3", - "jest-get-type": "28.0.2", - "jest-haste-map": "28.1.3", - "jest-matcher-utils": "28.1.3", - "jest-message-util": "28.1.3", - "jest-util": "28.1.3", - "natural-compare": "1.4.0", - "pretty-format": "28.1.3", - "semver": "7.3.7", - }, - transitive_closure = { - "jest-snapshot": ["28.1.3"], - "@babel/core": ["7.18.13"], - "@babel/generator": ["7.18.13"], - "@babel/plugin-syntax-typescript": ["7.18.6_@babel+core@7.18.13"], - "@babel/traverse": ["7.18.13"], - "@babel/types": ["7.18.13"], - "@jest/expect-utils": ["28.1.3"], - "@jest/transform": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/babel__traverse": ["7.18.0"], - "@types/prettier": ["2.7.0"], - "babel-preset-current-node-syntax": ["1.0.1_@babel+core@7.18.13"], - "chalk": ["2.4.2", "4.1.2"], - "expect": ["28.1.3"], - "graceful-fs": ["4.2.10"], - "jest-diff": ["28.1.3"], - "jest-get-type": ["28.0.2"], - "jest-haste-map": ["28.1.3"], - "jest-matcher-utils": ["28.1.3"], - "jest-message-util": ["28.1.3"], - "jest-util": ["28.1.3"], - "natural-compare": ["1.4.0"], - "pretty-format": ["28.1.3"], - "semver": ["6.3.0", "7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "3.2.1", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "@types/node": ["18.7.13"], - "ci-info": ["3.3.2"], - "picomatch": ["2.3.1"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "slash": ["3.0.0"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - "supports-color": ["7.2.0", "8.1.1", "5.5.0"], - "has-flag": ["4.0.0", "3.0.0"], - "color-convert": ["2.0.1", "1.9.3"], - "color-name": ["1.1.4", "1.1.3"], - "@types/graceful-fs": ["4.1.5"], - "anymatch": ["3.1.2"], - "fb-watchman": ["2.0.1"], - "jest-regex-util": ["28.0.2"], - "jest-worker": ["28.1.3"], - "walker": ["1.0.8"], - "fsevents": ["2.3.2"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - "merge-stream": ["2.0.0"], - "bser": ["2.1.1"], - "node-int64": ["0.4.0"], - "normalize-path": ["3.0.0"], - "diff-sequences": ["28.1.1"], - "@babel/plugin-syntax-async-generators": ["7.8.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-bigint": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-class-properties": ["7.12.13_@babel+core@7.18.13"], - "@babel/plugin-syntax-import-meta": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-json-strings": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-logical-assignment-operators": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-nullish-coalescing-operator": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-numeric-separator": ["7.10.4_@babel+core@7.18.13"], - "@babel/plugin-syntax-object-rest-spread": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-catch-binding": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-optional-chaining": ["7.8.3_@babel+core@7.18.13"], - "@babel/plugin-syntax-top-level-await": ["7.14.5_@babel+core@7.18.13"], - "@babel/helper-plugin-utils": ["7.18.9"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@jridgewell/trace-mapping": ["0.3.15"], - "babel-plugin-istanbul": ["6.1.1"], - "convert-source-map": ["1.8.0"], - "fast-json-stable-stringify": ["2.1.0"], - "pirates": ["4.0.5"], - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - "safe-buffer": ["5.1.2"], - "@istanbuljs/load-nyc-config": ["1.1.0"], - "@istanbuljs/schema": ["0.1.3"], - "istanbul-lib-instrument": ["5.2.0"], - "test-exclude": ["6.0.0"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "@babel/parser": ["7.18.13"], - "istanbul-lib-coverage": ["3.2.0"], - "camelcase": ["5.3.1"], - "find-up": ["4.1.0"], - "get-package-type": ["0.1.0"], - "js-yaml": ["3.14.1"], - "resolve-from": ["5.0.0"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - "@babel/helper-string-parser": ["7.18.10"], - "to-fast-properties": ["2.0.0"], - "@babel/helper-environment-visitor": ["7.18.9"], - "@babel/helper-function-name": ["7.18.9"], - "@babel/helper-hoist-variables": ["7.18.6"], - "@babel/helper-split-export-declaration": ["7.18.6"], - "debug": ["4.3.4"], - "globals": ["11.12.0"], - "ms": ["2.1.2"], - "@babel/template": ["7.18.10"], - "@jridgewell/gen-mapping": ["0.1.1", "0.3.2"], - "jsesc": ["2.5.2"], - "@jridgewell/set-array": ["1.1.2"], - "@ampproject/remapping": ["2.2.0"], - "@babel/helper-compilation-targets": ["7.18.9_@babel+core@7.18.13"], - "@babel/helper-module-transforms": ["7.18.9"], - "@babel/helpers": ["7.18.9"], - "gensync": ["1.0.0-beta.2"], - "json5": ["2.2.1"], - "@babel/helper-module-imports": ["7.18.6"], - "@babel/helper-simple-access": ["7.18.6"], - "@babel/compat-data": ["7.18.13"], - "@babel/helper-validator-option": ["7.18.6"], - "browserslist": ["4.21.3"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-util__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-util", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", - deps = { - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "chalk": "4.1.2", - "ci-info": "3.3.2", - "graceful-fs": "4.2.10", - "picomatch": "2.3.1", - }, - transitive_closure = { - "jest-util": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "chalk": ["4.1.2"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "ansi-styles": ["4.3.0"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-validate__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-validate", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==", - deps = { - "@jest/types": "28.1.3", - "camelcase": "6.3.0", - "chalk": "4.1.2", - "jest-get-type": "28.0.2", - "leven": "3.1.0", - "pretty-format": "28.1.3", - }, - transitive_closure = { - "jest-validate": ["28.1.3"], - "@jest/types": ["28.1.3"], - "camelcase": ["6.3.0"], - "chalk": ["4.1.2"], - "jest-get-type": ["28.0.2"], - "leven": ["3.1.0"], - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["4.3.0", "5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/node": ["18.7.13"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-watcher__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-watcher", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", - deps = { - "@jest/test-result": "28.1.3", - "@jest/types": "28.1.3", - "@types/node": "18.7.13", - "ansi-escapes": "4.3.2", - "chalk": "4.1.2", - "emittery": "0.10.2", - "jest-util": "28.1.3", - "string-length": "4.0.2", - }, - transitive_closure = { - "jest-watcher": ["28.1.3"], - "@jest/test-result": ["28.1.3"], - "@jest/types": ["28.1.3"], - "@types/node": ["18.7.13"], - "ansi-escapes": ["4.3.2"], - "chalk": ["2.4.2", "4.1.2"], - "emittery": ["0.10.2"], - "jest-util": ["28.1.3"], - "string-length": ["4.0.2"], - "char-regex": ["1.0.2"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - "ci-info": ["3.3.2"], - "graceful-fs": ["4.2.10"], - "picomatch": ["2.3.1"], - "ansi-styles": ["3.2.1", "5.2.0", "4.3.0"], - "supports-color": ["5.5.0", "7.2.0"], - "has-flag": ["3.0.0", "4.0.0"], - "color-convert": ["1.9.3", "2.0.1"], - "color-name": ["1.1.3", "1.1.4"], - "type-fest": ["0.21.3"], - "@jest/schemas": ["28.1.3"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "@types/istanbul-reports": ["3.0.1"], - "@types/yargs": ["17.0.11"], - "@types/yargs-parser": ["21.0.0"], - "@types/istanbul-lib-report": ["3.0.0"], - "@sinclair/typebox": ["0.24.28"], - "@jest/console": ["28.1.3"], - "collect-v8-coverage": ["1.0.1"], - "jest-message-util": ["28.1.3"], - "slash": ["3.0.0"], - "@babel/code-frame": ["7.18.6"], - "@types/stack-utils": ["2.0.1"], - "micromatch": ["4.0.5"], - "pretty-format": ["28.1.3"], - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["1.0.5", "2.0.0"], - "react-is": ["18.2.0"], - "braces": ["3.0.2"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "js-tokens": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jest-worker__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jest-worker", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", - deps = { - "@types/node": "18.7.13", - "merge-stream": "2.0.0", - "supports-color": "8.1.1", - }, - transitive_closure = { - "jest-worker": ["28.1.3"], - "@types/node": ["18.7.13"], - "merge-stream": ["2.0.0"], - "supports-color": ["8.1.1"], - "has-flag": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__js-tokens__4.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "js-tokens", - version = "4.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - transitive_closure = { - "js-tokens": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__js-yaml__3.14.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "js-yaml", - version = "3.14.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - deps = { - "argparse": "1.0.10", - "esprima": "4.0.1", - }, - transitive_closure = { - "js-yaml": ["3.14.1"], - "argparse": ["1.0.10"], - "esprima": ["4.0.1"], - "sprintf-js": ["1.0.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__jsesc__2.5.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "jsesc", - version = "2.5.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - transitive_closure = { - "jsesc": ["2.5.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__json-parse-even-better-errors__2.3.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "json-parse-even-better-errors", - version = "2.3.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - transitive_closure = { - "json-parse-even-better-errors": ["2.3.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__json5__2.2.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "json5", - version = "2.2.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", - transitive_closure = { - "json5": ["2.2.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__kleur__3.0.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "kleur", - version = "3.0.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - transitive_closure = { - "kleur": ["3.0.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__leven__3.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "leven", - version = "3.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - transitive_closure = { - "leven": ["3.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__lines-and-columns__1.2.4", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "lines-and-columns", - version = "1.2.4", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - transitive_closure = { - "lines-and-columns": ["1.2.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__locate-path__5.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "locate-path", - version = "5.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - deps = { - "p-locate": "4.1.0", - }, - transitive_closure = { - "locate-path": ["5.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__lru-cache__6.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "lru-cache", - version = "6.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - deps = { - "yallist": "4.0.0", - }, - transitive_closure = { - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__make-dir__3.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "make-dir", - version = "3.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - deps = { - "semver": "6.3.0", - }, - transitive_closure = { - "make-dir": ["3.1.0"], - "semver": ["6.3.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__makeerror__1.0.12", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "makeerror", - version = "1.0.12", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - deps = { - "tmpl": "1.0.5", - }, - transitive_closure = { - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__merge-stream__2.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "merge-stream", - version = "2.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - transitive_closure = { - "merge-stream": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__micromatch__4.0.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "micromatch", - version = "4.0.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - deps = { - "braces": "3.0.2", - "picomatch": "2.3.1", - }, - transitive_closure = { - "micromatch": ["4.0.5"], - "braces": ["3.0.2"], - "picomatch": ["2.3.1"], - "fill-range": ["7.0.1"], - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__mimic-fn__2.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "mimic-fn", - version = "2.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - transitive_closure = { - "mimic-fn": ["2.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__minimatch__3.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "minimatch", - version = "3.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - deps = { - "brace-expansion": "1.1.11", - }, - transitive_closure = { - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__ms__2.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "ms", - version = "2.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - transitive_closure = { - "ms": ["2.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__natural-compare__1.4.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "natural-compare", - version = "1.4.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - transitive_closure = { - "natural-compare": ["1.4.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__node-int64__0.4.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "node-int64", - version = "0.4.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - transitive_closure = { - "node-int64": ["0.4.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__node-releases__2.0.6", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "node-releases", - version = "2.0.6", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", - transitive_closure = { - "node-releases": ["2.0.6"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__normalize-path__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "normalize-path", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - transitive_closure = { - "normalize-path": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__npm-run-path__4.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "npm-run-path", - version = "4.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - deps = { - "path-key": "3.1.1", - }, - transitive_closure = { - "npm-run-path": ["4.0.1"], - "path-key": ["3.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__once__1.4.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "once", - version = "1.4.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - deps = { - "wrappy": "1.0.2", - }, - transitive_closure = { - "once": ["1.4.0"], - "wrappy": ["1.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__onetime__5.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "onetime", - version = "5.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - deps = { - "mimic-fn": "2.1.0", - }, - transitive_closure = { - "onetime": ["5.1.2"], - "mimic-fn": ["2.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__p-limit__2.3.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "p-limit", - version = "2.3.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - deps = { - "p-try": "2.2.0", - }, - transitive_closure = { - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__p-limit__3.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "p-limit", - version = "3.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - deps = { - "yocto-queue": "0.1.0", - }, - transitive_closure = { - "p-limit": ["3.1.0"], - "yocto-queue": ["0.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__p-locate__4.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "p-locate", - version = "4.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - deps = { - "p-limit": "2.3.0", - }, - transitive_closure = { - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__p-try__2.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "p-try", - version = "2.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - transitive_closure = { - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__parse-json__5.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "parse-json", - version = "5.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - deps = { - "@babel/code-frame": "7.18.6", - "error-ex": "1.3.2", - "json-parse-even-better-errors": "2.3.1", - "lines-and-columns": "1.2.4", - }, - transitive_closure = { - "parse-json": ["5.2.0"], - "@babel/code-frame": ["7.18.6"], - "error-ex": ["1.3.2"], - "json-parse-even-better-errors": ["2.3.1"], - "lines-and-columns": ["1.2.4"], - "is-arrayish": ["0.2.1"], - "@babel/highlight": ["7.18.6"], - "@babel/helper-validator-identifier": ["7.18.6"], - "chalk": ["2.4.2"], - "js-tokens": ["4.0.0"], - "ansi-styles": ["3.2.1"], - "escape-string-regexp": ["1.0.5"], - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - "color-convert": ["1.9.3"], - "color-name": ["1.1.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__path-exists__4.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "path-exists", - version = "4.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - transitive_closure = { - "path-exists": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__path-is-absolute__1.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "path-is-absolute", - version = "1.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - transitive_closure = { - "path-is-absolute": ["1.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__path-key__3.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "path-key", - version = "3.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - transitive_closure = { - "path-key": ["3.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__path-parse__1.0.7", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "path-parse", - version = "1.0.7", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - transitive_closure = { - "path-parse": ["1.0.7"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__picocolors__1.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "picocolors", - version = "1.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - transitive_closure = { - "picocolors": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__picomatch__2.3.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "picomatch", - version = "2.3.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - transitive_closure = { - "picomatch": ["2.3.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__pirates__4.0.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "pirates", - version = "4.0.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - transitive_closure = { - "pirates": ["4.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__pkg-dir__4.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "pkg-dir", - version = "4.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - deps = { - "find-up": "4.1.0", - }, - transitive_closure = { - "pkg-dir": ["4.2.0"], - "find-up": ["4.1.0"], - "locate-path": ["5.0.0"], - "path-exists": ["4.0.0"], - "p-locate": ["4.1.0"], - "p-limit": ["2.3.0"], - "p-try": ["2.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__pretty-format__28.1.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "pretty-format", - version = "28.1.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", - deps = { - "@jest/schemas": "28.1.3", - "ansi-regex": "5.0.1", - "ansi-styles": "5.2.0", - "react-is": "18.2.0", - }, - transitive_closure = { - "pretty-format": ["28.1.3"], - "@jest/schemas": ["28.1.3"], - "ansi-regex": ["5.0.1"], - "ansi-styles": ["5.2.0"], - "react-is": ["18.2.0"], - "@sinclair/typebox": ["0.24.28"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__prompts__2.4.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "prompts", - version = "2.4.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - deps = { - "kleur": "3.0.3", - "sisteransi": "1.0.5", - }, - transitive_closure = { - "prompts": ["2.4.2"], - "kleur": ["3.0.3"], - "sisteransi": ["1.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__react-is__18.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "react-is", - version = "18.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - transitive_closure = { - "react-is": ["18.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__require-directory__2.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "require-directory", - version = "2.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - transitive_closure = { - "require-directory": ["2.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__resolve-cwd__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "resolve-cwd", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - deps = { - "resolve-from": "5.0.0", - }, - transitive_closure = { - "resolve-cwd": ["3.0.0"], - "resolve-from": ["5.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__resolve-from__5.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "resolve-from", - version = "5.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - transitive_closure = { - "resolve-from": ["5.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__resolve.exports__1.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "resolve.exports", - version = "1.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", - transitive_closure = { - "resolve.exports": ["1.1.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__resolve__1.22.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "resolve", - version = "1.22.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - deps = { - "is-core-module": "2.10.0", - "path-parse": "1.0.7", - "supports-preserve-symlinks-flag": "1.0.0", - }, - transitive_closure = { - "resolve": ["1.22.1"], - "is-core-module": ["2.10.0"], - "path-parse": ["1.0.7"], - "supports-preserve-symlinks-flag": ["1.0.0"], - "has": ["1.0.3"], - "function-bind": ["1.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__rimraf__3.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "rimraf", - version = "3.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - deps = { - "glob": "7.2.3", - }, - transitive_closure = { - "rimraf": ["3.0.2"], - "glob": ["7.2.3"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "minimatch": ["3.1.2"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__safe-buffer__5.1.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "safe-buffer", - version = "5.1.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - transitive_closure = { - "safe-buffer": ["5.1.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__semver__6.3.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "semver", - version = "6.3.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - transitive_closure = { - "semver": ["6.3.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__semver__7.3.7", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "semver", - version = "7.3.7", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - deps = { - "lru-cache": "6.0.0", - }, - transitive_closure = { - "semver": ["7.3.7"], - "lru-cache": ["6.0.0"], - "yallist": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__shebang-command__2.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "shebang-command", - version = "2.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - deps = { - "shebang-regex": "3.0.0", - }, - transitive_closure = { - "shebang-command": ["2.0.0"], - "shebang-regex": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__shebang-regex__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "shebang-regex", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - transitive_closure = { - "shebang-regex": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__signal-exit__3.0.7", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "signal-exit", - version = "3.0.7", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - transitive_closure = { - "signal-exit": ["3.0.7"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__sisteransi__1.0.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "sisteransi", - version = "1.0.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - transitive_closure = { - "sisteransi": ["1.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__slash__3.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "slash", - version = "3.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - transitive_closure = { - "slash": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__source-map-support__0.5.13", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "source-map-support", - version = "0.5.13", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - deps = { - "buffer-from": "1.1.2", - "source-map": "0.6.1", - }, - transitive_closure = { - "source-map-support": ["0.5.13"], - "buffer-from": ["1.1.2"], - "source-map": ["0.6.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__source-map__0.6.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "source-map", - version = "0.6.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - transitive_closure = { - "source-map": ["0.6.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__sprintf-js__1.0.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "sprintf-js", - version = "1.0.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - transitive_closure = { - "sprintf-js": ["1.0.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__stack-utils__2.0.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "stack-utils", - version = "2.0.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", - deps = { - "escape-string-regexp": "2.0.0", - }, - transitive_closure = { - "stack-utils": ["2.0.5"], - "escape-string-regexp": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__string-length__4.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "string-length", - version = "4.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - deps = { - "char-regex": "1.0.2", - "strip-ansi": "6.0.1", - }, - transitive_closure = { - "string-length": ["4.0.2"], - "char-regex": ["1.0.2"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__string-width__4.2.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "string-width", - version = "4.2.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - deps = { - "emoji-regex": "8.0.0", - "is-fullwidth-code-point": "3.0.0", - "strip-ansi": "6.0.1", - }, - transitive_closure = { - "string-width": ["4.2.3"], - "emoji-regex": ["8.0.0"], - "is-fullwidth-code-point": ["3.0.0"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__strip-ansi__6.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "strip-ansi", - version = "6.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - deps = { - "ansi-regex": "5.0.1", - }, - transitive_closure = { - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__strip-bom__4.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "strip-bom", - version = "4.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - transitive_closure = { - "strip-bom": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__strip-final-newline__2.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "strip-final-newline", - version = "2.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - transitive_closure = { - "strip-final-newline": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__strip-json-comments__3.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "strip-json-comments", - version = "3.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - transitive_closure = { - "strip-json-comments": ["3.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__supports-color__5.5.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "supports-color", - version = "5.5.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - deps = { - "has-flag": "3.0.0", - }, - transitive_closure = { - "supports-color": ["5.5.0"], - "has-flag": ["3.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__supports-color__7.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "supports-color", - version = "7.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - deps = { - "has-flag": "4.0.0", - }, - transitive_closure = { - "supports-color": ["7.2.0"], - "has-flag": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__supports-color__8.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "supports-color", - version = "8.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - deps = { - "has-flag": "4.0.0", - }, - transitive_closure = { - "supports-color": ["8.1.1"], - "has-flag": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__supports-hyperlinks__2.2.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "supports-hyperlinks", - version = "2.2.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - deps = { - "has-flag": "4.0.0", - "supports-color": "7.2.0", - }, - transitive_closure = { - "supports-hyperlinks": ["2.2.0"], - "has-flag": ["4.0.0"], - "supports-color": ["7.2.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__supports-preserve-symlinks-flag__1.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "supports-preserve-symlinks-flag", - version = "1.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - transitive_closure = { - "supports-preserve-symlinks-flag": ["1.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__terminal-link__2.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "terminal-link", - version = "2.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - deps = { - "ansi-escapes": "4.3.2", - "supports-hyperlinks": "2.2.0", - }, - transitive_closure = { - "terminal-link": ["2.1.1"], - "ansi-escapes": ["4.3.2"], - "supports-hyperlinks": ["2.2.0"], - "has-flag": ["4.0.0"], - "supports-color": ["7.2.0"], - "type-fest": ["0.21.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__test-exclude__6.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "test-exclude", - version = "6.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - deps = { - "@istanbuljs/schema": "0.1.3", - "glob": "7.2.3", - "minimatch": "3.1.2", - }, - transitive_closure = { - "test-exclude": ["6.0.0"], - "@istanbuljs/schema": ["0.1.3"], - "glob": ["7.2.3"], - "minimatch": ["3.1.2"], - "brace-expansion": ["1.1.11"], - "balanced-match": ["1.0.2"], - "concat-map": ["0.0.1"], - "fs.realpath": ["1.0.0"], - "inflight": ["1.0.6"], - "inherits": ["2.0.4"], - "once": ["1.4.0"], - "path-is-absolute": ["1.0.1"], - "wrappy": ["1.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__tmpl__1.0.5", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "tmpl", - version = "1.0.5", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - transitive_closure = { - "tmpl": ["1.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__to-fast-properties__2.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "to-fast-properties", - version = "2.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - transitive_closure = { - "to-fast-properties": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__to-regex-range__5.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "to-regex-range", - version = "5.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - deps = { - "is-number": "7.0.0", - }, - transitive_closure = { - "to-regex-range": ["5.0.1"], - "is-number": ["7.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__type-detect__4.0.8", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "type-detect", - version = "4.0.8", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - transitive_closure = { - "type-detect": ["4.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__type-fest__0.21.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "type-fest", - version = "0.21.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - transitive_closure = { - "type-fest": ["0.21.3"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__update-browserslist-db__1.0.5__browserslist_4.21.3", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "update-browserslist-db", - version = "1.0.5_browserslist@4.21.3", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", - deps = { - "browserslist": "4.21.3", - "escalade": "3.1.1", - "picocolors": "1.0.0", - }, - transitive_closure = { - "update-browserslist-db": ["1.0.5_browserslist@4.21.3"], - "browserslist": ["4.21.3"], - "escalade": ["3.1.1"], - "picocolors": ["1.0.0"], - "caniuse-lite": ["1.0.30001383"], - "electron-to-chromium": ["1.4.233"], - "node-releases": ["2.0.6"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__v8-to-istanbul__9.0.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "v8-to-istanbul", - version = "9.0.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==", - deps = { - "@jridgewell/trace-mapping": "0.3.15", - "@types/istanbul-lib-coverage": "2.0.4", - "convert-source-map": "1.8.0", - }, - transitive_closure = { - "v8-to-istanbul": ["9.0.1"], - "@jridgewell/trace-mapping": ["0.3.15"], - "@types/istanbul-lib-coverage": ["2.0.4"], - "convert-source-map": ["1.8.0"], - "safe-buffer": ["5.1.2"], - "@jridgewell/resolve-uri": ["3.1.0"], - "@jridgewell/sourcemap-codec": ["1.4.14"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__walker__1.0.8", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "walker", - version = "1.0.8", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - deps = { - "makeerror": "1.0.12", - }, - transitive_closure = { - "walker": ["1.0.8"], - "makeerror": ["1.0.12"], - "tmpl": ["1.0.5"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__which__2.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "which", - version = "2.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - deps = { - "isexe": "2.0.0", - }, - transitive_closure = { - "which": ["2.0.2"], - "isexe": ["2.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__wrap-ansi__7.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "wrap-ansi", - version = "7.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - deps = { - "ansi-styles": "4.3.0", - "string-width": "4.2.3", - "strip-ansi": "6.0.1", - }, - transitive_closure = { - "wrap-ansi": ["7.0.0"], - "ansi-styles": ["4.3.0"], - "string-width": ["4.2.3"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - "emoji-regex": ["8.0.0"], - "is-fullwidth-code-point": ["3.0.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__wrappy__1.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "wrappy", - version = "1.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - transitive_closure = { - "wrappy": ["1.0.2"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__write-file-atomic__4.0.2", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "write-file-atomic", - version = "4.0.2", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - deps = { - "imurmurhash": "0.1.4", - "signal-exit": "3.0.7", - }, - transitive_closure = { - "write-file-atomic": ["4.0.2"], - "imurmurhash": ["0.1.4"], - "signal-exit": ["3.0.7"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__y18n__5.0.8", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "y18n", - version = "5.0.8", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - transitive_closure = { - "y18n": ["5.0.8"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__yallist__4.0.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "yallist", - version = "4.0.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - transitive_closure = { - "yallist": ["4.0.0"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__yargs-parser__21.1.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "yargs-parser", - version = "21.1.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - transitive_closure = { - "yargs-parser": ["21.1.1"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__yargs__17.5.1", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "yargs", - version = "17.5.1", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", - deps = { - "cliui": "7.0.4", - "escalade": "3.1.1", - "get-caller-file": "2.0.5", - "require-directory": "2.1.1", - "string-width": "4.2.3", - "y18n": "5.0.8", - "yargs-parser": "21.1.1", - }, - transitive_closure = { - "yargs": ["17.5.1"], - "cliui": ["7.0.4"], - "escalade": ["3.1.1"], - "get-caller-file": ["2.0.5"], - "require-directory": ["2.1.1"], - "string-width": ["4.2.3"], - "y18n": ["5.0.8"], - "yargs-parser": ["21.1.1"], - "emoji-regex": ["8.0.0"], - "is-fullwidth-code-point": ["3.0.0"], - "strip-ansi": ["6.0.1"], - "ansi-regex": ["5.0.1"], - "wrap-ansi": ["7.0.0"], - "ansi-styles": ["4.3.0"], - "color-convert": ["2.0.1"], - "color-name": ["1.1.4"], - }, - ) - - npm_import( - name = "npm_aspect_rules_jest__yocto-queue__0.1.0", - root_package = "", - link_workspace = "", - link_packages = {}, - package = "yocto-queue", - version = "0.1.0", - lifecycle_hooks_no_sandbox = True, - integrity = "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - transitive_closure = { - "yocto-queue": ["0.1.0"], - }, - ) diff --git a/jest/private/versions.bzl b/jest/private/versions.bzl index cc79d57..2cd8a41 100644 --- a/jest/private/versions.bzl +++ b/jest/private/versions.bzl @@ -1,8 +1,7 @@ -"""Mirror of release info""" +"""List of mirrored versions""" -# Run /scripts/mirror_release.sh to produce a new bzl file. -load("v28.1.0/repositories.bzl", v28_1_0 = "npm_repositories") - -TOOL_VERSIONS = { - "v28.1.0": v28_1_0, -} +# Run /scripts/mirror_release.sh to add new versions. +# Versions should be descending order so TOOL_VERSIONS[0] is the latest version. +TOOL_VERSIONS = [ + "v28.1.0", +] diff --git a/jest/repositories.bzl b/jest/repositories.bzl index d7dac04..94b35c8 100644 --- a/jest/repositories.bzl +++ b/jest/repositories.bzl @@ -5,65 +5,64 @@ See https://docs.bazel.build/versions/main/skylark/deploying.html#dependencies """ load("//jest/private:versions.bzl", "TOOL_VERSIONS") +load("@aspect_rules_js//npm:npm_import.bzl", _npm_translate_lock = "npm_translate_lock") -LATEST_VERSION = TOOL_VERSIONS.keys()[-1] +LATEST_VERSION = TOOL_VERSIONS[0] -_DOC = "Fetch external tools needed for jest-cli" -_ATTRS = { - "jest_version": attr.string(), -} +def jest_repositories(name, jest_version = LATEST_VERSION): + """ + Fetch external tools needed for jest -def _jest_repo_impl(repository_ctx): - # Base BUILD file for this repository - repository_ctx.file("BUILD.bazel", """\ -# Generated by @aspect_rules_jest//jest:repositories.bzl -load("@aspect_rules_jest//jest/private:{version}/defs.bzl", "npm_link_all_packages") -load("@aspect_bazel_lib//lib:directory_path.bzl", "directory_path") -load("@aspect_bazel_lib//lib:copy_file.bzl", "copy_file") + Args: + name: Unique name for this jest tools repository + jest_version: The jest version to fetch. -npm_link_all_packages(name = "node_modules") + See /jest/private/versions.bzl for available versions. + """ + if jest_version not in TOOL_VERSIONS: + fail("""\ +jest version {} is not currently mirrored into rules_jest. +Please instead choose one of these available versions: {} +Or, make a PR to the repo running /scripts/mirror_release.sh to add the newest version. +If you need custom versions, please file an issue.""".format(jest_version, TOOL_VERSIONS)) -directory_path( + _npm_translate_lock( + name = name, + pnpm_lock = "@aspect_rules_jest//jest/private:{version}/pnpm-lock.yaml".format(version = jest_version), + public_hoist_packages = { + # Hoist @jest/test-sequencer out of the transitive closure of jest-cli to node_modules/@jest/test-sequencer + # so it can be required from sequencer.js + "@jest/test-sequencer": [""], + }, + # We'll be linking in the @foo repository and not the repository where the pnpm-lock file is located + link_workspace = name, + # Override the Bazel package where pnpm-lock.yaml is located and link to the specified package instead + root_package = "", + defs_bzl_filename = "npm_link_all_packages.bzl", + repositories_bzl_filename = "npm_repositories.bzl", + additional_file_contents = { + "BUILD.bazel": [ + """load("@aspect_bazel_lib//lib:copy_file.bzl", "copy_file")""", + """load("@aspect_bazel_lib//lib:directory_path.bzl", "directory_path")""", + """load("//:npm_link_all_packages.bzl", "npm_link_all_packages")""", + """npm_link_all_packages(name = "node_modules")""", + """directory_path( name = "jest_entrypoint", directory = ":node_modules/jest-cli/dir", path = "bin/jest.js", visibility = ["//visibility:public"], -) - -copy_file( +)""", + """copy_file( name = "sequencer", src = "@aspect_rules_jest//jest/private:sequencer.js", out = "sequencer.js", visibility = ["//visibility:public"], -) -""".format(version = repository_ctx.attr.jest_version)) - - repository_ctx.file("jest/BUILD.bazel", "") - repository_ctx.file("jest/defs.bzl", """\ -# Generated by @aspect_rules_jest//jest:repositories.bzl -load("@aspect_rules_jest//jest:defs.bzl", _jest_test = "jest_test") - -def jest_test(**kwargs): - _jest_test(jest_repository="{name}", **kwargs) -""".format(name = repository_ctx.attr.name)) - -jest_repository = repository_rule( - _jest_repo_impl, - doc = _DOC, - attrs = _ATTRS, -) - -def jest_repositories(name, jest_version): - if jest_version not in TOOL_VERSIONS.keys(): - fail("""\ -jest-cli version {} is not currently mirrored into rules_jest. -Please instead choose one of these available versions: {} -Or, make a PR to the repo running /scripts/mirror_release.sh to add the newest version. -If you need custom versions, please file an issue.""".format(jest_version, TOOL_VERSIONS.keys())) - - TOOL_VERSIONS[jest_version]() - - jest_repository( - name = name, - jest_version = jest_version, +)""", + ], + "defs.bzl": [ + """load("@aspect_rules_jest//jest:defs.bzl", _jest_test = "jest_test")""", + """def jest_test(**kwargs): + _jest_test(jest_repository="{name}", **kwargs)""".format(name = name), + ], + }, ) diff --git a/scripts/mirror_release.sh b/scripts/mirror_release.sh index 583af0e..b319e8a 100755 --- a/scripts/mirror_release.sh +++ b/scripts/mirror_release.sh @@ -5,49 +5,11 @@ set -o errexit -o nounset SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) version="${1:-$(curl --silent "https://registry.npmjs.org/jest-cli/latest" | jq --raw-output ".version")}" + out="$SCRIPT_DIR/../jest/private/v${version}" mkdir -p "$out" cd $(mktemp -d) npx pnpm install "jest-cli@$version" --lockfile-only -touch BUILD -cat >WORKSPACE <