Skip to content
Snippets Groups Projects
package-lock.json 656 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jacopo Gasparetto's avatar
    Jacopo Gasparetto committed
    4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865
          "version": "7.3.13",
          "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz",
          "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw=="
        },
        "node_modules/@types/serve-index": {
          "version": "1.9.1",
          "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz",
          "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==",
          "dependencies": {
            "@types/express": "*"
          }
        },
        "node_modules/@types/serve-static": {
          "version": "1.15.1",
          "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz",
          "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
          "dependencies": {
            "@types/mime": "*",
            "@types/node": "*"
          }
        },
        "node_modules/@types/sockjs": {
          "version": "0.3.33",
          "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz",
          "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==",
          "dependencies": {
            "@types/node": "*"
          }
        },
        "node_modules/@types/stack-utils": {
          "version": "2.0.1",
          "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
          "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
        },
        "node_modules/@types/testing-library__jest-dom": {
          "version": "5.14.5",
          "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz",
          "integrity": "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==",
          "dependencies": {
            "@types/jest": "*"
          }
        },
        "node_modules/@types/trusted-types": {
          "version": "2.0.3",
          "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz",
          "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g=="
        },
        "node_modules/@types/ws": {
          "version": "8.5.4",
          "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz",
          "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==",
          "dependencies": {
            "@types/node": "*"
          }
        },
        "node_modules/@types/yargs": {
          "version": "16.0.5",
          "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz",
          "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==",
          "dependencies": {
            "@types/yargs-parser": "*"
          }
        },
        "node_modules/@types/yargs-parser": {
          "version": "21.0.0",
          "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
          "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="
        },
        "node_modules/@typescript-eslint/eslint-plugin": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.56.0.tgz",
          "integrity": "sha512-ZNW37Ccl3oMZkzxrYDUX4o7cnuPgU+YrcaYXzsRtLB16I1FR5SHMqga3zGsaSliZADCWo2v8qHWqAYIj8nWCCg==",
          "dependencies": {
            "@eslint-community/regexpp": "^4.4.0",
            "@typescript-eslint/scope-manager": "5.56.0",
            "@typescript-eslint/type-utils": "5.56.0",
            "@typescript-eslint/utils": "5.56.0",
            "debug": "^4.3.4",
            "grapheme-splitter": "^1.0.4",
            "ignore": "^5.2.0",
            "natural-compare-lite": "^1.4.0",
            "semver": "^7.3.7",
            "tsutils": "^3.21.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependencies": {
            "@typescript-eslint/parser": "^5.0.0",
            "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
          },
          "peerDependenciesMeta": {
            "typescript": {
              "optional": true
            }
          }
        },
        "node_modules/@typescript-eslint/experimental-utils": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.56.0.tgz",
          "integrity": "sha512-sxWuj0eO5nItmKgZmsBbChVt90EhfkuncDCPbLAVeEJ+SCjXMcZN3AhhNbxed7IeGJ4XwsdL3/FMvD4r+FLqqA==",
          "dependencies": {
            "@typescript-eslint/utils": "5.56.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependencies": {
            "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
          }
        },
        "node_modules/@typescript-eslint/parser": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.56.0.tgz",
          "integrity": "sha512-sn1OZmBxUsgxMmR8a8U5QM/Wl+tyqlH//jTqCg8daTAmhAk26L2PFhcqPLlYBhYUJMZJK276qLXlHN3a83o2cg==",
          "dependencies": {
            "@typescript-eslint/scope-manager": "5.56.0",
            "@typescript-eslint/types": "5.56.0",
            "@typescript-eslint/typescript-estree": "5.56.0",
            "debug": "^4.3.4"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependencies": {
            "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
          },
          "peerDependenciesMeta": {
            "typescript": {
              "optional": true
            }
          }
        },
        "node_modules/@typescript-eslint/scope-manager": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.56.0.tgz",
          "integrity": "sha512-jGYKyt+iBakD0SA5Ww8vFqGpoV2asSjwt60Gl6YcO8ksQ8s2HlUEyHBMSa38bdLopYqGf7EYQMUIGdT/Luw+sw==",
          "dependencies": {
            "@typescript-eslint/types": "5.56.0",
            "@typescript-eslint/visitor-keys": "5.56.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          }
        },
        "node_modules/@typescript-eslint/type-utils": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.56.0.tgz",
          "integrity": "sha512-8WxgOgJjWRy6m4xg9KoSHPzBNZeQbGlQOH7l2QEhQID/+YseaFxg5J/DLwWSsi9Axj4e/cCiKx7PVzOq38tY4A==",
          "dependencies": {
            "@typescript-eslint/typescript-estree": "5.56.0",
            "@typescript-eslint/utils": "5.56.0",
            "debug": "^4.3.4",
            "tsutils": "^3.21.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependencies": {
            "eslint": "*"
          },
          "peerDependenciesMeta": {
            "typescript": {
              "optional": true
            }
          }
        },
        "node_modules/@typescript-eslint/types": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.56.0.tgz",
          "integrity": "sha512-JyAzbTJcIyhuUhogmiu+t79AkdnqgPUEsxMTMc/dCZczGMJQh1MK2wgrju++yMN6AWroVAy2jxyPcPr3SWCq5w==",
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          }
        },
        "node_modules/@typescript-eslint/typescript-estree": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.56.0.tgz",
          "integrity": "sha512-41CH/GncsLXOJi0jb74SnC7jVPWeVJ0pxQj8bOjH1h2O26jXN3YHKDT1ejkVz5YeTEQPeLCCRY0U2r68tfNOcg==",
          "dependencies": {
            "@typescript-eslint/types": "5.56.0",
            "@typescript-eslint/visitor-keys": "5.56.0",
            "debug": "^4.3.4",
            "globby": "^11.1.0",
            "is-glob": "^4.0.3",
            "semver": "^7.3.7",
            "tsutils": "^3.21.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependenciesMeta": {
            "typescript": {
              "optional": true
            }
          }
        },
        "node_modules/@typescript-eslint/utils": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.56.0.tgz",
          "integrity": "sha512-XhZDVdLnUJNtbzaJeDSCIYaM+Tgr59gZGbFuELgF7m0IY03PlciidS7UQNKLE0+WpUTn1GlycEr6Ivb/afjbhA==",
          "dependencies": {
            "@eslint-community/eslint-utils": "^4.2.0",
            "@types/json-schema": "^7.0.9",
            "@types/semver": "^7.3.12",
            "@typescript-eslint/scope-manager": "5.56.0",
            "@typescript-eslint/types": "5.56.0",
            "@typescript-eslint/typescript-estree": "5.56.0",
            "eslint-scope": "^5.1.1",
            "semver": "^7.3.7"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependencies": {
            "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
          }
        },
        "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": {
          "version": "5.1.1",
          "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
          "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
          "dependencies": {
            "esrecurse": "^4.3.0",
            "estraverse": "^4.1.1"
          },
          "engines": {
            "node": ">=8.0.0"
          }
        },
        "node_modules/@typescript-eslint/utils/node_modules/estraverse": {
          "version": "4.3.0",
          "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
          "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
          "engines": {
            "node": ">=4.0"
          }
        },
        "node_modules/@typescript-eslint/visitor-keys": {
          "version": "5.56.0",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.56.0.tgz",
          "integrity": "sha512-1mFdED7u5bZpX6Xxf5N9U2c18sb+8EvU3tyOIj6LQZ5OOvnmj8BVeNNP603OFPm5KkS1a7IvCIcwrdHXaEMG/Q==",
          "dependencies": {
            "@typescript-eslint/types": "5.56.0",
            "eslint-visitor-keys": "^3.3.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          }
        },
        "node_modules/@webassemblyjs/ast": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz",
          "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
          "dependencies": {
            "@webassemblyjs/helper-numbers": "1.11.1",
            "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
          }
        },
        "node_modules/@webassemblyjs/floating-point-hex-parser": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
          "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="
        },
        "node_modules/@webassemblyjs/helper-api-error": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
          "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="
        },
        "node_modules/@webassemblyjs/helper-buffer": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
          "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="
        },
        "node_modules/@webassemblyjs/helper-numbers": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
          "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
          "dependencies": {
            "@webassemblyjs/floating-point-hex-parser": "1.11.1",
            "@webassemblyjs/helper-api-error": "1.11.1",
            "@xtuc/long": "4.2.2"
          }
        },
        "node_modules/@webassemblyjs/helper-wasm-bytecode": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
          "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="
        },
        "node_modules/@webassemblyjs/helper-wasm-section": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
          "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
          "dependencies": {
            "@webassemblyjs/ast": "1.11.1",
            "@webassemblyjs/helper-buffer": "1.11.1",
            "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
            "@webassemblyjs/wasm-gen": "1.11.1"
          }
        },
        "node_modules/@webassemblyjs/ieee754": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
          "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
          "dependencies": {
            "@xtuc/ieee754": "^1.2.0"
          }
        },
        "node_modules/@webassemblyjs/leb128": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
          "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
          "dependencies": {
            "@xtuc/long": "4.2.2"
          }
        },
        "node_modules/@webassemblyjs/utf8": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
          "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="
        },
        "node_modules/@webassemblyjs/wasm-edit": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
          "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
          "dependencies": {
            "@webassemblyjs/ast": "1.11.1",
            "@webassemblyjs/helper-buffer": "1.11.1",
            "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
            "@webassemblyjs/helper-wasm-section": "1.11.1",
            "@webassemblyjs/wasm-gen": "1.11.1",
            "@webassemblyjs/wasm-opt": "1.11.1",
            "@webassemblyjs/wasm-parser": "1.11.1",
            "@webassemblyjs/wast-printer": "1.11.1"
          }
        },
        "node_modules/@webassemblyjs/wasm-gen": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
          "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
          "dependencies": {
            "@webassemblyjs/ast": "1.11.1",
            "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
            "@webassemblyjs/ieee754": "1.11.1",
            "@webassemblyjs/leb128": "1.11.1",
            "@webassemblyjs/utf8": "1.11.1"
          }
        },
        "node_modules/@webassemblyjs/wasm-opt": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
          "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
          "dependencies": {
            "@webassemblyjs/ast": "1.11.1",
            "@webassemblyjs/helper-buffer": "1.11.1",
            "@webassemblyjs/wasm-gen": "1.11.1",
            "@webassemblyjs/wasm-parser": "1.11.1"
          }
        },
        "node_modules/@webassemblyjs/wasm-parser": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
          "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
          "dependencies": {
            "@webassemblyjs/ast": "1.11.1",
            "@webassemblyjs/helper-api-error": "1.11.1",
            "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
            "@webassemblyjs/ieee754": "1.11.1",
            "@webassemblyjs/leb128": "1.11.1",
            "@webassemblyjs/utf8": "1.11.1"
          }
        },
        "node_modules/@webassemblyjs/wast-printer": {
          "version": "1.11.1",
          "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
          "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
          "dependencies": {
            "@webassemblyjs/ast": "1.11.1",
            "@xtuc/long": "4.2.2"
          }
        },
        "node_modules/@xtuc/ieee754": {
          "version": "1.2.0",
          "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
          "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="
        },
        "node_modules/@xtuc/long": {
          "version": "4.2.2",
          "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
          "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
        },
        "node_modules/abab": {
          "version": "2.0.6",
          "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
          "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="
        },
        "node_modules/accepts": {
          "version": "1.3.8",
          "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
          "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
          "dependencies": {
            "mime-types": "~2.1.34",
            "negotiator": "0.6.3"
          },
          "engines": {
            "node": ">= 0.6"
          }
        },
        "node_modules/acorn": {
          "version": "8.8.2",
          "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
          "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
          "bin": {
            "acorn": "bin/acorn"
          },
          "engines": {
            "node": ">=0.4.0"
          }
        },
        "node_modules/acorn-globals": {
          "version": "6.0.0",
          "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
          "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
          "dependencies": {
            "acorn": "^7.1.1",
            "acorn-walk": "^7.1.1"
          }
        },
        "node_modules/acorn-globals/node_modules/acorn": {
          "version": "7.4.1",
          "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
          "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
          "bin": {
            "acorn": "bin/acorn"
          },
          "engines": {
            "node": ">=0.4.0"
          }
        },
        "node_modules/acorn-import-assertions": {
          "version": "1.8.0",
          "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
          "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
          "peerDependencies": {
            "acorn": "^8"
          }
        },
        "node_modules/acorn-jsx": {
          "version": "5.3.2",
          "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
          "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
          "peerDependencies": {
            "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
          }
        },
        "node_modules/acorn-node": {
          "version": "1.8.2",
          "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz",
          "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==",
          "dependencies": {
            "acorn": "^7.0.0",
            "acorn-walk": "^7.0.0",
            "xtend": "^4.0.2"
          }
        },
        "node_modules/acorn-node/node_modules/acorn": {
          "version": "7.4.1",
          "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
          "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
          "bin": {
            "acorn": "bin/acorn"
          },
          "engines": {
            "node": ">=0.4.0"
          }
        },
        "node_modules/acorn-walk": {
          "version": "7.2.0",
          "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
          "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
          "engines": {
            "node": ">=0.4.0"
          }
        },
        "node_modules/address": {
          "version": "1.2.2",
          "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz",
          "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==",
          "engines": {
            "node": ">= 10.0.0"
          }
        },
        "node_modules/adjust-sourcemap-loader": {
          "version": "4.0.0",
          "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz",
          "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==",
          "dependencies": {
            "loader-utils": "^2.0.0",
            "regex-parser": "^2.2.11"
          },
          "engines": {
            "node": ">=8.9"
          }
        },
        "node_modules/agent-base": {
          "version": "6.0.2",
          "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
          "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
          "dependencies": {
            "debug": "4"
          },
          "engines": {
            "node": ">= 6.0.0"
          }
        },
        "node_modules/ajv": {
          "version": "6.12.6",
          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
          "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
          "dependencies": {
            "fast-deep-equal": "^3.1.1",
            "fast-json-stable-stringify": "^2.0.0",
            "json-schema-traverse": "^0.4.1",
            "uri-js": "^4.2.2"
          },
          "funding": {
            "type": "github",
            "url": "https://github.com/sponsors/epoberezkin"
          }
        },
        "node_modules/ajv-formats": {
          "version": "2.1.1",
          "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
          "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
          "dependencies": {
            "ajv": "^8.0.0"
          },
          "peerDependencies": {
            "ajv": "^8.0.0"
          },
          "peerDependenciesMeta": {
            "ajv": {
              "optional": true
            }
          }
        },
        "node_modules/ajv-formats/node_modules/ajv": {
          "version": "8.12.0",
          "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
          "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
          "dependencies": {
            "fast-deep-equal": "^3.1.1",
            "json-schema-traverse": "^1.0.0",
            "require-from-string": "^2.0.2",
            "uri-js": "^4.2.2"
          },
          "funding": {
            "type": "github",
            "url": "https://github.com/sponsors/epoberezkin"
          }
        },
        "node_modules/ajv-formats/node_modules/json-schema-traverse": {
          "version": "1.0.0",
          "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
          "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
        },
        "node_modules/ajv-keywords": {
          "version": "3.5.2",
          "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
          "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
          "peerDependencies": {
            "ajv": "^6.9.1"
          }
        },
        "node_modules/ansi-escapes": {
          "version": "4.3.2",
          "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
          "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
          "dependencies": {
            "type-fest": "^0.21.3"
          },
          "engines": {
            "node": ">=8"
          },
          "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
          }
        },
        "node_modules/ansi-html-community": {
          "version": "0.0.8",
          "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
          "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
          "engines": [
            "node >= 0.8.0"
          ],
          "bin": {
            "ansi-html": "bin/ansi-html"
          }
        },
        "node_modules/ansi-regex": {
          "version": "5.0.1",
          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
          "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/ansi-styles": {
          "version": "3.2.1",
          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
          "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
          "dependencies": {
            "color-convert": "^1.9.0"
          },
          "engines": {
            "node": ">=4"
          }
        },
        "node_modules/anymatch": {
          "version": "3.1.3",
          "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
          "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
          "dependencies": {
            "normalize-path": "^3.0.0",
            "picomatch": "^2.0.4"
          },
          "engines": {
            "node": ">= 8"
          }
        },
        "node_modules/arg": {
          "version": "5.0.2",
          "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
          "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
        },
        "node_modules/argparse": {
          "version": "1.0.10",
          "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
          "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
          "dependencies": {
            "sprintf-js": "~1.0.2"
          }
        },
        "node_modules/aria-query": {
          "version": "5.1.3",
          "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
          "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
          "dependencies": {
            "deep-equal": "^2.0.5"
          }
        },
        "node_modules/array-buffer-byte-length": {
          "version": "1.0.0",
          "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
          "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "is-array-buffer": "^3.0.1"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array-flatten": {
          "version": "2.1.2",
          "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
          "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
        },
        "node_modules/array-includes": {
          "version": "3.1.6",
          "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
          "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "get-intrinsic": "^1.1.3",
            "is-string": "^1.0.7"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array-union": {
          "version": "2.1.0",
          "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
          "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/array.prototype.flat": {
          "version": "1.3.1",
          "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
          "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "es-shim-unscopables": "^1.0.0"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array.prototype.flatmap": {
          "version": "1.3.1",
          "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
          "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "es-shim-unscopables": "^1.0.0"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array.prototype.reduce": {
          "version": "1.0.5",
          "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz",
          "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "es-array-method-boxes-properly": "^1.0.0",
            "is-string": "^1.0.7"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array.prototype.tosorted": {
          "version": "1.1.1",
          "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
          "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "es-shim-unscopables": "^1.0.0",
            "get-intrinsic": "^1.1.3"
          }
        },
        "node_modules/asap": {
          "version": "2.0.6",
          "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
          "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
        },
        "node_modules/ast-types-flow": {
          "version": "0.0.7",
          "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
          "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
        },
        "node_modules/async": {
          "version": "3.2.4",
          "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
          "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ=="
        },
        "node_modules/asynckit": {
          "version": "0.4.0",
          "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
          "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
        },
        "node_modules/at-least-node": {
          "version": "1.0.0",
          "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
          "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
          "engines": {
            "node": ">= 4.0.0"
          }
        },
        "node_modules/autoprefixer": {
          "version": "10.4.14",
          "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz",
          "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
          "funding": [
            {
              "type": "opencollective",
              "url": "https://opencollective.com/postcss/"
            },
            {
              "type": "tidelift",
              "url": "https://tidelift.com/funding/github/npm/autoprefixer"
            }
          ],
          "dependencies": {
            "browserslist": "^4.21.5",
            "caniuse-lite": "^1.0.30001464",
            "fraction.js": "^4.2.0",
            "normalize-range": "^0.1.2",
            "picocolors": "^1.0.0",
            "postcss-value-parser": "^4.2.0"
          },
          "bin": {
            "autoprefixer": "bin/autoprefixer"
          },
          "engines": {
            "node": "^10 || ^12 || >=14"
          },
          "peerDependencies": {
            "postcss": "^8.1.0"
          }
        },
        "node_modules/available-typed-arrays": {
          "version": "1.0.5",
          "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
          "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
    
        "node_modules/aws-sdk": {
          "version": "2.1359.0",
          "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1359.0.tgz",
          "integrity": "sha512-uGNIU4czx8P0YITV8uhuLFhmyYvLWsFYINlHJX77/fea4VuTwcCGktYy2OEnrErp3FK9NHQvwXBxZCbY0lcxBg==",
          "dependencies": {
            "buffer": "4.9.2",
            "events": "1.1.1",
            "ieee754": "1.1.13",
            "jmespath": "0.16.0",
            "querystring": "0.2.0",
            "sax": "1.2.1",
            "url": "0.10.3",
            "util": "^0.12.4",
            "uuid": "8.0.0",
            "xml2js": "0.5.0"
          },
          "engines": {
            "node": ">= 10.0.0"
          }
        },
        "node_modules/aws-sdk/node_modules/events": {
          "version": "1.1.1",
          "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
          "integrity": "sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==",
          "engines": {
            "node": ">=0.4.x"
          }
        },
        "node_modules/aws-sdk/node_modules/sax": {
          "version": "1.2.1",
          "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz",
          "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA=="
        },
        "node_modules/aws-sdk/node_modules/uuid": {
          "version": "8.0.0",
          "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz",
          "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==",
          "bin": {
            "uuid": "dist/bin/uuid"
          }
        },
    
    Jacopo Gasparetto's avatar
    Jacopo Gasparetto committed
        "node_modules/axe-core": {
          "version": "4.6.3",
          "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz",
          "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==",
          "engines": {
            "node": ">=4"
          }
        },
        "node_modules/axobject-query": {
          "version": "3.1.1",
          "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
          "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
          "dependencies": {
            "deep-equal": "^2.0.5"
          }
        },
        "node_modules/babel-jest": {
          "version": "27.5.1",
          "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz",
          "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==",
          "dependencies": {
            "@jest/transform": "^27.5.1",
            "@jest/types": "^27.5.1",
            "@types/babel__core": "^7.1.14",
            "babel-plugin-istanbul": "^6.1.1",
            "babel-preset-jest": "^27.5.1",
            "chalk": "^4.0.0",
            "graceful-fs": "^4.2.9",
            "slash": "^3.0.0"
          },
          "engines": {
            "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
          },
          "peerDependencies": {
            "@babel/core": "^7.8.0"
          }
        },
        "node_modules/babel-jest/node_modules/ansi-styles": {
          "version": "4.3.0",
          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
          "dependencies": {
            "color-convert": "^2.0.1"
          },
          "engines": {
            "node": ">=8"
          },
          "funding": {
            "url": "https://github.com/chalk/ansi-styles?sponsor=1"
          }
        },
        "node_modules/babel-jest/node_modules/chalk": {
          "version": "4.1.2",
          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
          "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
          "dependencies": {
            "ansi-styles": "^4.1.0",
            "supports-color": "^7.1.0"
          },
          "engines": {
            "node": ">=10"
          },
          "funding": {
            "url": "https://github.com/chalk/chalk?sponsor=1"
          }
        },
        "node_modules/babel-jest/node_modules/color-convert": {
          "version": "2.0.1",
          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
          "dependencies": {
            "color-name": "~1.1.4"
          },
          "engines": {
            "node": ">=7.0.0"
          }
        },
        "node_modules/babel-jest/node_modules/color-name": {
          "version": "1.1.4",
          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
        },
        "node_modules/babel-jest/node_modules/has-flag": {
          "version": "4.0.0",
          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
          "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/babel-jest/node_modules/supports-color": {
          "version": "7.2.0",
          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
          "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",