├── .gitignore ├── .npmignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── bin └── pipes_patterns_cdk.ts ├── cdk.json ├── images ├── Picture1.png ├── Picture1_d.png ├── Picture2.png ├── Picture2_d.png ├── Picture3.png ├── Picture3_d.png ├── Picture4.png ├── Picture4_d.png ├── Picture5.png ├── Picture5_d.png ├── Picture6.png ├── Picture6_d.png ├── Picture7.png ├── Picture7_d.png ├── Picture8.png └── Picture8_d.png ├── jest.config.js ├── lib ├── claim-check-stack.ts ├── content-filter-stack.ts ├── lambda │ ├── claimCheckRetrieval.js │ ├── claimCheckSampleDataCreator.js │ ├── claimCheckSplit.js │ ├── contentFilterSampleDataCreator.js │ ├── messageTranslatorEnrichmentLambda.js │ ├── messageTranslatorSampleDataCreator.js │ └── normalizerSampleDataCreator.js ├── message-translator-stack.ts └── normalizer-stack.ts ├── package-lock.json ├── package.json ├── test └── pipes_patterns_cdk.test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | !jest.config.js 3 | *.d.ts 4 | node_modules 5 | 6 | # CDK asset staging directory 7 | .cdk.staging 8 | cdk.out 9 | 10 | # 11 | !*/lambda/*.js 12 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.ts 2 | !*.d.ts 3 | 4 | # CDK asset staging directory 5 | .cdk.staging 6 | cdk.out 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guidelines 2 | 3 | Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional 4 | documentation, we greatly value feedback and contributions from our community. 5 | 6 | Please read through this document before submitting any issues or pull requests to ensure we have all the necessary 7 | information to effectively respond to your bug report or contribution. 8 | 9 | 10 | ## Reporting Bugs/Feature Requests 11 | 12 | We welcome you to use the GitHub issue tracker to report bugs or suggest features. 13 | 14 | When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already 15 | reported the issue. Please try to include as much information as you can. Details like these are incredibly useful: 16 | 17 | * A reproducible test case or series of steps 18 | * The version of our code being used 19 | * Any modifications you've made relevant to the bug 20 | * Anything unusual about your environment or deployment 21 | 22 | 23 | ## Contributing via Pull Requests 24 | Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that: 25 | 26 | 1. You are working against the latest source on the *main* branch. 27 | 2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already. 28 | 3. You open an issue to discuss any significant work - we would hate for your time to be wasted. 29 | 30 | To send us a pull request, please: 31 | 32 | 1. Fork the repository. 33 | 2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change. 34 | 3. Ensure local tests pass. 35 | 4. Commit to your fork using clear commit messages. 36 | 5. Send us a pull request, answering any default questions in the pull request interface. 37 | 6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation. 38 | 39 | GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and 40 | [creating a pull request](https://help.github.com/articles/creating-a-pull-request/). 41 | 42 | 43 | ## Finding contributions to work on 44 | Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start. 45 | 46 | 47 | ## Code of Conduct 48 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 49 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 50 | opensource-codeofconduct@amazon.com with any additional questions or comments. 51 | 52 | 53 | ## Security issue notifications 54 | If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue. 55 | 56 | 57 | ## Licensing 58 | 59 | See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. 60 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 7 | the Software, and to permit persons to whom the Software is furnished to do so. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 10 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 11 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 12 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 13 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 14 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 15 | 16 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Implementing architectural patterns with Amazon EventBridge Pipes 2 | ## Overview 3 | This repositiory implements 4 common enterprise integration patterns using Amazon EventBridge Pipes: 4 | - Content Filter pattern, 5 | - Message Translator pattern, 6 | - Normalizer pattern and 7 | - Claim Check pattern 8 | 9 | When building software, we often incorporate architectural patterns. These patterns are 10 | technology-agnostic blueprints which solve recurring challenges in software design. 11 | Typically, they have been applied and vetted many times before being labeled a pattern. 12 | Specifically, when building solutions that consist of multiple distributed components, 13 | we may rely on enterprise integration patterns. Enterprise integration patterns help us 14 | design and build distributed applications or integrate additional components or third- 15 | party services into existing applications. 16 | This post demonstrates how we can implement four commonly used enterprise 17 | integration patterns using Amazon EventBridge Pipes, helping you simplify your 18 | architecture. Amazon EventBridge Pipes is a feature of Amazon EventBridge that helps 19 | you connect your AWS resources with each other. Using Amazon EventBridge Pipes can 20 | reduce the complexity of your integrations and reduces the amount of code you will 21 | need to write and maintain. 22 | 23 | ## Patterns 24 | Each pattern is contained in its own stack. That means, you can deploy all of them individually to see how they work. 25 | You will find the ARNs (Amazon Resource Name) of relevant resources in each stack's AWS CloudFormation output, so that you can locate them easily. 26 | 27 | ### Content Filter pattern 28 | The content filter pattern removes unwanted content from a message before forwarding it to a downstream system. 29 | 30 | #### Goal 31 | 32 | 33 | 34 | Shows that events of type USER_CREATED are deleted, and events of type ORDER are modified to not contain the attributes user_name and birthday anymore. 35 | 36 | 37 | #### Architecture Diagram 38 | 39 | 40 | 41 | Architecture diagram which connects two Kinesis streams using a pipe with filter and input transformer. 42 | 43 | 44 | #### Try it out! 45 | Step-by-step instructions to understand the implementation for the pattern: 46 | 1. Deploy the ContentFilterStack 47 | 2. Trigger the ContentFilterTestLambda-function to generate two sample events on the sourceStream. 48 | 3. Look at the SourceStream: you will find two records per ContentFilterTestLambda-execution, including PII-data. 49 | 4. Look at the TargetStream, you will find that only the ORDER event has been forwarded, and it does not contain personal data anymore. 50 | 51 | ### Message Translator pattern 52 | In an event-driven architecture, event senders and receivers are independent from each other, and for that reason, the events they exchange may have different formats. To allow communication between different components, a translation of these events is needed, known as the Message Translator pattern. For example, an event contains an address, but the consumer expects coordinates. 53 | 54 | #### Goal 55 | 56 | 57 | 58 | Shows an original event with an address attribute saying 1600, Pennsylvania Avenue NW, Washington, DC 20500, USA and a modified event with coordinates of this location. 59 | 60 | 61 | #### Architecture Diagram 62 | 63 | 64 | 65 | Architecture diagram which connects an SQS with AWS Step Functions using a pipe with an API destination enrichment. 66 | 67 | 68 | #### Try it out! 69 | Because the MessageTranslatorStack would requires an existing external endpoint, for demonstration purposes this pattern is implemented using a lambda function which mocks the result. This way, any user can test it without the need for an geolocation API. 70 | 1. Trigger the MessageTranslatorSampleDataCreatorLambda-function to generate an example event with an address. 71 | 2. Take a look at the MessageTranslatorTargetStepFunctionsWorkflow to see the result. 72 | 73 | ### Normalizer pattern 74 | The idea behind the normalizer is similar to what we have seen in the message translator, but now we have various source components, which all have different formats for events. The normalizer pattern then routes each event type through its specific message translator, so that our downstream systems process messages with a unified structure. 75 | 76 | #### Goal 77 | 78 | 79 | 80 | Shows three original event with varying formats for the name attribute, and a resulting event with a unified structure for the name. 81 | 82 | 83 | #### Architecture Diagram 84 | 85 | 86 | 87 | Architecture diagram which connects an SQS with EventBridge, using a pipe that does enrichment via Step Functions. The Step Functions workflow first checks the type of an event and based on the result branches into state unifyA, unifyB or unifyC. 88 | 89 | 90 | #### Try it out! 91 | Step-by-step instructions to understand the implementation for the pattern: 92 | 1. Deploy the NormalizerStack 93 | 2. Trigger the NormalizerSampleDataCreatorLambda to create three sample events with different structure. 94 | 3. Check the Amazon CloudWatch Log group '/aws/events/normalizerTargetLog' to see the unified events. 95 | 96 | ### Claim Check pattern 97 | When passing around messages in an event-driven application, we often do not want our messages to contain all details. For example, an event containing a “userID” may not need additional information about this particular user, because relevant information can always be retrieved using this userID. This approach is referred to as claim-check pattern: we split the message into a reference (“claim check”) and the related payload. We can then store the payload in an external storage and only need to pass references in our systems. For example, we may need to retrieve information about a user by referencing the userID. 98 | 99 | #### Goal 100 | 101 | 102 | 103 | Shows an original event which only contains a userID and a resulting event with additional attributes. 104 | 105 | 106 | #### Architecture Diagram 107 | 108 | 109 | 110 | Architecture diagram which connects an arbitrary source and target with a pipe that does enrichment, either using API Gateway, EventBridge, Step Functions or Lambda. 111 | 112 | 113 | #### Try it out! 114 | Step-by-step instructions to understand the implementation for the pattern: 115 | 1. Deploy the ClaimCheckStack 116 | 2. Check the "ClaimCheckTable" in Amazon DynamoDB 117 | 2. Trigger the ClaimCheckSampleDataCreatorLambda to generate a sample event. 118 | 3. Check the "ClaimCheckTable" again to see the event has been persistet in the database 119 | 4. Check the Amazon CloudWatch Log group '/aws/events/claimTargetLog' to see that only the claim check is passed to EventBridge 120 | 5. Check the ClaimCheckTargetWorkflow execution to see the enriched object in the target workflow. 121 | 122 | **Note**: *“The sample code; software libraries; command line tools; proofs of concept; templates; or other related technology (including any of the foregoing that are provided by our personnel) is provided to you as AWS Content under the AWS Customer Agreement, or the relevant written agreement between you and AWS (whichever applies). You should not use this AWS Content in your production accounts, or on production or other critical data. You are responsible for testing, securing, and optimizing the AWS Content, such as sample code, as appropriate for production grade use based on your specific quality control practices and standards. Deploying AWS Content may incur AWS charges for creating or using AWS chargeable resources, such as running Amazon EC2 instances or using Amazon S3 storage.”* 123 | 124 | ## License 125 | 126 | This library is licensed under the MIT-0 License. See the LICENSE file. -------------------------------------------------------------------------------- /bin/pipes_patterns_cdk.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import 'source-map-support/register'; 3 | import * as cdk from 'aws-cdk-lib'; 4 | import { NormalizerStack } from '../lib/normalizer-stack'; 5 | import { ContentFilterStack } from '../lib/content-filter-stack'; 6 | import { MessageTranslatorStack } from '../lib/message-translator-stack'; 7 | import { ClaimCheckStack } from '../lib/claim-check-stack'; 8 | import { AwsSolutionsChecks, NagSuppressions } from 'cdk-nag' 9 | import { Aspects } from 'aws-cdk-lib'; 10 | 11 | const app = new cdk.App(); 12 | 13 | const allStacks = [ 14 | new ContentFilterStack(app, 'ContentFilterStack'), 15 | new MessageTranslatorStack(app, 'MessageTranslatorStack'), 16 | new NormalizerStack(app, 'NormalizerStack'), 17 | new ClaimCheckStack(app, 'ClaimCheckStack'), 18 | ]; 19 | 20 | // Add the cdk-nag AwsSolutions Pack with extra verbose logging enabled. 21 | Aspects.of(app).add(new AwsSolutionsChecks({ verbose: true })); 22 | 23 | // Add the cdk-nag NagSuppressions to suppress the Nag warnings. 24 | allStacks.forEach(stack => { 25 | NagSuppressions.addStackSuppressions(stack, [ 26 | { id: 'AwsSolutions-IAM4', reason: 'Using AWS managed IAM policies to keep example simple, even though it does not restrict the permission to the resource scope.' }, 27 | { id: 'AwsSolutions-IAM5', reason: 'Using default execution roles to keep example simple.' }, 28 | ]) 29 | }); 30 | 31 | // For more information on using the CfnPipe resource, see https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_pipes.CfnPipe.html -------------------------------------------------------------------------------- /cdk.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": "npx ts-node --prefer-ts-exts bin/pipes_patterns_cdk.ts", 3 | "watch": { 4 | "include": [ 5 | "**" 6 | ], 7 | "exclude": [ 8 | "README.md", 9 | "cdk*.json", 10 | "**/*.d.ts", 11 | "tsconfig.json", 12 | "package*.json", 13 | "yarn.lock", 14 | "node_modules", 15 | "test" 16 | ] 17 | }, 18 | "context": { 19 | "@aws-cdk/aws-lambda:recognizeLayerVersion": true, 20 | "@aws-cdk/core:checkSecretUsage": true, 21 | "@aws-cdk/core:target-partitions": [ 22 | "aws", 23 | "aws-cn" 24 | ], 25 | "@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true, 26 | "@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true, 27 | "@aws-cdk/aws-ecs:arnFormatIncludesClusterName": true, 28 | "@aws-cdk/aws-iam:minimizePolicies": true, 29 | "@aws-cdk/core:validateSnapshotRemovalPolicy": true, 30 | "@aws-cdk/aws-codepipeline:crossAccountKeyAliasStackSafeResourceName": true, 31 | "@aws-cdk/aws-s3:createDefaultLoggingPolicy": true, 32 | "@aws-cdk/aws-sns-subscriptions:restrictSqsDescryption": true, 33 | "@aws-cdk/aws-apigateway:disableCloudWatchRole": true, 34 | "@aws-cdk/core:enablePartitionLiterals": true, 35 | "@aws-cdk/aws-events:eventsTargetQueueSameAccount": true, 36 | "@aws-cdk/aws-iam:standardizedServicePrincipals": true, 37 | "@aws-cdk/aws-ecs:disableExplicitDeploymentControllerForCircuitBreaker": true, 38 | "@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /images/Picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture1.png -------------------------------------------------------------------------------- /images/Picture1_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture1_d.png -------------------------------------------------------------------------------- /images/Picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture2.png -------------------------------------------------------------------------------- /images/Picture2_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture2_d.png -------------------------------------------------------------------------------- /images/Picture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture3.png -------------------------------------------------------------------------------- /images/Picture3_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture3_d.png -------------------------------------------------------------------------------- /images/Picture4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture4.png -------------------------------------------------------------------------------- /images/Picture4_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture4_d.png -------------------------------------------------------------------------------- /images/Picture5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture5.png -------------------------------------------------------------------------------- /images/Picture5_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture5_d.png -------------------------------------------------------------------------------- /images/Picture6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture6.png -------------------------------------------------------------------------------- /images/Picture6_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture6_d.png -------------------------------------------------------------------------------- /images/Picture7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture7.png -------------------------------------------------------------------------------- /images/Picture7_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture7_d.png -------------------------------------------------------------------------------- /images/Picture8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture8.png -------------------------------------------------------------------------------- /images/Picture8_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-eventbridge-pipes-architectural-patterns/13516f9196528fd28f2ac0be43174470d80582cd/images/Picture8_d.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testEnvironment: 'node', 3 | roots: ['/test'], 4 | testMatch: ['**/*.test.ts'], 5 | transform: { 6 | '^.+\\.tsx?$': 'ts-jest' 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /lib/claim-check-stack.ts: -------------------------------------------------------------------------------- 1 | import * as cdk from 'aws-cdk-lib'; 2 | import { Construct } from 'constructs'; 3 | import * as sqs from 'aws-cdk-lib/aws-sqs'; 4 | import * as sfn from 'aws-cdk-lib/aws-stepfunctions'; 5 | import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; 6 | import * as lambda from 'aws-cdk-lib/aws-lambda'; 7 | import * as iam from 'aws-cdk-lib/aws-iam'; 8 | import * as pipes from 'aws-cdk-lib/aws-pipes'; 9 | import { NagSuppressions } from 'cdk-nag'; 10 | import * as logs from 'aws-cdk-lib/aws-logs'; 11 | import * as events from 'aws-cdk-lib/aws-events'; 12 | import * as targets from 'aws-cdk-lib/aws-events-targets'; 13 | 14 | export class ClaimCheckStack extends cdk.Stack { 15 | constructor(scope: Construct, id: string, props?: cdk.StackProps) { 16 | super(scope, id, props); 17 | 18 | // Prerequisites that are not specific to this pattern 19 | const lambdaRuntime = lambda.Runtime.NODEJS_18_X; 20 | const deadLetterQueue1 = new sqs.Queue(this, 'ClaimCheckDeadLetterQueue1', { 21 | enforceSSL: true, 22 | }); 23 | const deadLetterQueue2 = new sqs.Queue(this, 'ClaimCheckDeadLetterQueue2', { 24 | enforceSSL: true, 25 | }); 26 | 27 | // Step 1: Create sample data of a "large" payload and put it in an SQS queue 28 | // Implementation: an AWS Lambda function ("claimCheckSampleDataCreatorLambda") creates this sample data and puts it in the SQS queue ("sampleDataWriteQueue") 29 | const sampleDataWriteQueue = new sqs.Queue(this, 'SampleDataWriteQueue', { 30 | enforceSSL: true, 31 | deadLetterQueue: { 32 | maxReceiveCount: 1, 33 | queue: deadLetterQueue1, 34 | } 35 | }); 36 | 37 | const claimCheckSampleDataCreatorLambda = new lambda.Function(this, 'ClaimCheckSampleDataCreatorLambda', { 38 | runtime: lambdaRuntime, 39 | code: lambda.Code.fromAsset('lib/lambda'), 40 | handler: 'claimCheckSampleDataCreator.handler', 41 | environment: { 42 | QUEUE_URL: sampleDataWriteQueue.queueUrl, 43 | } 44 | }); 45 | sampleDataWriteQueue.grantSendMessages(claimCheckSampleDataCreatorLambda); 46 | 47 | // Step 2: We want to put this event on our application bus. However, we don't want to put the entire payload on the bus, only the claim check. 48 | // Implementation: we use an EventBridge Pipe to split the payload. 49 | // Internally, this Pipe uses an AWS Lambda function ("claimCheckSplitLambda") as enrichment, putting the payload into DynamoDB. 50 | 51 | const claimCheckApplicationBus = new events.EventBus(this, 'ClaimCheckApplicationBus', { 52 | eventBusName: 'ClaimCheckApplicationBus' 53 | }); 54 | 55 | const claimCheckTable = new dynamodb.Table(this, 'ClaimCheckTable', { 56 | partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, 57 | pointInTimeRecovery: true, 58 | removalPolicy: cdk.RemovalPolicy.DESTROY 59 | }); 60 | 61 | const claimCheckSplitLambda = new lambda.Function(this, 'ClaimCheckSplitLambda', { 62 | runtime: lambdaRuntime, 63 | code: lambda.Code.fromAsset('lib/lambda'), 64 | handler: 'claimCheckSplit.handler', 65 | environment: { 66 | CLAIM_CHECK_TABLE: claimCheckTable.tableName, 67 | } 68 | }); 69 | claimCheckTable.grantWriteData(claimCheckSplitLambda); 70 | 71 | const splitPipeRole = new iam.Role(this, 'ClaimCheckSplitRole', { 72 | assumedBy: new iam.ServicePrincipal('pipes.amazonaws.com'), 73 | }); 74 | sampleDataWriteQueue.grantConsumeMessages(splitPipeRole); 75 | claimCheckApplicationBus.grantPutEventsTo(splitPipeRole); 76 | claimCheckSplitLambda.grantInvoke(splitPipeRole); 77 | 78 | const claimCheckSplitPipe = new pipes.CfnPipe(this, 'ClaimCheckSplitPipe', { 79 | roleArn: splitPipeRole.roleArn, 80 | source: sampleDataWriteQueue.queueArn, 81 | target: claimCheckApplicationBus.eventBusArn, 82 | enrichment: claimCheckSplitLambda.functionArn, 83 | sourceParameters: { 84 | sqsQueueParameters: { 85 | batchSize: 1, 86 | }, 87 | }, 88 | }); 89 | 90 | // Step 3: We want to process the event from our application bus using AWS Step Functions. 91 | // However, we don't have all information we need in the event. We use an EventBridge Pipe to retrieve the additional information. 92 | // Internally, this Pipe uses an AWS Lambda function ("ClaimCheckRetrievalLambda") as enrichment, retrieving the payload from DynamoDB. 93 | 94 | const sampleProcessorInputQueue = new sqs.Queue(this, 'SampleProcessorInputQueue', { 95 | enforceSSL: true, 96 | deadLetterQueue: { 97 | maxReceiveCount: 1, 98 | queue: deadLetterQueue2, 99 | } 100 | }); 101 | 102 | const sampleProcessorInputQueueRule = new events.Rule(this, 'SampleProcessorInputQueueRule', { 103 | eventBus: claimCheckApplicationBus, 104 | eventPattern: { 105 | source: events.Match.prefix(''), 106 | }, 107 | targets: [new targets.SqsQueue(sampleProcessorInputQueue)], 108 | }); 109 | 110 | const claimCheckRetrievalLambda = new lambda.Function(this, 'ClaimCheckRetrievalLambda', { 111 | runtime: lambdaRuntime, 112 | code: lambda.Code.fromAsset('lib/lambda'), 113 | handler: 'claimCheckRetrieval.handler', 114 | environment: { 115 | CLAIM_CHECK_TABLE: claimCheckTable.tableName 116 | } 117 | }); 118 | claimCheckTable.grantReadData(claimCheckRetrievalLambda); 119 | 120 | const targetWorkflow = new sfn.StateMachine(this, 'ClaimCheckTargetWorkflow', { 121 | definition: sfn.Chain.start(new sfn.Pass(this, 'Process Message')), 122 | tracingEnabled: true, 123 | logs: { 124 | destination: new logs.LogGroup(this, 'ClaimCheckTargetWorkflowLogGroup', { 125 | logGroupName: '/aws/vendedlogs/states/ClaimCheckTargetWorkflowLogGroup', 126 | removalPolicy: cdk.RemovalPolicy.DESTROY, 127 | }), 128 | level: sfn.LogLevel.ALL, 129 | }, 130 | }); 131 | 132 | const retrievalPipeRole = new iam.Role(this, 'ClaimCheckRetrievalRole', { 133 | assumedBy: new iam.ServicePrincipal('pipes.amazonaws.com'), 134 | }); 135 | sampleProcessorInputQueue.grantConsumeMessages(retrievalPipeRole); 136 | targetWorkflow.grantStartExecution(retrievalPipeRole); 137 | claimCheckRetrievalLambda.grantInvoke(retrievalPipeRole); 138 | 139 | const claimCheckEnrichmentPipe = new pipes.CfnPipe(this, 'ClaimCheckEnrichmentPipe', { 140 | roleArn: retrievalPipeRole.roleArn, 141 | source: sampleProcessorInputQueue.queueArn, 142 | target: targetWorkflow.stateMachineArn, 143 | enrichment: claimCheckRetrievalLambda.functionArn, 144 | sourceParameters: { 145 | sqsQueueParameters: { 146 | batchSize: 1, 147 | }, 148 | }, 149 | targetParameters: { 150 | stepFunctionStateMachineParameters: { 151 | invocationType: 'FIRE_AND_FORGET', 152 | }, 153 | } 154 | }); 155 | 156 | // Send all events on claimCheckApplicationBusRule to CloudWatch Logs to demonstrate only id's are passed on bus 157 | const claimCheckApplicationBusRule = new events.Rule(this, 'ClaimCheckApplicationBusRule', { 158 | ruleName: 'claimCheckApplicationBusRule', 159 | eventBus: claimCheckApplicationBus, 160 | eventPattern: { 161 | source: events.Match.prefix(''), 162 | }, 163 | targets: [new targets.CloudWatchLogGroup(new logs.LogGroup(this, 'ClaimTargetLog', { 164 | logGroupName: '/aws/events/claimTargetLog', 165 | removalPolicy: cdk.RemovalPolicy.DESTROY, 166 | }))], 167 | }); 168 | 169 | // Suppress Nag messages for the dead-letter queues & implicitly created resources 170 | [deadLetterQueue1, deadLetterQueue2].forEach(dlq => { 171 | NagSuppressions.addResourceSuppressions(dlq, [ 172 | { 173 | id: 'AwsSolutions-SQS3', 174 | reason: 'Resource is a dead-letter queue.' 175 | }, 176 | ]) 177 | }); 178 | NagSuppressions.addResourceSuppressionsByPath( 179 | this, 180 | '/ClaimCheckStack/AWS679f53fac002430cb0da5b7982bd2287/Resource', 181 | [{ id: 'AwsSolutions-L1', reason: 'Resource is implicitly created.' }] 182 | ); 183 | 184 | // Relevant outputs so that the user can trigger this pattern and watch it in action. 185 | new cdk.CfnOutput(this, "ClaimCheckSampleDataCreatorLambdaArn", { 186 | value: claimCheckSampleDataCreatorLambda.functionArn, 187 | exportName: "ClaimCheckSampleDataCreatorLambdaArn", 188 | }); 189 | new cdk.CfnOutput(this, "ClaimCheckTableName", { 190 | value: claimCheckTable.tableName, 191 | exportName: "ClaimCheckTableName", 192 | }); 193 | new cdk.CfnOutput(this, "ClaimCheckTargetWorkflowArn", { 194 | value: targetWorkflow.stateMachineArn, 195 | exportName: "ClaimCheckTargetWorkflowArn", 196 | }); 197 | } 198 | } 199 | -------------------------------------------------------------------------------- /lib/content-filter-stack.ts: -------------------------------------------------------------------------------- 1 | import * as cdk from 'aws-cdk-lib'; 2 | import { Construct } from 'constructs'; 3 | import * as kinesis from 'aws-cdk-lib/aws-kinesis'; 4 | import * as lambda from 'aws-cdk-lib/aws-lambda'; 5 | import * as pipes from 'aws-cdk-lib/aws-pipes'; 6 | import * as iam from 'aws-cdk-lib/aws-iam'; 7 | 8 | export class ContentFilterStack extends cdk.Stack { 9 | constructor(scope: Construct, id: string, props?: cdk.StackProps) { 10 | super(scope, id, props); 11 | 12 | const sourceStream = new kinesis.Stream(this, 'FilterSourceStream', { 13 | encryption: kinesis.StreamEncryption.MANAGED, 14 | }); 15 | const targetStream = new kinesis.Stream(this, 'FilterTargetStream', { 16 | encryption: kinesis.StreamEncryption.MANAGED, 17 | }); 18 | 19 | // create IAM role with permission to read from sourceStream and write to targetStream 20 | const pipeRole = new iam.Role(this, 'FilterPipeRole', { 21 | assumedBy: new iam.ServicePrincipal('pipes.amazonaws.com'), 22 | }); 23 | sourceStream.grantRead(pipeRole); 24 | targetStream.grantWrite(pipeRole); 25 | 26 | // create an Amazon EventBridge Pipe which connects sourceStream to targetStream and 27 | // - filters to only forward events with event_type = ORDER 28 | // - transforms the event to only include event_type, currency, and sum 29 | const filterPipe = new pipes.CfnPipe(this, 'FilterPipe', { 30 | roleArn: pipeRole.roleArn, 31 | source: sourceStream.streamArn, 32 | target: targetStream.streamArn, 33 | sourceParameters: { 34 | filterCriteria: { 35 | filters: [{ 36 | pattern: '{"data" : {"event_type" : ["ORDER"] }}', 37 | }], 38 | }, 39 | kinesisStreamParameters: { 40 | startingPosition: "LATEST", 41 | }, 42 | }, 43 | targetParameters: { 44 | inputTemplate: '{"event_type": <$.data.event_type>, "currency": <$.data.currency>, "sum": <$.data.sum>}', 45 | kinesisStreamParameters: { 46 | partitionKey: 'event_type', 47 | }, 48 | }, 49 | }); 50 | 51 | // AWS Lambda function that writes to the SourceStream to easily test the pipe 52 | const sourceLambda = new lambda.Function(this, 'ContentFilterTestLambda', { 53 | runtime: lambda.Runtime.NODEJS_18_X, 54 | code: lambda.Code.fromAsset('lib/lambda'), 55 | handler: 'contentFilterSampleDataCreator.handler', 56 | environment: { 57 | SOURCE_STREAM: sourceStream.streamName 58 | } 59 | }); 60 | sourceStream.grantWrite(sourceLambda); 61 | 62 | // Relevant outputs so that the user can trigger this pattern and watch it in action. 63 | new cdk.CfnOutput(this, "ContentFilterTestLambdaArn", { 64 | value: sourceLambda.functionArn, 65 | exportName: "ContentFilterTestLambdaArn", 66 | description: "The ARN of the Lambda function that can be used to test the Content Filter Pipe. Invoke this function to see the pipe in action.", 67 | }); 68 | new cdk.CfnOutput(this, "SourceStreamArn", { 69 | value: sourceStream.streamArn, 70 | exportName: "sourceStreamArn", 71 | description: "The ARN of the source stream for the Content Filter Pipe. On this stream, you will find two records per ContentFilterTestLambda-execution, including PII-data.", 72 | }); 73 | new cdk.CfnOutput(this, "TargetStreamArn", { 74 | value: targetStream.streamArn, 75 | exportName: "targetStreamArn", 76 | description: "The ARN of the target stream for the Content Filter Pipe. On this stream, you will find only one record per ContentFilterTestLambda-execution, and no PII-data.", 77 | }); 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /lib/lambda/claimCheckRetrieval.js: -------------------------------------------------------------------------------- 1 | const { DynamoDBClient } = require('@aws-sdk/client-dynamodb'); 2 | const { DynamoDBDocumentClient, GetCommand } = require("@aws-sdk/lib-dynamodb") 3 | const client = new DynamoDBClient({}); 4 | const ddbDocClient = DynamoDBDocumentClient.from(client); 5 | const tableName = process.env.CLAIM_CHECK_TABLE; 6 | 7 | async function retrieveElementWith(id) { 8 | console.log('retrieveElementWith(id)', id); 9 | 10 | const params = { 11 | TableName: tableName, 12 | Key: { 13 | 'id': id 14 | } 15 | }; 16 | 17 | return await ddbDocClient.send(new GetCommand(params)); 18 | } 19 | 20 | exports.handler = async function (event, context) { 21 | console.log('Received event:', JSON.stringify(event, null, 2)); 22 | 23 | var recordIds = event 24 | .map(element => element.body) 25 | .map(JSON.parse) 26 | .flatMap(event => event.detail.ids); 27 | 28 | console.log("recordIds:", recordIds); 29 | 30 | var result = await Promise.all(recordIds.map(retrieveElementWith)) 31 | 32 | console.log("Success :", result.map(JSON.stringify)); 33 | return result; 34 | } -------------------------------------------------------------------------------- /lib/lambda/claimCheckSampleDataCreator.js: -------------------------------------------------------------------------------- 1 | 2 | const { SQSClient, SendMessageCommand } = require('@aws-sdk/client-sqs'); 3 | const queueUrl = process.env.QUEUE_URL; 4 | 5 | exports.handler = async (event) => { 6 | 7 | const client = new SQSClient(); 8 | 9 | const messageWithManyDetails = { 10 | "id": "1234567890", 11 | "source": "systemA", 12 | "customer": { 13 | "first_name": "John", 14 | "middle_names": "Michael Frankie", 15 | "last_name": "Doe", 16 | }, 17 | "data": { 18 | "someDummyData1": "someDummyData1", 19 | "someDummyData2": "someDummyData2", 20 | "someDummyData3": "someDummyData3" 21 | } 22 | }; 23 | 24 | const messageParams = { 25 | QueueUrl: queueUrl, 26 | MessageBody: JSON.stringify(messageWithManyDetails) 27 | }; 28 | 29 | const command = new SendMessageCommand(messageParams); 30 | const response = await client.send(command); 31 | 32 | return response; 33 | } 34 | -------------------------------------------------------------------------------- /lib/lambda/claimCheckSplit.js: -------------------------------------------------------------------------------- 1 | const { DynamoDBClient } = require('@aws-sdk/client-dynamodb'); 2 | const { DynamoDBDocumentClient, PutCommand} = require('@aws-sdk/lib-dynamodb'); 3 | const tableName = process.env.CLAIM_CHECK_TABLE; 4 | 5 | async function writeToDb(item) { 6 | // put the message in the table 7 | const params = { 8 | TableName: tableName, 9 | Item: item 10 | }; 11 | 12 | const client = new DynamoDBClient(); 13 | const ddbDocClient = DynamoDBDocumentClient.from(client); 14 | return await ddbDocClient.send(new PutCommand(params)); 15 | } 16 | 17 | exports.handler = async function (event, context) { 18 | console.log('Received event:', JSON.stringify(event, null, 2)); 19 | 20 | var bodies = event 21 | .map(element => element.body) 22 | .map(JSON.parse) 23 | 24 | console.log("bodies:", bodies); 25 | 26 | var result = await Promise.all(bodies.map(writeToDb)) 27 | console.log("Success :", result.map(JSON.stringify)); 28 | 29 | const resonse = { 30 | eventType: "Some_Event_Type", 31 | ids: bodies 32 | .map(element => element.id) 33 | } 34 | console.log('response:', resonse); 35 | return resonse; 36 | } -------------------------------------------------------------------------------- /lib/lambda/contentFilterSampleDataCreator.js: -------------------------------------------------------------------------------- 1 | const { KinesisClient, PutRecordCommand } = require("@aws-sdk/client-kinesis"); 2 | const streamName = process.env.SOURCE_STREAM; 3 | 4 | // AWS Lambda function that writes a sample event to a Kinesis stream 5 | exports.handler = async (event) => { 6 | //log streamName 7 | console.log('Stream name:', streamName); 8 | const id = 'someID'; 9 | 10 | const userCreated = {event_type: "USER_CREATED", user_name: "John Doe", birthday: "1995-01-01"}; 11 | const order = {event_type: "ORDER", currency: "EUR", sum:45.99, user_name: "John Doe", birthday: "1995-01-01"}; 12 | 13 | const userCreatedParams = { 14 | StreamName: streamName, 15 | Data: Buffer.from(JSON.stringify(userCreated)), 16 | PartitionKey: id 17 | }; 18 | 19 | const orderParams = { 20 | StreamName: streamName, 21 | Data: Buffer.from(JSON.stringify(order)), 22 | PartitionKey: id 23 | }; 24 | 25 | const client = new KinesisClient(); 26 | 27 | await client.send(new PutRecordCommand(userCreatedParams)); 28 | await client.send(new PutRecordCommand(orderParams)); 29 | 30 | return { 31 | statusCode: 200, 32 | body: JSON.stringify('Success'), 33 | }; 34 | }; -------------------------------------------------------------------------------- /lib/lambda/messageTranslatorEnrichmentLambda.js: -------------------------------------------------------------------------------- 1 | // As described in the blog post, we would probably use either API Destinations or API Gateway to integrate with a geocoding endpoint. 2 | // To still be able to explore the pattern, this sample uses a Lambda function to simulate the geocoding endpoint. 3 | 4 | exports.handler = async (event) => { 5 | 6 | const responseBody = { 7 | coordinates: "38.897957, -77.036560" 8 | }; 9 | 10 | const response = { 11 | "statusCode": 200, 12 | "headers": { 13 | "my_header": "my_value" 14 | }, 15 | "body": JSON.stringify(responseBody), 16 | "isBase64Encoded": false 17 | }; 18 | 19 | console.log("response: " + JSON.stringify(response)) 20 | 21 | return response; 22 | }; -------------------------------------------------------------------------------- /lib/lambda/messageTranslatorSampleDataCreator.js: -------------------------------------------------------------------------------- 1 | const { SQSClient, SendMessageCommand } = require('@aws-sdk/client-sqs'); 2 | const queueUrl = process.env.QUEUE_URL; 3 | 4 | exports.handler = async (event) => { 5 | 6 | const client = new SQSClient(); 7 | 8 | const messageWithManyDetails = { 9 | "address": "1600 Pennsylvania Avenue NW, Washington, DC 20500, United States", 10 | }; 11 | 12 | const messageParams = { 13 | QueueUrl: queueUrl, 14 | MessageBody: JSON.stringify(messageWithManyDetails) 15 | }; 16 | 17 | const command = new SendMessageCommand(messageParams); 18 | const response = await client.send(command); 19 | 20 | return response; 21 | } -------------------------------------------------------------------------------- /lib/lambda/normalizerSampleDataCreator.js: -------------------------------------------------------------------------------- 1 | 2 | const { SQSClient, SendMessageCommand } = require('@aws-sdk/client-sqs'); 3 | const queueUrl = process.env.QUEUE_URL; 4 | 5 | 6 | 7 | exports.handler = async (event) => { 8 | 9 | const message1 = { 10 | "source": "systemA", 11 | "customer": { 12 | "first_name": "John", 13 | "middle_names": "Michael Frankie", 14 | "last_name": "Doe", 15 | }, 16 | "data": { 17 | "someDummyData": "someDummyData1" 18 | } 19 | }; 20 | const message2 = { 21 | "source": "systemB", 22 | "first_name": "John", 23 | "name": "Doe", 24 | "data": { 25 | "someDummyData": "someDummyData2" 26 | } 27 | }; 28 | const message3 = { 29 | "source": "systemC", 30 | "sender": "John Doe", 31 | "data": { 32 | "someDummyData": "someDummyData3" 33 | } 34 | }; 35 | 36 | const message1Params = { 37 | QueueUrl: queueUrl, 38 | MessageBody: JSON.stringify(message1) 39 | }; 40 | const message2Params = { 41 | QueueUrl: queueUrl, 42 | MessageBody: JSON.stringify(message2) 43 | }; 44 | const message3Params = { 45 | QueueUrl: queueUrl, 46 | MessageBody: JSON.stringify(message3) 47 | }; 48 | 49 | 50 | const client = new SQSClient(); 51 | 52 | await client.send(new SendMessageCommand(message1Params)); 53 | await client.send(new SendMessageCommand(message2Params)); 54 | await client.send(new SendMessageCommand(message3Params)); 55 | 56 | return { 57 | statusCode: 200, 58 | body: JSON.stringify('Success'), 59 | }; 60 | } 61 | -------------------------------------------------------------------------------- /lib/message-translator-stack.ts: -------------------------------------------------------------------------------- 1 | import * as cdk from 'aws-cdk-lib'; 2 | import { Construct } from 'constructs'; 3 | import * as sqs from 'aws-cdk-lib/aws-sqs'; 4 | import * as sfn from 'aws-cdk-lib/aws-stepfunctions'; 5 | import * as iam from 'aws-cdk-lib/aws-iam'; 6 | import * as pipes from 'aws-cdk-lib/aws-pipes'; 7 | import * as logs from 'aws-cdk-lib/aws-logs'; 8 | import * as lambda from 'aws-cdk-lib/aws-lambda'; 9 | import { NagSuppressions } from 'cdk-nag'; 10 | 11 | export class MessageTranslatorStack extends cdk.Stack { 12 | constructor(scope: Construct, id: string, props?: cdk.StackProps) { 13 | super(scope, id, props); 14 | 15 | const deadLetterQueue = new sqs.Queue(this, 'ClaimCheckDeadLetterQueue', { 16 | enforceSSL: true, 17 | }); 18 | 19 | const sourceQueue = new sqs.Queue(this, 'MessageTranslatorSourceQueue', { 20 | enforceSSL: true, 21 | deadLetterQueue: { 22 | maxReceiveCount: 1, 23 | queue: deadLetterQueue, 24 | } 25 | }); 26 | 27 | const targetStepFunctionsWorkflow = new sfn.StateMachine(this, 'MessageTranslatorTargetStepFunctionsWorkflow', { 28 | definition: sfn.Chain.start(new sfn.Pass(this, 'Process Message', {})), 29 | tracingEnabled: true, 30 | logs: { 31 | destination: new logs.LogGroup(this, 'MessageTranslatorTargetStepFunctionsWorkflowLogGroup', { 32 | logGroupName: '/aws/vendedlogs/MessageTranslatorTargetStepFunctionsWorkflowLogGroup', 33 | removalPolicy: cdk.RemovalPolicy.DESTROY, 34 | }), 35 | level: sfn.LogLevel.ALL, 36 | }, 37 | }); 38 | 39 | // As described in the blog post, we would probably use either API Destinations or API Gateway to integrate with a geocoding endpoint. 40 | // To still be able to explore the pattern, this sample uses a Lambda function to simulate the geocoding endpoint. 41 | // At the end of the file, you can find the key constructs to create an API destination. 42 | const enrichmentLambda = new lambda.Function(this, 'MessageTranslatorEnrichmentLambda', { 43 | runtime: lambda.Runtime.NODEJS_18_X, 44 | code: lambda.Code.fromAsset('lib/lambda'), 45 | handler: 'messageTranslatorEnrichmentLambda.handler', 46 | }); 47 | 48 | // role with permission to read events from the source queue and write to the target step functions workflow 49 | const pipeRole = new iam.Role(this, 'MessageTranslatorRole', { 50 | assumedBy: new iam.ServicePrincipal('pipes.amazonaws.com'), 51 | }); 52 | 53 | sourceQueue.grantConsumeMessages(pipeRole); 54 | targetStepFunctionsWorkflow.grantStartExecution(pipeRole); 55 | enrichmentLambda.grantInvoke(pipeRole); 56 | 57 | const messageTranslatorPipe = new pipes.CfnPipe(this, 'MessageTranslatorPipe', { 58 | roleArn: pipeRole.roleArn, 59 | source: sourceQueue.queueArn, 60 | target: targetStepFunctionsWorkflow.stateMachineArn, 61 | enrichment: enrichmentLambda.functionArn, 62 | sourceParameters: { 63 | sqsQueueParameters: { 64 | batchSize: 1, 65 | }, 66 | }, 67 | targetParameters: { 68 | stepFunctionStateMachineParameters: { 69 | invocationType: 'FIRE_AND_FORGET', 70 | }, 71 | } 72 | }); 73 | 74 | const messageTranslatorSampleDataCreator = new lambda.Function(this, 'MessageTranslatorSampleDataCreatorLambda', { 75 | runtime: lambda.Runtime.NODEJS_18_X, 76 | code: lambda.Code.fromAsset('lib/lambda'), 77 | handler: 'messageTranslatorSampleDataCreator.handler', 78 | environment: { 79 | QUEUE_URL: sourceQueue.queueUrl, 80 | } 81 | }); 82 | sourceQueue.grantSendMessages(messageTranslatorSampleDataCreator); 83 | 84 | NagSuppressions.addResourceSuppressions(deadLetterQueue, [ 85 | { 86 | id: 'AwsSolutions-SQS3', 87 | reason: 'Resource is a dead-letter queue.' 88 | }, 89 | ]); 90 | 91 | // Relevant outputs so that the user can trigger this pattern and watch it in action. 92 | new cdk.CfnOutput(this, "MessageTranslatorSampleDataCreatorLambdaArn", { 93 | value: messageTranslatorSampleDataCreator.functionArn, 94 | exportName: "MessageTranslatorSampleDataCreatorLambdaArn", 95 | description: "The Arn of the Lambda function that can be used to test the Claim Check Pipe. Invoke this function to see the pipe in action.", 96 | }); 97 | new cdk.CfnOutput(this, "TargetStepFunctionsWorkflowArn", { 98 | value: targetStepFunctionsWorkflow.stateMachineArn, 99 | exportName: "TargetStateMachineArn", 100 | description: "The ARN of the target workflow. After invoking the SampleDataCreatorLambda, you can use this ARN to view the execution history of the workflow and see the result.", 101 | }); 102 | 103 | // * These are the key constructs needed to create and use an API destination. This code will only work with additional configuration, e.g. in AWS Systems Manager & AWS Secrets Manager. 104 | /* 105 | Additional imports: 106 | import * as events from 'aws-cdk-lib/aws-events'; 107 | import { SecretValue } from 'aws-cdk-lib'; 108 | import * as ssm from 'aws-cdk-lib/aws-ssm'; 109 | import * as apigateway from 'aws-cdk-lib/aws-apigateway'; 110 | 111 | 112 | const connection = new events.Connection(this, 'Connection', { 113 | authorization: events.Authorization.apiKey('x-api-key', SecretValue.secretsManager('ApiSecretName')), // Configure authorization here 114 | }); 115 | 116 | Configure your endpoint url, for example by retrieving it from AWS Systems Manager Parameter Store 117 | const endpointURL = ssm.StringParameter.fromStringParameterAttributes(this, 'MessageTranslatorEnrichmentURL', { 118 | parameterName: '/MyParameters/MessageTranslatorEnrichmentURL', 119 | }).stringValue; 120 | 121 | const enrichmentDestination = new events.ApiDestination(this, 'Destination', { 122 | connection, 123 | endpoint: endpointURL, 124 | httpMethod: events.HttpMethod.GET, 125 | }); 126 | */ 127 | // create an IAM policy to allow the pipe to invoke the API destination 128 | // const invokeApiDestinationPolicy = new iam.PolicyDocument({ 129 | // statements: [ 130 | // new iam.PolicyStatement({ 131 | // resources: [ 132 | // `arn:aws:events:${process.env.CDK_DEFAULT_REGION}:${process.env.CDK_DEFAULT_ACCOUNT}:api-destination/*/*`, 133 | /* ], 134 | actions: ["events:InvokeApiDestination"], 135 | }), 136 | ], 137 | }); 138 | 139 | role with permission to read events from the source queue and write to the target step functions workflow 140 | const pipeRole = new iam.Role(this, 'MessageTranslatorRole', { // make sure to remove the definition of the pipeRole above 141 | assumedBy: new iam.ServicePrincipal('pipes.amazonaws.com'), 142 | inlinePolicies: { 143 | invokeApiDestinationPolicy, 144 | }, 145 | }); 146 | 147 | const messageTranslatorPipe = new pipes.CfnPipe(this, 'MessageTranslatorPipe', { 148 | roleArn: pipeRole.roleArn, 149 | source: sourceQueue.queueArn, 150 | target: targetStepFunctionsWorkflow.stateMachineArn, 151 | enrichment: enrichmentDestination.apiDestinationArn, 152 | sourceParameters: { 153 | sqsQueueParameters: { 154 | batchSize: 1, 155 | }, 156 | }, 157 | targetParameters: { 158 | stepFunctionStateMachineParameters: { 159 | invocationType: 'FIRE_AND_FORGET', 160 | }, 161 | } 162 | }); 163 | */ 164 | } 165 | } 166 | 167 | -------------------------------------------------------------------------------- /lib/normalizer-stack.ts: -------------------------------------------------------------------------------- 1 | import * as cdk from 'aws-cdk-lib'; 2 | import { Construct } from 'constructs'; 3 | import * as sqs from 'aws-cdk-lib/aws-sqs'; 4 | import * as sfn from 'aws-cdk-lib/aws-stepfunctions'; 5 | import * as events from 'aws-cdk-lib/aws-events'; 6 | import * as pipes from 'aws-cdk-lib/aws-pipes'; 7 | import * as iam from 'aws-cdk-lib/aws-iam'; 8 | import * as logs from 'aws-cdk-lib/aws-logs'; 9 | import * as targets from 'aws-cdk-lib/aws-events-targets'; 10 | import * as lambda from 'aws-cdk-lib/aws-lambda'; 11 | import { NagSuppressions } from 'cdk-nag'; 12 | 13 | export class NormalizerStack extends cdk.Stack { 14 | 15 | constructor(scope: Construct, id: string, props?: cdk.StackProps) { 16 | super(scope, id, props); 17 | 18 | // Step 1: Create source, enrichment and target 19 | const deadLetterQueue = new sqs.Queue(this, 'NormalizerSourceDeadLetterQueue', { 20 | enforceSSL: true, 21 | }) 22 | 23 | const sourceQueue = new sqs.Queue(this, 'NormalizerSourceQueue', { 24 | enforceSSL: true, 25 | deadLetterQueue: { 26 | maxReceiveCount: 1, 27 | queue: deadLetterQueue, 28 | } 29 | }); 30 | 31 | const enrichmentWorkflow = new sfn.StateMachine(this, 'NormalizerEnrichmentWorkflow', { 32 | stateMachineType: sfn.StateMachineType.EXPRESS, 33 | tracingEnabled: true, 34 | logs: { 35 | destination: new logs.LogGroup(this, 'UnifyNameWorkflowLogGroup', { 36 | logGroupName: '/aws/vendedlogs/UnifyNameWorkflowLogGroup', 37 | removalPolicy: cdk.RemovalPolicy.DESTROY, 38 | }), 39 | includeExecutionData: true, 40 | level: sfn.LogLevel.ALL 41 | }, 42 | definition: new sfn.Pass(this, 'Parse JSON', { 43 | parameters: { 44 | "body.$": "States.StringToJson($.[0].body)" 45 | }, 46 | }).next( 47 | new sfn.Choice(this, 'Source') 48 | .when(sfn.Condition.stringEquals('$.body.source', 'systemA'), new sfn.Pass(this, 'UnifyA', { 49 | parameters: { 50 | first_name: sfn.JsonPath.stringAt("$.body.customer.first_name"), 51 | name: sfn.JsonPath.stringAt("$.body.customer.last_name"), 52 | data: sfn.JsonPath.stringAt("$.body.data") 53 | }, 54 | })) 55 | .when(sfn.Condition.stringEquals('$.body.source', 'systemB'), new sfn.Pass(this, 'UnifyB', { 56 | parameters: { 57 | first_name: sfn.JsonPath.stringAt("$.body.first_name"), 58 | name: sfn.JsonPath.stringAt("$.body.name"), 59 | data: sfn.JsonPath.stringAt("$.body.data") 60 | }, 61 | })) 62 | .when(sfn.Condition.stringEquals('$.body.source', 'systemC'), new sfn.Pass(this, 'Add splitter', { 63 | parameters: { 64 | splitter: " ", 65 | data: sfn.JsonPath.stringAt("$.body.data"), 66 | full_name: sfn.JsonPath.stringAt("$.body.sender") 67 | }, 68 | }).next(new sfn.Pass(this, 'Split name', { 69 | parameters: { 70 | data: sfn.JsonPath.stringAt("$.data"), 71 | full_name: sfn.JsonPath.stringSplit(sfn.JsonPath.stringAt("$.full_name"), sfn.JsonPath.stringAt("$.splitter")), 72 | indexFirst: 0, 73 | indexLast: 1 74 | } 75 | })).next(new sfn.Pass(this, 'UnifyC', { 76 | parameters: { 77 | first_name: sfn.JsonPath.arrayGetItem(sfn.JsonPath.stringAt("$.full_name"), sfn.JsonPath.numberAt("$.indexFirst")), 78 | name: sfn.JsonPath.arrayGetItem(sfn.JsonPath.stringAt("$.full_name"), sfn.JsonPath.numberAt("$.indexLast")), 79 | data: sfn.JsonPath.stringAt("$.data"), 80 | }, 81 | }))) 82 | .otherwise(new sfn.Fail(this, 'Invalid Source')) 83 | ) 84 | }); 85 | const normalizerTargetBus = new events.EventBus(this, 'NormalizerTargetBus', { 86 | eventBusName: 'normalizerTargetBus' 87 | }); 88 | 89 | // create an Amazon EventBridge rule to send all events to Amazon CloudWatch Logs: 90 | const normalizerTargetLogRule = new events.Rule(this, 'NormalizerTargetLog', { 91 | ruleName: 'normalizerTargetLog', 92 | eventBus: normalizerTargetBus, 93 | eventPattern: { 94 | source: events.Match.prefix(''), 95 | }, 96 | targets: [new targets.CloudWatchLogGroup(new logs.LogGroup(this, 'NormalizerLogGroup', { 97 | logGroupName: '/aws/events/normalizerTargetLog', 98 | removalPolicy: cdk.RemovalPolicy.DESTROY, 99 | }))], 100 | }); 101 | 102 | const allowEventBridgePolicy = new iam.PolicyDocument({ 103 | statements: [ 104 | new iam.PolicyStatement({ 105 | resources: [ 106 | `arn:aws:logs:${process.env.CDK_DEFAULT_REGION}:${process.env.CDK_DEFAULT_ACCOUNT}:log-group:/aws/events/*:*"`, 107 | ], 108 | actions: ["logs:CreateLogStream", "logs:PutLogEvents"], 109 | principals: [new iam.ServicePrincipal("events.amazonaws.com"), new iam.ServicePrincipal("delivery.logs.amazonaws.com")], 110 | }), 111 | ], 112 | }); 113 | 114 | // Step 2: Create the pipes' execution role 115 | const pipeRole = new iam.Role(this, 'NormalizerRole', { 116 | assumedBy: new iam.ServicePrincipal('pipes.amazonaws.com'), 117 | }); 118 | 119 | sourceQueue.grantConsumeMessages(pipeRole); 120 | enrichmentWorkflow.grantStartSyncExecution(pipeRole); 121 | normalizerTargetBus.grantPutEventsTo(pipeRole); 122 | 123 | const normalizerPipe = new pipes.CfnPipe(this, 'NormalizerPipe', { 124 | roleArn: pipeRole.roleArn, 125 | source: sourceQueue.queueArn, 126 | target: normalizerTargetBus.eventBusArn, 127 | enrichment: enrichmentWorkflow.stateMachineArn, 128 | sourceParameters: { 129 | sqsQueueParameters: { 130 | batchSize: 1, 131 | }, 132 | }, 133 | }); 134 | 135 | // Create AWS Lambda function that writes three sample messages to the queue to easily test the pipe 136 | const sourceLambda = new lambda.Function(this, 'NormalizerSampleDataCreatorLambda', { 137 | runtime: lambda.Runtime.NODEJS_18_X, 138 | code: lambda.Code.fromAsset('lib/lambda'), 139 | handler: 'normalizerSampleDataCreator.handler', 140 | environment: { 141 | QUEUE_URL: sourceQueue.queueUrl, 142 | } 143 | }); 144 | sourceQueue.grantSendMessages(sourceLambda); 145 | 146 | NagSuppressions.addResourceSuppressions(deadLetterQueue, [ 147 | { 148 | id: 'AwsSolutions-SQS3', 149 | reason: 'Resource is a dead-letter queue.' 150 | }, 151 | ]); 152 | NagSuppressions.addResourceSuppressionsByPath( 153 | this, 154 | '/NormalizerStack/AWS679f53fac002430cb0da5b7982bd2287/Resource', 155 | [{ id: 'AwsSolutions-L1', reason: 'Resource is implicitly created and therefore runtime cannot be controlled.' }] 156 | ); 157 | 158 | // Relevant outputs so that the user can trigger this pattern and watch it in action. 159 | new cdk.CfnOutput(this, "NormalizerSampleDataCreatorLambdaArn", { 160 | value: sourceLambda.functionArn, 161 | exportName: "NormalizerSampleDataCreatorLambdaArn", 162 | }); 163 | } 164 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pipes_patterns_cdk", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "pipes_patterns_cdk", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "aws-cdk-lib": "2.59.0", 12 | "cdk-nag": "^2.21.64", 13 | "constructs": "^10.0.0", 14 | "source-map-support": "^0.5.21" 15 | }, 16 | "bin": { 17 | "pipes_patterns_cdk": "bin/pipes_patterns_cdk.js" 18 | }, 19 | "devDependencies": { 20 | "@types/jest": "^29.2.4", 21 | "@types/node": "18.11.15", 22 | "aws-cdk": "2.59.0", 23 | "jest": "^29.3.1", 24 | "ts-jest": "^29.0.3", 25 | "ts-node": "^10.9.1", 26 | "typescript": "~4.9.4" 27 | } 28 | }, 29 | "node_modules/@ampproject/remapping": { 30 | "version": "2.2.0", 31 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", 32 | "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", 33 | "dev": true, 34 | "dependencies": { 35 | "@jridgewell/gen-mapping": "^0.1.0", 36 | "@jridgewell/trace-mapping": "^0.3.9" 37 | }, 38 | "engines": { 39 | "node": ">=6.0.0" 40 | } 41 | }, 42 | "node_modules/@aws-cdk/asset-awscli-v1": { 43 | "version": "2.2.49", 44 | "resolved": "https://registry.npmjs.org/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.49.tgz", 45 | "integrity": "sha512-Qd5bdLlC/sphWQQPNn7etKXWCh+fij7DWxtkIwvhhZ+LM6UEApGLS8sBLBQcRO2ZQdEuNb+zeClUy+3DNojfeg==" 46 | }, 47 | "node_modules/@aws-cdk/asset-kubectl-v20": { 48 | "version": "2.1.1", 49 | "resolved": "https://registry.npmjs.org/@aws-cdk/asset-kubectl-v20/-/asset-kubectl-v20-2.1.1.tgz", 50 | "integrity": "sha512-U1ntiX8XiMRRRH5J1IdC+1t5CE89015cwyt5U63Cpk0GnMlN5+h9WsWMlKlPXZR4rdq/m806JRlBMRpBUB2Dhw==" 51 | }, 52 | "node_modules/@aws-cdk/asset-node-proxy-agent-v5": { 53 | "version": "2.0.38", 54 | "resolved": "https://registry.npmjs.org/@aws-cdk/asset-node-proxy-agent-v5/-/asset-node-proxy-agent-v5-2.0.38.tgz", 55 | "integrity": "sha512-BBwAjORhuUkTGO3CxGS5Evcp5n20h9v06Sftn2R1DuSm8zIoUlPsNlI1HUk8XqYuoEI4aD7IKRQBLglv09ciJQ==" 56 | }, 57 | "node_modules/@babel/code-frame": { 58 | "version": "7.18.6", 59 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", 60 | "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", 61 | "dev": true, 62 | "dependencies": { 63 | "@babel/highlight": "^7.18.6" 64 | }, 65 | "engines": { 66 | "node": ">=6.9.0" 67 | } 68 | }, 69 | "node_modules/@babel/compat-data": { 70 | "version": "7.20.10", 71 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz", 72 | "integrity": "sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==", 73 | "dev": true, 74 | "engines": { 75 | "node": ">=6.9.0" 76 | } 77 | }, 78 | "node_modules/@babel/core": { 79 | "version": "7.20.12", 80 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", 81 | "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", 82 | "dev": true, 83 | "dependencies": { 84 | "@ampproject/remapping": "^2.1.0", 85 | "@babel/code-frame": "^7.18.6", 86 | "@babel/generator": "^7.20.7", 87 | "@babel/helper-compilation-targets": "^7.20.7", 88 | "@babel/helper-module-transforms": "^7.20.11", 89 | "@babel/helpers": "^7.20.7", 90 | "@babel/parser": "^7.20.7", 91 | "@babel/template": "^7.20.7", 92 | "@babel/traverse": "^7.20.12", 93 | "@babel/types": "^7.20.7", 94 | "convert-source-map": "^1.7.0", 95 | "debug": "^4.1.0", 96 | "gensync": "^1.0.0-beta.2", 97 | "json5": "^2.2.2", 98 | "semver": "^6.3.0" 99 | }, 100 | "engines": { 101 | "node": ">=6.9.0" 102 | }, 103 | "funding": { 104 | "type": "opencollective", 105 | "url": "https://opencollective.com/babel" 106 | } 107 | }, 108 | "node_modules/@babel/core/node_modules/convert-source-map": { 109 | "version": "1.9.0", 110 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", 111 | "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", 112 | "dev": true 113 | }, 114 | "node_modules/@babel/generator": { 115 | "version": "7.20.7", 116 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz", 117 | "integrity": "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==", 118 | "dev": true, 119 | "dependencies": { 120 | "@babel/types": "^7.20.7", 121 | "@jridgewell/gen-mapping": "^0.3.2", 122 | "jsesc": "^2.5.1" 123 | }, 124 | "engines": { 125 | "node": ">=6.9.0" 126 | } 127 | }, 128 | "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { 129 | "version": "0.3.2", 130 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", 131 | "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", 132 | "dev": true, 133 | "dependencies": { 134 | "@jridgewell/set-array": "^1.0.1", 135 | "@jridgewell/sourcemap-codec": "^1.4.10", 136 | "@jridgewell/trace-mapping": "^0.3.9" 137 | }, 138 | "engines": { 139 | "node": ">=6.0.0" 140 | } 141 | }, 142 | "node_modules/@babel/helper-compilation-targets": { 143 | "version": "7.20.7", 144 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", 145 | "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", 146 | "dev": true, 147 | "dependencies": { 148 | "@babel/compat-data": "^7.20.5", 149 | "@babel/helper-validator-option": "^7.18.6", 150 | "browserslist": "^4.21.3", 151 | "lru-cache": "^5.1.1", 152 | "semver": "^6.3.0" 153 | }, 154 | "engines": { 155 | "node": ">=6.9.0" 156 | }, 157 | "peerDependencies": { 158 | "@babel/core": "^7.0.0" 159 | } 160 | }, 161 | "node_modules/@babel/helper-environment-visitor": { 162 | "version": "7.18.9", 163 | "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", 164 | "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", 165 | "dev": true, 166 | "engines": { 167 | "node": ">=6.9.0" 168 | } 169 | }, 170 | "node_modules/@babel/helper-function-name": { 171 | "version": "7.19.0", 172 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", 173 | "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", 174 | "dev": true, 175 | "dependencies": { 176 | "@babel/template": "^7.18.10", 177 | "@babel/types": "^7.19.0" 178 | }, 179 | "engines": { 180 | "node": ">=6.9.0" 181 | } 182 | }, 183 | "node_modules/@babel/helper-hoist-variables": { 184 | "version": "7.18.6", 185 | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", 186 | "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", 187 | "dev": true, 188 | "dependencies": { 189 | "@babel/types": "^7.18.6" 190 | }, 191 | "engines": { 192 | "node": ">=6.9.0" 193 | } 194 | }, 195 | "node_modules/@babel/helper-module-imports": { 196 | "version": "7.18.6", 197 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", 198 | "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", 199 | "dev": true, 200 | "dependencies": { 201 | "@babel/types": "^7.18.6" 202 | }, 203 | "engines": { 204 | "node": ">=6.9.0" 205 | } 206 | }, 207 | "node_modules/@babel/helper-module-transforms": { 208 | "version": "7.20.11", 209 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", 210 | "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", 211 | "dev": true, 212 | "dependencies": { 213 | "@babel/helper-environment-visitor": "^7.18.9", 214 | "@babel/helper-module-imports": "^7.18.6", 215 | "@babel/helper-simple-access": "^7.20.2", 216 | "@babel/helper-split-export-declaration": "^7.18.6", 217 | "@babel/helper-validator-identifier": "^7.19.1", 218 | "@babel/template": "^7.20.7", 219 | "@babel/traverse": "^7.20.10", 220 | "@babel/types": "^7.20.7" 221 | }, 222 | "engines": { 223 | "node": ">=6.9.0" 224 | } 225 | }, 226 | "node_modules/@babel/helper-plugin-utils": { 227 | "version": "7.20.2", 228 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", 229 | "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", 230 | "dev": true, 231 | "engines": { 232 | "node": ">=6.9.0" 233 | } 234 | }, 235 | "node_modules/@babel/helper-simple-access": { 236 | "version": "7.20.2", 237 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", 238 | "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", 239 | "dev": true, 240 | "dependencies": { 241 | "@babel/types": "^7.20.2" 242 | }, 243 | "engines": { 244 | "node": ">=6.9.0" 245 | } 246 | }, 247 | "node_modules/@babel/helper-split-export-declaration": { 248 | "version": "7.18.6", 249 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", 250 | "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", 251 | "dev": true, 252 | "dependencies": { 253 | "@babel/types": "^7.18.6" 254 | }, 255 | "engines": { 256 | "node": ">=6.9.0" 257 | } 258 | }, 259 | "node_modules/@babel/helper-string-parser": { 260 | "version": "7.19.4", 261 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", 262 | "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", 263 | "dev": true, 264 | "engines": { 265 | "node": ">=6.9.0" 266 | } 267 | }, 268 | "node_modules/@babel/helper-validator-identifier": { 269 | "version": "7.19.1", 270 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", 271 | "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", 272 | "dev": true, 273 | "engines": { 274 | "node": ">=6.9.0" 275 | } 276 | }, 277 | "node_modules/@babel/helper-validator-option": { 278 | "version": "7.18.6", 279 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", 280 | "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", 281 | "dev": true, 282 | "engines": { 283 | "node": ">=6.9.0" 284 | } 285 | }, 286 | "node_modules/@babel/helpers": { 287 | "version": "7.20.7", 288 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz", 289 | "integrity": "sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==", 290 | "dev": true, 291 | "dependencies": { 292 | "@babel/template": "^7.20.7", 293 | "@babel/traverse": "^7.20.7", 294 | "@babel/types": "^7.20.7" 295 | }, 296 | "engines": { 297 | "node": ">=6.9.0" 298 | } 299 | }, 300 | "node_modules/@babel/highlight": { 301 | "version": "7.18.6", 302 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", 303 | "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", 304 | "dev": true, 305 | "dependencies": { 306 | "@babel/helper-validator-identifier": "^7.18.6", 307 | "chalk": "^2.0.0", 308 | "js-tokens": "^4.0.0" 309 | }, 310 | "engines": { 311 | "node": ">=6.9.0" 312 | } 313 | }, 314 | "node_modules/@babel/highlight/node_modules/ansi-styles": { 315 | "version": "3.2.1", 316 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 317 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 318 | "dev": true, 319 | "dependencies": { 320 | "color-convert": "^1.9.0" 321 | }, 322 | "engines": { 323 | "node": ">=4" 324 | } 325 | }, 326 | "node_modules/@babel/highlight/node_modules/chalk": { 327 | "version": "2.4.2", 328 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 329 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 330 | "dev": true, 331 | "dependencies": { 332 | "ansi-styles": "^3.2.1", 333 | "escape-string-regexp": "^1.0.5", 334 | "supports-color": "^5.3.0" 335 | }, 336 | "engines": { 337 | "node": ">=4" 338 | } 339 | }, 340 | "node_modules/@babel/highlight/node_modules/color-convert": { 341 | "version": "1.9.3", 342 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 343 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 344 | "dev": true, 345 | "dependencies": { 346 | "color-name": "1.1.3" 347 | } 348 | }, 349 | "node_modules/@babel/highlight/node_modules/color-name": { 350 | "version": "1.1.3", 351 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 352 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 353 | "dev": true 354 | }, 355 | "node_modules/@babel/highlight/node_modules/escape-string-regexp": { 356 | "version": "1.0.5", 357 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 358 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 359 | "dev": true, 360 | "engines": { 361 | "node": ">=0.8.0" 362 | } 363 | }, 364 | "node_modules/@babel/highlight/node_modules/has-flag": { 365 | "version": "3.0.0", 366 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 367 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 368 | "dev": true, 369 | "engines": { 370 | "node": ">=4" 371 | } 372 | }, 373 | "node_modules/@babel/highlight/node_modules/supports-color": { 374 | "version": "5.5.0", 375 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 376 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 377 | "dev": true, 378 | "dependencies": { 379 | "has-flag": "^3.0.0" 380 | }, 381 | "engines": { 382 | "node": ">=4" 383 | } 384 | }, 385 | "node_modules/@babel/parser": { 386 | "version": "7.20.7", 387 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.7.tgz", 388 | "integrity": "sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==", 389 | "dev": true, 390 | "bin": { 391 | "parser": "bin/babel-parser.js" 392 | }, 393 | "engines": { 394 | "node": ">=6.0.0" 395 | } 396 | }, 397 | "node_modules/@babel/plugin-syntax-async-generators": { 398 | "version": "7.8.4", 399 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 400 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 401 | "dev": true, 402 | "dependencies": { 403 | "@babel/helper-plugin-utils": "^7.8.0" 404 | }, 405 | "peerDependencies": { 406 | "@babel/core": "^7.0.0-0" 407 | } 408 | }, 409 | "node_modules/@babel/plugin-syntax-bigint": { 410 | "version": "7.8.3", 411 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 412 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 413 | "dev": true, 414 | "dependencies": { 415 | "@babel/helper-plugin-utils": "^7.8.0" 416 | }, 417 | "peerDependencies": { 418 | "@babel/core": "^7.0.0-0" 419 | } 420 | }, 421 | "node_modules/@babel/plugin-syntax-class-properties": { 422 | "version": "7.12.13", 423 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 424 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 425 | "dev": true, 426 | "dependencies": { 427 | "@babel/helper-plugin-utils": "^7.12.13" 428 | }, 429 | "peerDependencies": { 430 | "@babel/core": "^7.0.0-0" 431 | } 432 | }, 433 | "node_modules/@babel/plugin-syntax-import-meta": { 434 | "version": "7.10.4", 435 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 436 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 437 | "dev": true, 438 | "dependencies": { 439 | "@babel/helper-plugin-utils": "^7.10.4" 440 | }, 441 | "peerDependencies": { 442 | "@babel/core": "^7.0.0-0" 443 | } 444 | }, 445 | "node_modules/@babel/plugin-syntax-json-strings": { 446 | "version": "7.8.3", 447 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 448 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 449 | "dev": true, 450 | "dependencies": { 451 | "@babel/helper-plugin-utils": "^7.8.0" 452 | }, 453 | "peerDependencies": { 454 | "@babel/core": "^7.0.0-0" 455 | } 456 | }, 457 | "node_modules/@babel/plugin-syntax-jsx": { 458 | "version": "7.18.6", 459 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", 460 | "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", 461 | "dev": true, 462 | "dependencies": { 463 | "@babel/helper-plugin-utils": "^7.18.6" 464 | }, 465 | "engines": { 466 | "node": ">=6.9.0" 467 | }, 468 | "peerDependencies": { 469 | "@babel/core": "^7.0.0-0" 470 | } 471 | }, 472 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 473 | "version": "7.10.4", 474 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 475 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 476 | "dev": true, 477 | "dependencies": { 478 | "@babel/helper-plugin-utils": "^7.10.4" 479 | }, 480 | "peerDependencies": { 481 | "@babel/core": "^7.0.0-0" 482 | } 483 | }, 484 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 485 | "version": "7.8.3", 486 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 487 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 488 | "dev": true, 489 | "dependencies": { 490 | "@babel/helper-plugin-utils": "^7.8.0" 491 | }, 492 | "peerDependencies": { 493 | "@babel/core": "^7.0.0-0" 494 | } 495 | }, 496 | "node_modules/@babel/plugin-syntax-numeric-separator": { 497 | "version": "7.10.4", 498 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 499 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 500 | "dev": true, 501 | "dependencies": { 502 | "@babel/helper-plugin-utils": "^7.10.4" 503 | }, 504 | "peerDependencies": { 505 | "@babel/core": "^7.0.0-0" 506 | } 507 | }, 508 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 509 | "version": "7.8.3", 510 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 511 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 512 | "dev": true, 513 | "dependencies": { 514 | "@babel/helper-plugin-utils": "^7.8.0" 515 | }, 516 | "peerDependencies": { 517 | "@babel/core": "^7.0.0-0" 518 | } 519 | }, 520 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 521 | "version": "7.8.3", 522 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 523 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 524 | "dev": true, 525 | "dependencies": { 526 | "@babel/helper-plugin-utils": "^7.8.0" 527 | }, 528 | "peerDependencies": { 529 | "@babel/core": "^7.0.0-0" 530 | } 531 | }, 532 | "node_modules/@babel/plugin-syntax-optional-chaining": { 533 | "version": "7.8.3", 534 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 535 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 536 | "dev": true, 537 | "dependencies": { 538 | "@babel/helper-plugin-utils": "^7.8.0" 539 | }, 540 | "peerDependencies": { 541 | "@babel/core": "^7.0.0-0" 542 | } 543 | }, 544 | "node_modules/@babel/plugin-syntax-top-level-await": { 545 | "version": "7.14.5", 546 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 547 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 548 | "dev": true, 549 | "dependencies": { 550 | "@babel/helper-plugin-utils": "^7.14.5" 551 | }, 552 | "engines": { 553 | "node": ">=6.9.0" 554 | }, 555 | "peerDependencies": { 556 | "@babel/core": "^7.0.0-0" 557 | } 558 | }, 559 | "node_modules/@babel/plugin-syntax-typescript": { 560 | "version": "7.20.0", 561 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", 562 | "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", 563 | "dev": true, 564 | "dependencies": { 565 | "@babel/helper-plugin-utils": "^7.19.0" 566 | }, 567 | "engines": { 568 | "node": ">=6.9.0" 569 | }, 570 | "peerDependencies": { 571 | "@babel/core": "^7.0.0-0" 572 | } 573 | }, 574 | "node_modules/@babel/template": { 575 | "version": "7.20.7", 576 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", 577 | "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", 578 | "dev": true, 579 | "dependencies": { 580 | "@babel/code-frame": "^7.18.6", 581 | "@babel/parser": "^7.20.7", 582 | "@babel/types": "^7.20.7" 583 | }, 584 | "engines": { 585 | "node": ">=6.9.0" 586 | } 587 | }, 588 | "node_modules/@babel/traverse": { 589 | "version": "7.20.12", 590 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.12.tgz", 591 | "integrity": "sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==", 592 | "dev": true, 593 | "dependencies": { 594 | "@babel/code-frame": "^7.18.6", 595 | "@babel/generator": "^7.20.7", 596 | "@babel/helper-environment-visitor": "^7.18.9", 597 | "@babel/helper-function-name": "^7.19.0", 598 | "@babel/helper-hoist-variables": "^7.18.6", 599 | "@babel/helper-split-export-declaration": "^7.18.6", 600 | "@babel/parser": "^7.20.7", 601 | "@babel/types": "^7.20.7", 602 | "debug": "^4.1.0", 603 | "globals": "^11.1.0" 604 | }, 605 | "engines": { 606 | "node": ">=6.9.0" 607 | } 608 | }, 609 | "node_modules/@babel/types": { 610 | "version": "7.20.7", 611 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", 612 | "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", 613 | "dev": true, 614 | "dependencies": { 615 | "@babel/helper-string-parser": "^7.19.4", 616 | "@babel/helper-validator-identifier": "^7.19.1", 617 | "to-fast-properties": "^2.0.0" 618 | }, 619 | "engines": { 620 | "node": ">=6.9.0" 621 | } 622 | }, 623 | "node_modules/@bcoe/v8-coverage": { 624 | "version": "0.2.3", 625 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 626 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 627 | "dev": true 628 | }, 629 | "node_modules/@cspotcode/source-map-support": { 630 | "version": "0.8.1", 631 | "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", 632 | "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", 633 | "dev": true, 634 | "dependencies": { 635 | "@jridgewell/trace-mapping": "0.3.9" 636 | }, 637 | "engines": { 638 | "node": ">=12" 639 | } 640 | }, 641 | "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { 642 | "version": "0.3.9", 643 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", 644 | "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", 645 | "dev": true, 646 | "dependencies": { 647 | "@jridgewell/resolve-uri": "^3.0.3", 648 | "@jridgewell/sourcemap-codec": "^1.4.10" 649 | } 650 | }, 651 | "node_modules/@istanbuljs/load-nyc-config": { 652 | "version": "1.1.0", 653 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 654 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 655 | "dev": true, 656 | "dependencies": { 657 | "camelcase": "^5.3.1", 658 | "find-up": "^4.1.0", 659 | "get-package-type": "^0.1.0", 660 | "js-yaml": "^3.13.1", 661 | "resolve-from": "^5.0.0" 662 | }, 663 | "engines": { 664 | "node": ">=8" 665 | } 666 | }, 667 | "node_modules/@istanbuljs/schema": { 668 | "version": "0.1.3", 669 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 670 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 671 | "dev": true, 672 | "engines": { 673 | "node": ">=8" 674 | } 675 | }, 676 | "node_modules/@jest/console": { 677 | "version": "29.3.1", 678 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.3.1.tgz", 679 | "integrity": "sha512-IRE6GD47KwcqA09RIWrabKdHPiKDGgtAL31xDxbi/RjQMsr+lY+ppxmHwY0dUEV3qvvxZzoe5Hl0RXZJOjQNUg==", 680 | "dev": true, 681 | "dependencies": { 682 | "@jest/types": "^29.3.1", 683 | "@types/node": "*", 684 | "chalk": "^4.0.0", 685 | "jest-message-util": "^29.3.1", 686 | "jest-util": "^29.3.1", 687 | "slash": "^3.0.0" 688 | }, 689 | "engines": { 690 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 691 | } 692 | }, 693 | "node_modules/@jest/core": { 694 | "version": "29.3.1", 695 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.3.1.tgz", 696 | "integrity": "sha512-0ohVjjRex985w5MmO5L3u5GR1O30DexhBSpuwx2P+9ftyqHdJXnk7IUWiP80oHMvt7ubHCJHxV0a0vlKVuZirw==", 697 | "dev": true, 698 | "dependencies": { 699 | "@jest/console": "^29.3.1", 700 | "@jest/reporters": "^29.3.1", 701 | "@jest/test-result": "^29.3.1", 702 | "@jest/transform": "^29.3.1", 703 | "@jest/types": "^29.3.1", 704 | "@types/node": "*", 705 | "ansi-escapes": "^4.2.1", 706 | "chalk": "^4.0.0", 707 | "ci-info": "^3.2.0", 708 | "exit": "^0.1.2", 709 | "graceful-fs": "^4.2.9", 710 | "jest-changed-files": "^29.2.0", 711 | "jest-config": "^29.3.1", 712 | "jest-haste-map": "^29.3.1", 713 | "jest-message-util": "^29.3.1", 714 | "jest-regex-util": "^29.2.0", 715 | "jest-resolve": "^29.3.1", 716 | "jest-resolve-dependencies": "^29.3.1", 717 | "jest-runner": "^29.3.1", 718 | "jest-runtime": "^29.3.1", 719 | "jest-snapshot": "^29.3.1", 720 | "jest-util": "^29.3.1", 721 | "jest-validate": "^29.3.1", 722 | "jest-watcher": "^29.3.1", 723 | "micromatch": "^4.0.4", 724 | "pretty-format": "^29.3.1", 725 | "slash": "^3.0.0", 726 | "strip-ansi": "^6.0.0" 727 | }, 728 | "engines": { 729 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 730 | }, 731 | "peerDependencies": { 732 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 733 | }, 734 | "peerDependenciesMeta": { 735 | "node-notifier": { 736 | "optional": true 737 | } 738 | } 739 | }, 740 | "node_modules/@jest/environment": { 741 | "version": "29.3.1", 742 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.3.1.tgz", 743 | "integrity": "sha512-pMmvfOPmoa1c1QpfFW0nXYtNLpofqo4BrCIk6f2kW4JFeNlHV2t3vd+3iDLf31e2ot2Mec0uqZfmI+U0K2CFag==", 744 | "dev": true, 745 | "dependencies": { 746 | "@jest/fake-timers": "^29.3.1", 747 | "@jest/types": "^29.3.1", 748 | "@types/node": "*", 749 | "jest-mock": "^29.3.1" 750 | }, 751 | "engines": { 752 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 753 | } 754 | }, 755 | "node_modules/@jest/expect": { 756 | "version": "29.3.1", 757 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.3.1.tgz", 758 | "integrity": "sha512-QivM7GlSHSsIAWzgfyP8dgeExPRZ9BIe2LsdPyEhCGkZkoyA+kGsoIzbKAfZCvvRzfZioKwPtCZIt5SaoxYCvg==", 759 | "dev": true, 760 | "dependencies": { 761 | "expect": "^29.3.1", 762 | "jest-snapshot": "^29.3.1" 763 | }, 764 | "engines": { 765 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 766 | } 767 | }, 768 | "node_modules/@jest/expect-utils": { 769 | "version": "29.3.1", 770 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.3.1.tgz", 771 | "integrity": "sha512-wlrznINZI5sMjwvUoLVk617ll/UYfGIZNxmbU+Pa7wmkL4vYzhV9R2pwVqUh4NWWuLQWkI8+8mOkxs//prKQ3g==", 772 | "dev": true, 773 | "dependencies": { 774 | "jest-get-type": "^29.2.0" 775 | }, 776 | "engines": { 777 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 778 | } 779 | }, 780 | "node_modules/@jest/fake-timers": { 781 | "version": "29.3.1", 782 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.3.1.tgz", 783 | "integrity": "sha512-iHTL/XpnDlFki9Tq0Q1GGuVeQ8BHZGIYsvCO5eN/O/oJaRzofG9Xndd9HuSDBI/0ZS79pg0iwn07OMTQ7ngF2A==", 784 | "dev": true, 785 | "dependencies": { 786 | "@jest/types": "^29.3.1", 787 | "@sinonjs/fake-timers": "^9.1.2", 788 | "@types/node": "*", 789 | "jest-message-util": "^29.3.1", 790 | "jest-mock": "^29.3.1", 791 | "jest-util": "^29.3.1" 792 | }, 793 | "engines": { 794 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 795 | } 796 | }, 797 | "node_modules/@jest/globals": { 798 | "version": "29.3.1", 799 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.3.1.tgz", 800 | "integrity": "sha512-cTicd134vOcwO59OPaB6AmdHQMCtWOe+/DitpTZVxWgMJ+YvXL1HNAmPyiGbSHmF/mXVBkvlm8YYtQhyHPnV6Q==", 801 | "dev": true, 802 | "dependencies": { 803 | "@jest/environment": "^29.3.1", 804 | "@jest/expect": "^29.3.1", 805 | "@jest/types": "^29.3.1", 806 | "jest-mock": "^29.3.1" 807 | }, 808 | "engines": { 809 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 810 | } 811 | }, 812 | "node_modules/@jest/reporters": { 813 | "version": "29.3.1", 814 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.3.1.tgz", 815 | "integrity": "sha512-GhBu3YFuDrcAYW/UESz1JphEAbvUjaY2vShRZRoRY1mxpCMB3yGSJ4j9n0GxVlEOdCf7qjvUfBCrTUUqhVfbRA==", 816 | "dev": true, 817 | "dependencies": { 818 | "@bcoe/v8-coverage": "^0.2.3", 819 | "@jest/console": "^29.3.1", 820 | "@jest/test-result": "^29.3.1", 821 | "@jest/transform": "^29.3.1", 822 | "@jest/types": "^29.3.1", 823 | "@jridgewell/trace-mapping": "^0.3.15", 824 | "@types/node": "*", 825 | "chalk": "^4.0.0", 826 | "collect-v8-coverage": "^1.0.0", 827 | "exit": "^0.1.2", 828 | "glob": "^7.1.3", 829 | "graceful-fs": "^4.2.9", 830 | "istanbul-lib-coverage": "^3.0.0", 831 | "istanbul-lib-instrument": "^5.1.0", 832 | "istanbul-lib-report": "^3.0.0", 833 | "istanbul-lib-source-maps": "^4.0.0", 834 | "istanbul-reports": "^3.1.3", 835 | "jest-message-util": "^29.3.1", 836 | "jest-util": "^29.3.1", 837 | "jest-worker": "^29.3.1", 838 | "slash": "^3.0.0", 839 | "string-length": "^4.0.1", 840 | "strip-ansi": "^6.0.0", 841 | "v8-to-istanbul": "^9.0.1" 842 | }, 843 | "engines": { 844 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 845 | }, 846 | "peerDependencies": { 847 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 848 | }, 849 | "peerDependenciesMeta": { 850 | "node-notifier": { 851 | "optional": true 852 | } 853 | } 854 | }, 855 | "node_modules/@jest/schemas": { 856 | "version": "29.0.0", 857 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.0.0.tgz", 858 | "integrity": "sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==", 859 | "dev": true, 860 | "dependencies": { 861 | "@sinclair/typebox": "^0.24.1" 862 | }, 863 | "engines": { 864 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 865 | } 866 | }, 867 | "node_modules/@jest/source-map": { 868 | "version": "29.2.0", 869 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.2.0.tgz", 870 | "integrity": "sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==", 871 | "dev": true, 872 | "dependencies": { 873 | "@jridgewell/trace-mapping": "^0.3.15", 874 | "callsites": "^3.0.0", 875 | "graceful-fs": "^4.2.9" 876 | }, 877 | "engines": { 878 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 879 | } 880 | }, 881 | "node_modules/@jest/test-result": { 882 | "version": "29.3.1", 883 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.3.1.tgz", 884 | "integrity": "sha512-qeLa6qc0ddB0kuOZyZIhfN5q0e2htngokyTWsGriedsDhItisW7SDYZ7ceOe57Ii03sL988/03wAcBh3TChMGw==", 885 | "dev": true, 886 | "dependencies": { 887 | "@jest/console": "^29.3.1", 888 | "@jest/types": "^29.3.1", 889 | "@types/istanbul-lib-coverage": "^2.0.0", 890 | "collect-v8-coverage": "^1.0.0" 891 | }, 892 | "engines": { 893 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 894 | } 895 | }, 896 | "node_modules/@jest/test-sequencer": { 897 | "version": "29.3.1", 898 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.3.1.tgz", 899 | "integrity": "sha512-IqYvLbieTv20ArgKoAMyhLHNrVHJfzO6ARZAbQRlY4UGWfdDnLlZEF0BvKOMd77uIiIjSZRwq3Jb3Fa3I8+2UA==", 900 | "dev": true, 901 | "dependencies": { 902 | "@jest/test-result": "^29.3.1", 903 | "graceful-fs": "^4.2.9", 904 | "jest-haste-map": "^29.3.1", 905 | "slash": "^3.0.0" 906 | }, 907 | "engines": { 908 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 909 | } 910 | }, 911 | "node_modules/@jest/transform": { 912 | "version": "29.3.1", 913 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.3.1.tgz", 914 | "integrity": "sha512-8wmCFBTVGYqFNLWfcOWoVuMuKYPUBTnTMDkdvFtAYELwDOl9RGwOsvQWGPFxDJ8AWY9xM/8xCXdqmPK3+Q5Lug==", 915 | "dev": true, 916 | "dependencies": { 917 | "@babel/core": "^7.11.6", 918 | "@jest/types": "^29.3.1", 919 | "@jridgewell/trace-mapping": "^0.3.15", 920 | "babel-plugin-istanbul": "^6.1.1", 921 | "chalk": "^4.0.0", 922 | "convert-source-map": "^2.0.0", 923 | "fast-json-stable-stringify": "^2.1.0", 924 | "graceful-fs": "^4.2.9", 925 | "jest-haste-map": "^29.3.1", 926 | "jest-regex-util": "^29.2.0", 927 | "jest-util": "^29.3.1", 928 | "micromatch": "^4.0.4", 929 | "pirates": "^4.0.4", 930 | "slash": "^3.0.0", 931 | "write-file-atomic": "^4.0.1" 932 | }, 933 | "engines": { 934 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 935 | } 936 | }, 937 | "node_modules/@jest/types": { 938 | "version": "29.3.1", 939 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.3.1.tgz", 940 | "integrity": "sha512-d0S0jmmTpjnhCmNpApgX3jrUZgZ22ivKJRvL2lli5hpCRoNnp1f85r2/wpKfXuYu8E7Jjh1hGfhPyup1NM5AmA==", 941 | "dev": true, 942 | "dependencies": { 943 | "@jest/schemas": "^29.0.0", 944 | "@types/istanbul-lib-coverage": "^2.0.0", 945 | "@types/istanbul-reports": "^3.0.0", 946 | "@types/node": "*", 947 | "@types/yargs": "^17.0.8", 948 | "chalk": "^4.0.0" 949 | }, 950 | "engines": { 951 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 952 | } 953 | }, 954 | "node_modules/@jridgewell/gen-mapping": { 955 | "version": "0.1.1", 956 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", 957 | "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", 958 | "dev": true, 959 | "dependencies": { 960 | "@jridgewell/set-array": "^1.0.0", 961 | "@jridgewell/sourcemap-codec": "^1.4.10" 962 | }, 963 | "engines": { 964 | "node": ">=6.0.0" 965 | } 966 | }, 967 | "node_modules/@jridgewell/resolve-uri": { 968 | "version": "3.1.0", 969 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 970 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 971 | "dev": true, 972 | "engines": { 973 | "node": ">=6.0.0" 974 | } 975 | }, 976 | "node_modules/@jridgewell/set-array": { 977 | "version": "1.1.2", 978 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 979 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 980 | "dev": true, 981 | "engines": { 982 | "node": ">=6.0.0" 983 | } 984 | }, 985 | "node_modules/@jridgewell/sourcemap-codec": { 986 | "version": "1.4.14", 987 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 988 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", 989 | "dev": true 990 | }, 991 | "node_modules/@jridgewell/trace-mapping": { 992 | "version": "0.3.17", 993 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", 994 | "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", 995 | "dev": true, 996 | "dependencies": { 997 | "@jridgewell/resolve-uri": "3.1.0", 998 | "@jridgewell/sourcemap-codec": "1.4.14" 999 | } 1000 | }, 1001 | "node_modules/@sinclair/typebox": { 1002 | "version": "0.24.51", 1003 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", 1004 | "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", 1005 | "dev": true 1006 | }, 1007 | "node_modules/@sinonjs/commons": { 1008 | "version": "1.8.6", 1009 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", 1010 | "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", 1011 | "dev": true, 1012 | "dependencies": { 1013 | "type-detect": "4.0.8" 1014 | } 1015 | }, 1016 | "node_modules/@sinonjs/fake-timers": { 1017 | "version": "9.1.2", 1018 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz", 1019 | "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", 1020 | "dev": true, 1021 | "dependencies": { 1022 | "@sinonjs/commons": "^1.7.0" 1023 | } 1024 | }, 1025 | "node_modules/@tsconfig/node10": { 1026 | "version": "1.0.9", 1027 | "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", 1028 | "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", 1029 | "dev": true 1030 | }, 1031 | "node_modules/@tsconfig/node12": { 1032 | "version": "1.0.11", 1033 | "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", 1034 | "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", 1035 | "dev": true 1036 | }, 1037 | "node_modules/@tsconfig/node14": { 1038 | "version": "1.0.3", 1039 | "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", 1040 | "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", 1041 | "dev": true 1042 | }, 1043 | "node_modules/@tsconfig/node16": { 1044 | "version": "1.0.3", 1045 | "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", 1046 | "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", 1047 | "dev": true 1048 | }, 1049 | "node_modules/@types/babel__core": { 1050 | "version": "7.1.20", 1051 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.20.tgz", 1052 | "integrity": "sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==", 1053 | "dev": true, 1054 | "dependencies": { 1055 | "@babel/parser": "^7.1.0", 1056 | "@babel/types": "^7.0.0", 1057 | "@types/babel__generator": "*", 1058 | "@types/babel__template": "*", 1059 | "@types/babel__traverse": "*" 1060 | } 1061 | }, 1062 | "node_modules/@types/babel__generator": { 1063 | "version": "7.6.4", 1064 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", 1065 | "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", 1066 | "dev": true, 1067 | "dependencies": { 1068 | "@babel/types": "^7.0.0" 1069 | } 1070 | }, 1071 | "node_modules/@types/babel__template": { 1072 | "version": "7.4.1", 1073 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", 1074 | "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", 1075 | "dev": true, 1076 | "dependencies": { 1077 | "@babel/parser": "^7.1.0", 1078 | "@babel/types": "^7.0.0" 1079 | } 1080 | }, 1081 | "node_modules/@types/babel__traverse": { 1082 | "version": "7.18.3", 1083 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", 1084 | "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", 1085 | "dev": true, 1086 | "dependencies": { 1087 | "@babel/types": "^7.3.0" 1088 | } 1089 | }, 1090 | "node_modules/@types/graceful-fs": { 1091 | "version": "4.1.5", 1092 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", 1093 | "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", 1094 | "dev": true, 1095 | "dependencies": { 1096 | "@types/node": "*" 1097 | } 1098 | }, 1099 | "node_modules/@types/istanbul-lib-coverage": { 1100 | "version": "2.0.4", 1101 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", 1102 | "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", 1103 | "dev": true 1104 | }, 1105 | "node_modules/@types/istanbul-lib-report": { 1106 | "version": "3.0.0", 1107 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", 1108 | "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", 1109 | "dev": true, 1110 | "dependencies": { 1111 | "@types/istanbul-lib-coverage": "*" 1112 | } 1113 | }, 1114 | "node_modules/@types/istanbul-reports": { 1115 | "version": "3.0.1", 1116 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", 1117 | "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", 1118 | "dev": true, 1119 | "dependencies": { 1120 | "@types/istanbul-lib-report": "*" 1121 | } 1122 | }, 1123 | "node_modules/@types/jest": { 1124 | "version": "29.2.5", 1125 | "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.2.5.tgz", 1126 | "integrity": "sha512-H2cSxkKgVmqNHXP7TC2L/WUorrZu8ZigyRywfVzv6EyBlxj39n4C00hjXYQWsbwqgElaj/CiAeSRmk5GoaKTgw==", 1127 | "dev": true, 1128 | "dependencies": { 1129 | "expect": "^29.0.0", 1130 | "pretty-format": "^29.0.0" 1131 | } 1132 | }, 1133 | "node_modules/@types/node": { 1134 | "version": "18.11.15", 1135 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.15.tgz", 1136 | "integrity": "sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==", 1137 | "dev": true 1138 | }, 1139 | "node_modules/@types/prettier": { 1140 | "version": "2.7.2", 1141 | "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", 1142 | "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", 1143 | "dev": true 1144 | }, 1145 | "node_modules/@types/stack-utils": { 1146 | "version": "2.0.1", 1147 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", 1148 | "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", 1149 | "dev": true 1150 | }, 1151 | "node_modules/@types/yargs": { 1152 | "version": "17.0.19", 1153 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.19.tgz", 1154 | "integrity": "sha512-cAx3qamwaYX9R0fzOIZAlFpo4A+1uBVCxqpKz9D26uTF4srRXaGTTsikQmaotCtNdbhzyUH7ft6p9ktz9s6UNQ==", 1155 | "dev": true, 1156 | "dependencies": { 1157 | "@types/yargs-parser": "*" 1158 | } 1159 | }, 1160 | "node_modules/@types/yargs-parser": { 1161 | "version": "21.0.0", 1162 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", 1163 | "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", 1164 | "dev": true 1165 | }, 1166 | "node_modules/acorn": { 1167 | "version": "8.8.1", 1168 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", 1169 | "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", 1170 | "dev": true, 1171 | "bin": { 1172 | "acorn": "bin/acorn" 1173 | }, 1174 | "engines": { 1175 | "node": ">=0.4.0" 1176 | } 1177 | }, 1178 | "node_modules/acorn-walk": { 1179 | "version": "8.2.0", 1180 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", 1181 | "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", 1182 | "dev": true, 1183 | "engines": { 1184 | "node": ">=0.4.0" 1185 | } 1186 | }, 1187 | "node_modules/ansi-escapes": { 1188 | "version": "4.3.2", 1189 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1190 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1191 | "dev": true, 1192 | "dependencies": { 1193 | "type-fest": "^0.21.3" 1194 | }, 1195 | "engines": { 1196 | "node": ">=8" 1197 | }, 1198 | "funding": { 1199 | "url": "https://github.com/sponsors/sindresorhus" 1200 | } 1201 | }, 1202 | "node_modules/ansi-regex": { 1203 | "version": "5.0.1", 1204 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1205 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1206 | "dev": true, 1207 | "engines": { 1208 | "node": ">=8" 1209 | } 1210 | }, 1211 | "node_modules/ansi-styles": { 1212 | "version": "4.3.0", 1213 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1214 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1215 | "dev": true, 1216 | "dependencies": { 1217 | "color-convert": "^2.0.1" 1218 | }, 1219 | "engines": { 1220 | "node": ">=8" 1221 | }, 1222 | "funding": { 1223 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1224 | } 1225 | }, 1226 | "node_modules/anymatch": { 1227 | "version": "3.1.3", 1228 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1229 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1230 | "dev": true, 1231 | "dependencies": { 1232 | "normalize-path": "^3.0.0", 1233 | "picomatch": "^2.0.4" 1234 | }, 1235 | "engines": { 1236 | "node": ">= 8" 1237 | } 1238 | }, 1239 | "node_modules/arg": { 1240 | "version": "4.1.3", 1241 | "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", 1242 | "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", 1243 | "dev": true 1244 | }, 1245 | "node_modules/argparse": { 1246 | "version": "1.0.10", 1247 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1248 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1249 | "dev": true, 1250 | "dependencies": { 1251 | "sprintf-js": "~1.0.2" 1252 | } 1253 | }, 1254 | "node_modules/aws-cdk": { 1255 | "version": "2.59.0", 1256 | "resolved": "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.59.0.tgz", 1257 | "integrity": "sha512-5xKh+nC6wLsjYGwA+YYbX9ZonJLYmthxSZy8pK/Bm9rL2mFpnMKvQZJz67L6ghOt1XumoB1vZbIhptln68jTuw==", 1258 | "dev": true, 1259 | "bin": { 1260 | "cdk": "bin/cdk" 1261 | }, 1262 | "engines": { 1263 | "node": ">= 14.15.0" 1264 | }, 1265 | "optionalDependencies": { 1266 | "fsevents": "2.3.2" 1267 | } 1268 | }, 1269 | "node_modules/aws-cdk-lib": { 1270 | "version": "2.59.0", 1271 | "resolved": "https://registry.npmjs.org/aws-cdk-lib/-/aws-cdk-lib-2.59.0.tgz", 1272 | "integrity": "sha512-FT6QRsou8TibQcz/TqI3rEkB9EBVF5Om5lv9MXz/5qiKehWRbKZVX0I0l/SSAvGSmdTU5Pfr+WRBTk51oNMAdw==", 1273 | "bundleDependencies": [ 1274 | "@balena/dockerignore", 1275 | "case", 1276 | "fs-extra", 1277 | "ignore", 1278 | "jsonschema", 1279 | "minimatch", 1280 | "punycode", 1281 | "semver", 1282 | "yaml" 1283 | ], 1284 | "dependencies": { 1285 | "@aws-cdk/asset-awscli-v1": "^2.2.30", 1286 | "@aws-cdk/asset-kubectl-v20": "^2.1.1", 1287 | "@aws-cdk/asset-node-proxy-agent-v5": "^2.0.38", 1288 | "@balena/dockerignore": "^1.0.2", 1289 | "case": "1.6.3", 1290 | "fs-extra": "^9.1.0", 1291 | "ignore": "^5.2.1", 1292 | "jsonschema": "^1.4.1", 1293 | "minimatch": "^3.1.2", 1294 | "punycode": "^2.1.1", 1295 | "semver": "^7.3.8", 1296 | "yaml": "1.10.2" 1297 | }, 1298 | "engines": { 1299 | "node": ">= 14.15.0" 1300 | }, 1301 | "peerDependencies": { 1302 | "constructs": "^10.0.0" 1303 | } 1304 | }, 1305 | "node_modules/aws-cdk-lib/node_modules/@balena/dockerignore": { 1306 | "version": "1.0.2", 1307 | "inBundle": true, 1308 | "license": "Apache-2.0" 1309 | }, 1310 | "node_modules/aws-cdk-lib/node_modules/at-least-node": { 1311 | "version": "1.0.0", 1312 | "inBundle": true, 1313 | "license": "ISC", 1314 | "engines": { 1315 | "node": ">= 4.0.0" 1316 | } 1317 | }, 1318 | "node_modules/aws-cdk-lib/node_modules/balanced-match": { 1319 | "version": "1.0.2", 1320 | "inBundle": true, 1321 | "license": "MIT" 1322 | }, 1323 | "node_modules/aws-cdk-lib/node_modules/brace-expansion": { 1324 | "version": "1.1.11", 1325 | "inBundle": true, 1326 | "license": "MIT", 1327 | "dependencies": { 1328 | "balanced-match": "^1.0.0", 1329 | "concat-map": "0.0.1" 1330 | } 1331 | }, 1332 | "node_modules/aws-cdk-lib/node_modules/case": { 1333 | "version": "1.6.3", 1334 | "inBundle": true, 1335 | "license": "(MIT OR GPL-3.0-or-later)", 1336 | "engines": { 1337 | "node": ">= 0.8.0" 1338 | } 1339 | }, 1340 | "node_modules/aws-cdk-lib/node_modules/concat-map": { 1341 | "version": "0.0.1", 1342 | "inBundle": true, 1343 | "license": "MIT" 1344 | }, 1345 | "node_modules/aws-cdk-lib/node_modules/fs-extra": { 1346 | "version": "9.1.0", 1347 | "inBundle": true, 1348 | "license": "MIT", 1349 | "dependencies": { 1350 | "at-least-node": "^1.0.0", 1351 | "graceful-fs": "^4.2.0", 1352 | "jsonfile": "^6.0.1", 1353 | "universalify": "^2.0.0" 1354 | }, 1355 | "engines": { 1356 | "node": ">=10" 1357 | } 1358 | }, 1359 | "node_modules/aws-cdk-lib/node_modules/graceful-fs": { 1360 | "version": "4.2.10", 1361 | "inBundle": true, 1362 | "license": "ISC" 1363 | }, 1364 | "node_modules/aws-cdk-lib/node_modules/ignore": { 1365 | "version": "5.2.1", 1366 | "inBundle": true, 1367 | "license": "MIT", 1368 | "engines": { 1369 | "node": ">= 4" 1370 | } 1371 | }, 1372 | "node_modules/aws-cdk-lib/node_modules/jsonfile": { 1373 | "version": "6.1.0", 1374 | "inBundle": true, 1375 | "license": "MIT", 1376 | "dependencies": { 1377 | "universalify": "^2.0.0" 1378 | }, 1379 | "optionalDependencies": { 1380 | "graceful-fs": "^4.1.6" 1381 | } 1382 | }, 1383 | "node_modules/aws-cdk-lib/node_modules/jsonschema": { 1384 | "version": "1.4.1", 1385 | "inBundle": true, 1386 | "license": "MIT", 1387 | "engines": { 1388 | "node": "*" 1389 | } 1390 | }, 1391 | "node_modules/aws-cdk-lib/node_modules/lru-cache": { 1392 | "version": "6.0.0", 1393 | "inBundle": true, 1394 | "license": "ISC", 1395 | "dependencies": { 1396 | "yallist": "^4.0.0" 1397 | }, 1398 | "engines": { 1399 | "node": ">=10" 1400 | } 1401 | }, 1402 | "node_modules/aws-cdk-lib/node_modules/minimatch": { 1403 | "version": "3.1.2", 1404 | "inBundle": true, 1405 | "license": "ISC", 1406 | "dependencies": { 1407 | "brace-expansion": "^1.1.7" 1408 | }, 1409 | "engines": { 1410 | "node": "*" 1411 | } 1412 | }, 1413 | "node_modules/aws-cdk-lib/node_modules/punycode": { 1414 | "version": "2.1.1", 1415 | "inBundle": true, 1416 | "license": "MIT", 1417 | "engines": { 1418 | "node": ">=6" 1419 | } 1420 | }, 1421 | "node_modules/aws-cdk-lib/node_modules/semver": { 1422 | "version": "7.3.8", 1423 | "inBundle": true, 1424 | "license": "ISC", 1425 | "dependencies": { 1426 | "lru-cache": "^6.0.0" 1427 | }, 1428 | "bin": { 1429 | "semver": "bin/semver.js" 1430 | }, 1431 | "engines": { 1432 | "node": ">=10" 1433 | } 1434 | }, 1435 | "node_modules/aws-cdk-lib/node_modules/universalify": { 1436 | "version": "2.0.0", 1437 | "inBundle": true, 1438 | "license": "MIT", 1439 | "engines": { 1440 | "node": ">= 10.0.0" 1441 | } 1442 | }, 1443 | "node_modules/aws-cdk-lib/node_modules/yallist": { 1444 | "version": "4.0.0", 1445 | "inBundle": true, 1446 | "license": "ISC" 1447 | }, 1448 | "node_modules/aws-cdk-lib/node_modules/yaml": { 1449 | "version": "1.10.2", 1450 | "inBundle": true, 1451 | "license": "ISC", 1452 | "engines": { 1453 | "node": ">= 6" 1454 | } 1455 | }, 1456 | "node_modules/babel-jest": { 1457 | "version": "29.3.1", 1458 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.3.1.tgz", 1459 | "integrity": "sha512-aard+xnMoxgjwV70t0L6wkW/3HQQtV+O0PEimxKgzNqCJnbYmroPojdP2tqKSOAt8QAKV/uSZU8851M7B5+fcA==", 1460 | "dev": true, 1461 | "dependencies": { 1462 | "@jest/transform": "^29.3.1", 1463 | "@types/babel__core": "^7.1.14", 1464 | "babel-plugin-istanbul": "^6.1.1", 1465 | "babel-preset-jest": "^29.2.0", 1466 | "chalk": "^4.0.0", 1467 | "graceful-fs": "^4.2.9", 1468 | "slash": "^3.0.0" 1469 | }, 1470 | "engines": { 1471 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1472 | }, 1473 | "peerDependencies": { 1474 | "@babel/core": "^7.8.0" 1475 | } 1476 | }, 1477 | "node_modules/babel-plugin-istanbul": { 1478 | "version": "6.1.1", 1479 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1480 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1481 | "dev": true, 1482 | "dependencies": { 1483 | "@babel/helper-plugin-utils": "^7.0.0", 1484 | "@istanbuljs/load-nyc-config": "^1.0.0", 1485 | "@istanbuljs/schema": "^0.1.2", 1486 | "istanbul-lib-instrument": "^5.0.4", 1487 | "test-exclude": "^6.0.0" 1488 | }, 1489 | "engines": { 1490 | "node": ">=8" 1491 | } 1492 | }, 1493 | "node_modules/babel-plugin-jest-hoist": { 1494 | "version": "29.2.0", 1495 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.2.0.tgz", 1496 | "integrity": "sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA==", 1497 | "dev": true, 1498 | "dependencies": { 1499 | "@babel/template": "^7.3.3", 1500 | "@babel/types": "^7.3.3", 1501 | "@types/babel__core": "^7.1.14", 1502 | "@types/babel__traverse": "^7.0.6" 1503 | }, 1504 | "engines": { 1505 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1506 | } 1507 | }, 1508 | "node_modules/babel-preset-current-node-syntax": { 1509 | "version": "1.0.1", 1510 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", 1511 | "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", 1512 | "dev": true, 1513 | "dependencies": { 1514 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1515 | "@babel/plugin-syntax-bigint": "^7.8.3", 1516 | "@babel/plugin-syntax-class-properties": "^7.8.3", 1517 | "@babel/plugin-syntax-import-meta": "^7.8.3", 1518 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1519 | "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", 1520 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1521 | "@babel/plugin-syntax-numeric-separator": "^7.8.3", 1522 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1523 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1524 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1525 | "@babel/plugin-syntax-top-level-await": "^7.8.3" 1526 | }, 1527 | "peerDependencies": { 1528 | "@babel/core": "^7.0.0" 1529 | } 1530 | }, 1531 | "node_modules/babel-preset-jest": { 1532 | "version": "29.2.0", 1533 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.2.0.tgz", 1534 | "integrity": "sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==", 1535 | "dev": true, 1536 | "dependencies": { 1537 | "babel-plugin-jest-hoist": "^29.2.0", 1538 | "babel-preset-current-node-syntax": "^1.0.0" 1539 | }, 1540 | "engines": { 1541 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1542 | }, 1543 | "peerDependencies": { 1544 | "@babel/core": "^7.0.0" 1545 | } 1546 | }, 1547 | "node_modules/balanced-match": { 1548 | "version": "1.0.2", 1549 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1550 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1551 | "dev": true 1552 | }, 1553 | "node_modules/brace-expansion": { 1554 | "version": "1.1.11", 1555 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1556 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1557 | "dev": true, 1558 | "dependencies": { 1559 | "balanced-match": "^1.0.0", 1560 | "concat-map": "0.0.1" 1561 | } 1562 | }, 1563 | "node_modules/braces": { 1564 | "version": "3.0.2", 1565 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1566 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1567 | "dev": true, 1568 | "dependencies": { 1569 | "fill-range": "^7.0.1" 1570 | }, 1571 | "engines": { 1572 | "node": ">=8" 1573 | } 1574 | }, 1575 | "node_modules/browserslist": { 1576 | "version": "4.21.4", 1577 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", 1578 | "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", 1579 | "dev": true, 1580 | "funding": [ 1581 | { 1582 | "type": "opencollective", 1583 | "url": "https://opencollective.com/browserslist" 1584 | }, 1585 | { 1586 | "type": "tidelift", 1587 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1588 | } 1589 | ], 1590 | "dependencies": { 1591 | "caniuse-lite": "^1.0.30001400", 1592 | "electron-to-chromium": "^1.4.251", 1593 | "node-releases": "^2.0.6", 1594 | "update-browserslist-db": "^1.0.9" 1595 | }, 1596 | "bin": { 1597 | "browserslist": "cli.js" 1598 | }, 1599 | "engines": { 1600 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1601 | } 1602 | }, 1603 | "node_modules/bs-logger": { 1604 | "version": "0.2.6", 1605 | "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", 1606 | "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", 1607 | "dev": true, 1608 | "dependencies": { 1609 | "fast-json-stable-stringify": "2.x" 1610 | }, 1611 | "engines": { 1612 | "node": ">= 6" 1613 | } 1614 | }, 1615 | "node_modules/bser": { 1616 | "version": "2.1.1", 1617 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1618 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1619 | "dev": true, 1620 | "dependencies": { 1621 | "node-int64": "^0.4.0" 1622 | } 1623 | }, 1624 | "node_modules/buffer-from": { 1625 | "version": "1.1.2", 1626 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1627 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" 1628 | }, 1629 | "node_modules/callsites": { 1630 | "version": "3.1.0", 1631 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1632 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1633 | "dev": true, 1634 | "engines": { 1635 | "node": ">=6" 1636 | } 1637 | }, 1638 | "node_modules/camelcase": { 1639 | "version": "5.3.1", 1640 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1641 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1642 | "dev": true, 1643 | "engines": { 1644 | "node": ">=6" 1645 | } 1646 | }, 1647 | "node_modules/caniuse-lite": { 1648 | "version": "1.0.30001441", 1649 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz", 1650 | "integrity": "sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==", 1651 | "dev": true, 1652 | "funding": [ 1653 | { 1654 | "type": "opencollective", 1655 | "url": "https://opencollective.com/browserslist" 1656 | }, 1657 | { 1658 | "type": "tidelift", 1659 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1660 | } 1661 | ] 1662 | }, 1663 | "node_modules/cdk-nag": { 1664 | "version": "2.21.64", 1665 | "resolved": "https://registry.npmjs.org/cdk-nag/-/cdk-nag-2.21.64.tgz", 1666 | "integrity": "sha512-9HCbm22cYeHxED7v+yX3o2pMdIt6pvWMYVmtSH6tgn/Fm6T+JVcAaAYj1ogvOKRMSEcEDyIGgy7YE0h16Ks8AQ==", 1667 | "peerDependencies": { 1668 | "aws-cdk-lib": "^2.45.0", 1669 | "constructs": "^10.0.5" 1670 | } 1671 | }, 1672 | "node_modules/chalk": { 1673 | "version": "4.1.2", 1674 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1675 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1676 | "dev": true, 1677 | "dependencies": { 1678 | "ansi-styles": "^4.1.0", 1679 | "supports-color": "^7.1.0" 1680 | }, 1681 | "engines": { 1682 | "node": ">=10" 1683 | }, 1684 | "funding": { 1685 | "url": "https://github.com/chalk/chalk?sponsor=1" 1686 | } 1687 | }, 1688 | "node_modules/char-regex": { 1689 | "version": "1.0.2", 1690 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 1691 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 1692 | "dev": true, 1693 | "engines": { 1694 | "node": ">=10" 1695 | } 1696 | }, 1697 | "node_modules/ci-info": { 1698 | "version": "3.7.1", 1699 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.1.tgz", 1700 | "integrity": "sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==", 1701 | "dev": true, 1702 | "funding": [ 1703 | { 1704 | "type": "github", 1705 | "url": "https://github.com/sponsors/sibiraj-s" 1706 | } 1707 | ], 1708 | "engines": { 1709 | "node": ">=8" 1710 | } 1711 | }, 1712 | "node_modules/cjs-module-lexer": { 1713 | "version": "1.2.2", 1714 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", 1715 | "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", 1716 | "dev": true 1717 | }, 1718 | "node_modules/cliui": { 1719 | "version": "8.0.1", 1720 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1721 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1722 | "dev": true, 1723 | "dependencies": { 1724 | "string-width": "^4.2.0", 1725 | "strip-ansi": "^6.0.1", 1726 | "wrap-ansi": "^7.0.0" 1727 | }, 1728 | "engines": { 1729 | "node": ">=12" 1730 | } 1731 | }, 1732 | "node_modules/co": { 1733 | "version": "4.6.0", 1734 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 1735 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 1736 | "dev": true, 1737 | "engines": { 1738 | "iojs": ">= 1.0.0", 1739 | "node": ">= 0.12.0" 1740 | } 1741 | }, 1742 | "node_modules/collect-v8-coverage": { 1743 | "version": "1.0.1", 1744 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", 1745 | "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", 1746 | "dev": true 1747 | }, 1748 | "node_modules/color-convert": { 1749 | "version": "2.0.1", 1750 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1751 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1752 | "dev": true, 1753 | "dependencies": { 1754 | "color-name": "~1.1.4" 1755 | }, 1756 | "engines": { 1757 | "node": ">=7.0.0" 1758 | } 1759 | }, 1760 | "node_modules/color-name": { 1761 | "version": "1.1.4", 1762 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1763 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1764 | "dev": true 1765 | }, 1766 | "node_modules/concat-map": { 1767 | "version": "0.0.1", 1768 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1769 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1770 | "dev": true 1771 | }, 1772 | "node_modules/constructs": { 1773 | "version": "10.1.209", 1774 | "resolved": "https://registry.npmjs.org/constructs/-/constructs-10.1.209.tgz", 1775 | "integrity": "sha512-BLvvM9bsKg4AGgeHWzT2elFh4UCFgmF4JyRjFcUMmHPJzgmErSwzUen/jVP4kI28nahakJXouiff6KZt0ey+3Q==", 1776 | "engines": { 1777 | "node": ">= 14.17.0" 1778 | } 1779 | }, 1780 | "node_modules/convert-source-map": { 1781 | "version": "2.0.0", 1782 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1783 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1784 | "dev": true 1785 | }, 1786 | "node_modules/create-require": { 1787 | "version": "1.1.1", 1788 | "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", 1789 | "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", 1790 | "dev": true 1791 | }, 1792 | "node_modules/cross-spawn": { 1793 | "version": "7.0.3", 1794 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1795 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1796 | "dev": true, 1797 | "dependencies": { 1798 | "path-key": "^3.1.0", 1799 | "shebang-command": "^2.0.0", 1800 | "which": "^2.0.1" 1801 | }, 1802 | "engines": { 1803 | "node": ">= 8" 1804 | } 1805 | }, 1806 | "node_modules/debug": { 1807 | "version": "4.3.4", 1808 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1809 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1810 | "dev": true, 1811 | "dependencies": { 1812 | "ms": "2.1.2" 1813 | }, 1814 | "engines": { 1815 | "node": ">=6.0" 1816 | }, 1817 | "peerDependenciesMeta": { 1818 | "supports-color": { 1819 | "optional": true 1820 | } 1821 | } 1822 | }, 1823 | "node_modules/dedent": { 1824 | "version": "0.7.0", 1825 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", 1826 | "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", 1827 | "dev": true 1828 | }, 1829 | "node_modules/deepmerge": { 1830 | "version": "4.2.2", 1831 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", 1832 | "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", 1833 | "dev": true, 1834 | "engines": { 1835 | "node": ">=0.10.0" 1836 | } 1837 | }, 1838 | "node_modules/detect-newline": { 1839 | "version": "3.1.0", 1840 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 1841 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 1842 | "dev": true, 1843 | "engines": { 1844 | "node": ">=8" 1845 | } 1846 | }, 1847 | "node_modules/diff": { 1848 | "version": "4.0.2", 1849 | "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", 1850 | "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", 1851 | "dev": true, 1852 | "engines": { 1853 | "node": ">=0.3.1" 1854 | } 1855 | }, 1856 | "node_modules/diff-sequences": { 1857 | "version": "29.3.1", 1858 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.3.1.tgz", 1859 | "integrity": "sha512-hlM3QR272NXCi4pq+N4Kok4kOp6EsgOM3ZSpJI7Da3UAs+Ttsi8MRmB6trM/lhyzUxGfOgnpkHtgqm5Q/CTcfQ==", 1860 | "dev": true, 1861 | "engines": { 1862 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1863 | } 1864 | }, 1865 | "node_modules/electron-to-chromium": { 1866 | "version": "1.4.284", 1867 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", 1868 | "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", 1869 | "dev": true 1870 | }, 1871 | "node_modules/emittery": { 1872 | "version": "0.13.1", 1873 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 1874 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 1875 | "dev": true, 1876 | "engines": { 1877 | "node": ">=12" 1878 | }, 1879 | "funding": { 1880 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1881 | } 1882 | }, 1883 | "node_modules/emoji-regex": { 1884 | "version": "8.0.0", 1885 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1886 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1887 | "dev": true 1888 | }, 1889 | "node_modules/error-ex": { 1890 | "version": "1.3.2", 1891 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1892 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1893 | "dev": true, 1894 | "dependencies": { 1895 | "is-arrayish": "^0.2.1" 1896 | } 1897 | }, 1898 | "node_modules/escalade": { 1899 | "version": "3.1.1", 1900 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1901 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1902 | "dev": true, 1903 | "engines": { 1904 | "node": ">=6" 1905 | } 1906 | }, 1907 | "node_modules/escape-string-regexp": { 1908 | "version": "2.0.0", 1909 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 1910 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 1911 | "dev": true, 1912 | "engines": { 1913 | "node": ">=8" 1914 | } 1915 | }, 1916 | "node_modules/esprima": { 1917 | "version": "4.0.1", 1918 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1919 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1920 | "dev": true, 1921 | "bin": { 1922 | "esparse": "bin/esparse.js", 1923 | "esvalidate": "bin/esvalidate.js" 1924 | }, 1925 | "engines": { 1926 | "node": ">=4" 1927 | } 1928 | }, 1929 | "node_modules/execa": { 1930 | "version": "5.1.1", 1931 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1932 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1933 | "dev": true, 1934 | "dependencies": { 1935 | "cross-spawn": "^7.0.3", 1936 | "get-stream": "^6.0.0", 1937 | "human-signals": "^2.1.0", 1938 | "is-stream": "^2.0.0", 1939 | "merge-stream": "^2.0.0", 1940 | "npm-run-path": "^4.0.1", 1941 | "onetime": "^5.1.2", 1942 | "signal-exit": "^3.0.3", 1943 | "strip-final-newline": "^2.0.0" 1944 | }, 1945 | "engines": { 1946 | "node": ">=10" 1947 | }, 1948 | "funding": { 1949 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1950 | } 1951 | }, 1952 | "node_modules/exit": { 1953 | "version": "0.1.2", 1954 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 1955 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 1956 | "dev": true, 1957 | "engines": { 1958 | "node": ">= 0.8.0" 1959 | } 1960 | }, 1961 | "node_modules/expect": { 1962 | "version": "29.3.1", 1963 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.3.1.tgz", 1964 | "integrity": "sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA==", 1965 | "dev": true, 1966 | "dependencies": { 1967 | "@jest/expect-utils": "^29.3.1", 1968 | "jest-get-type": "^29.2.0", 1969 | "jest-matcher-utils": "^29.3.1", 1970 | "jest-message-util": "^29.3.1", 1971 | "jest-util": "^29.3.1" 1972 | }, 1973 | "engines": { 1974 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1975 | } 1976 | }, 1977 | "node_modules/fast-json-stable-stringify": { 1978 | "version": "2.1.0", 1979 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1980 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1981 | "dev": true 1982 | }, 1983 | "node_modules/fb-watchman": { 1984 | "version": "2.0.2", 1985 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 1986 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 1987 | "dev": true, 1988 | "dependencies": { 1989 | "bser": "2.1.1" 1990 | } 1991 | }, 1992 | "node_modules/fill-range": { 1993 | "version": "7.0.1", 1994 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1995 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1996 | "dev": true, 1997 | "dependencies": { 1998 | "to-regex-range": "^5.0.1" 1999 | }, 2000 | "engines": { 2001 | "node": ">=8" 2002 | } 2003 | }, 2004 | "node_modules/find-up": { 2005 | "version": "4.1.0", 2006 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 2007 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 2008 | "dev": true, 2009 | "dependencies": { 2010 | "locate-path": "^5.0.0", 2011 | "path-exists": "^4.0.0" 2012 | }, 2013 | "engines": { 2014 | "node": ">=8" 2015 | } 2016 | }, 2017 | "node_modules/fs.realpath": { 2018 | "version": "1.0.0", 2019 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2020 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2021 | "dev": true 2022 | }, 2023 | "node_modules/fsevents": { 2024 | "version": "2.3.2", 2025 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 2026 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 2027 | "dev": true, 2028 | "hasInstallScript": true, 2029 | "optional": true, 2030 | "os": [ 2031 | "darwin" 2032 | ], 2033 | "engines": { 2034 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2035 | } 2036 | }, 2037 | "node_modules/function-bind": { 2038 | "version": "1.1.1", 2039 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 2040 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 2041 | "dev": true 2042 | }, 2043 | "node_modules/gensync": { 2044 | "version": "1.0.0-beta.2", 2045 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2046 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2047 | "dev": true, 2048 | "engines": { 2049 | "node": ">=6.9.0" 2050 | } 2051 | }, 2052 | "node_modules/get-caller-file": { 2053 | "version": "2.0.5", 2054 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 2055 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 2056 | "dev": true, 2057 | "engines": { 2058 | "node": "6.* || 8.* || >= 10.*" 2059 | } 2060 | }, 2061 | "node_modules/get-package-type": { 2062 | "version": "0.1.0", 2063 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 2064 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 2065 | "dev": true, 2066 | "engines": { 2067 | "node": ">=8.0.0" 2068 | } 2069 | }, 2070 | "node_modules/get-stream": { 2071 | "version": "6.0.1", 2072 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 2073 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 2074 | "dev": true, 2075 | "engines": { 2076 | "node": ">=10" 2077 | }, 2078 | "funding": { 2079 | "url": "https://github.com/sponsors/sindresorhus" 2080 | } 2081 | }, 2082 | "node_modules/glob": { 2083 | "version": "7.2.3", 2084 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2085 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2086 | "dev": true, 2087 | "dependencies": { 2088 | "fs.realpath": "^1.0.0", 2089 | "inflight": "^1.0.4", 2090 | "inherits": "2", 2091 | "minimatch": "^3.1.1", 2092 | "once": "^1.3.0", 2093 | "path-is-absolute": "^1.0.0" 2094 | }, 2095 | "engines": { 2096 | "node": "*" 2097 | }, 2098 | "funding": { 2099 | "url": "https://github.com/sponsors/isaacs" 2100 | } 2101 | }, 2102 | "node_modules/globals": { 2103 | "version": "11.12.0", 2104 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 2105 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 2106 | "dev": true, 2107 | "engines": { 2108 | "node": ">=4" 2109 | } 2110 | }, 2111 | "node_modules/graceful-fs": { 2112 | "version": "4.2.10", 2113 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", 2114 | "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", 2115 | "dev": true 2116 | }, 2117 | "node_modules/has": { 2118 | "version": "1.0.3", 2119 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2120 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2121 | "dev": true, 2122 | "dependencies": { 2123 | "function-bind": "^1.1.1" 2124 | }, 2125 | "engines": { 2126 | "node": ">= 0.4.0" 2127 | } 2128 | }, 2129 | "node_modules/has-flag": { 2130 | "version": "4.0.0", 2131 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2132 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2133 | "dev": true, 2134 | "engines": { 2135 | "node": ">=8" 2136 | } 2137 | }, 2138 | "node_modules/html-escaper": { 2139 | "version": "2.0.2", 2140 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 2141 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 2142 | "dev": true 2143 | }, 2144 | "node_modules/human-signals": { 2145 | "version": "2.1.0", 2146 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 2147 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 2148 | "dev": true, 2149 | "engines": { 2150 | "node": ">=10.17.0" 2151 | } 2152 | }, 2153 | "node_modules/import-local": { 2154 | "version": "3.1.0", 2155 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", 2156 | "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", 2157 | "dev": true, 2158 | "dependencies": { 2159 | "pkg-dir": "^4.2.0", 2160 | "resolve-cwd": "^3.0.0" 2161 | }, 2162 | "bin": { 2163 | "import-local-fixture": "fixtures/cli.js" 2164 | }, 2165 | "engines": { 2166 | "node": ">=8" 2167 | }, 2168 | "funding": { 2169 | "url": "https://github.com/sponsors/sindresorhus" 2170 | } 2171 | }, 2172 | "node_modules/imurmurhash": { 2173 | "version": "0.1.4", 2174 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2175 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2176 | "dev": true, 2177 | "engines": { 2178 | "node": ">=0.8.19" 2179 | } 2180 | }, 2181 | "node_modules/inflight": { 2182 | "version": "1.0.6", 2183 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2184 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2185 | "dev": true, 2186 | "dependencies": { 2187 | "once": "^1.3.0", 2188 | "wrappy": "1" 2189 | } 2190 | }, 2191 | "node_modules/inherits": { 2192 | "version": "2.0.4", 2193 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2194 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2195 | "dev": true 2196 | }, 2197 | "node_modules/is-arrayish": { 2198 | "version": "0.2.1", 2199 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2200 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2201 | "dev": true 2202 | }, 2203 | "node_modules/is-core-module": { 2204 | "version": "2.11.0", 2205 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", 2206 | "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", 2207 | "dev": true, 2208 | "dependencies": { 2209 | "has": "^1.0.3" 2210 | }, 2211 | "funding": { 2212 | "url": "https://github.com/sponsors/ljharb" 2213 | } 2214 | }, 2215 | "node_modules/is-fullwidth-code-point": { 2216 | "version": "3.0.0", 2217 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2218 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2219 | "dev": true, 2220 | "engines": { 2221 | "node": ">=8" 2222 | } 2223 | }, 2224 | "node_modules/is-generator-fn": { 2225 | "version": "2.1.0", 2226 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 2227 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 2228 | "dev": true, 2229 | "engines": { 2230 | "node": ">=6" 2231 | } 2232 | }, 2233 | "node_modules/is-number": { 2234 | "version": "7.0.0", 2235 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2236 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2237 | "dev": true, 2238 | "engines": { 2239 | "node": ">=0.12.0" 2240 | } 2241 | }, 2242 | "node_modules/is-stream": { 2243 | "version": "2.0.1", 2244 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2245 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2246 | "dev": true, 2247 | "engines": { 2248 | "node": ">=8" 2249 | }, 2250 | "funding": { 2251 | "url": "https://github.com/sponsors/sindresorhus" 2252 | } 2253 | }, 2254 | "node_modules/isexe": { 2255 | "version": "2.0.0", 2256 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2257 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2258 | "dev": true 2259 | }, 2260 | "node_modules/istanbul-lib-coverage": { 2261 | "version": "3.2.0", 2262 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", 2263 | "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", 2264 | "dev": true, 2265 | "engines": { 2266 | "node": ">=8" 2267 | } 2268 | }, 2269 | "node_modules/istanbul-lib-instrument": { 2270 | "version": "5.2.1", 2271 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 2272 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 2273 | "dev": true, 2274 | "dependencies": { 2275 | "@babel/core": "^7.12.3", 2276 | "@babel/parser": "^7.14.7", 2277 | "@istanbuljs/schema": "^0.1.2", 2278 | "istanbul-lib-coverage": "^3.2.0", 2279 | "semver": "^6.3.0" 2280 | }, 2281 | "engines": { 2282 | "node": ">=8" 2283 | } 2284 | }, 2285 | "node_modules/istanbul-lib-report": { 2286 | "version": "3.0.0", 2287 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", 2288 | "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", 2289 | "dev": true, 2290 | "dependencies": { 2291 | "istanbul-lib-coverage": "^3.0.0", 2292 | "make-dir": "^3.0.0", 2293 | "supports-color": "^7.1.0" 2294 | }, 2295 | "engines": { 2296 | "node": ">=8" 2297 | } 2298 | }, 2299 | "node_modules/istanbul-lib-source-maps": { 2300 | "version": "4.0.1", 2301 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 2302 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 2303 | "dev": true, 2304 | "dependencies": { 2305 | "debug": "^4.1.1", 2306 | "istanbul-lib-coverage": "^3.0.0", 2307 | "source-map": "^0.6.1" 2308 | }, 2309 | "engines": { 2310 | "node": ">=10" 2311 | } 2312 | }, 2313 | "node_modules/istanbul-reports": { 2314 | "version": "3.1.5", 2315 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", 2316 | "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", 2317 | "dev": true, 2318 | "dependencies": { 2319 | "html-escaper": "^2.0.0", 2320 | "istanbul-lib-report": "^3.0.0" 2321 | }, 2322 | "engines": { 2323 | "node": ">=8" 2324 | } 2325 | }, 2326 | "node_modules/jest": { 2327 | "version": "29.3.1", 2328 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.3.1.tgz", 2329 | "integrity": "sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==", 2330 | "dev": true, 2331 | "dependencies": { 2332 | "@jest/core": "^29.3.1", 2333 | "@jest/types": "^29.3.1", 2334 | "import-local": "^3.0.2", 2335 | "jest-cli": "^29.3.1" 2336 | }, 2337 | "bin": { 2338 | "jest": "bin/jest.js" 2339 | }, 2340 | "engines": { 2341 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2342 | }, 2343 | "peerDependencies": { 2344 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2345 | }, 2346 | "peerDependenciesMeta": { 2347 | "node-notifier": { 2348 | "optional": true 2349 | } 2350 | } 2351 | }, 2352 | "node_modules/jest-changed-files": { 2353 | "version": "29.2.0", 2354 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.2.0.tgz", 2355 | "integrity": "sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==", 2356 | "dev": true, 2357 | "dependencies": { 2358 | "execa": "^5.0.0", 2359 | "p-limit": "^3.1.0" 2360 | }, 2361 | "engines": { 2362 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2363 | } 2364 | }, 2365 | "node_modules/jest-circus": { 2366 | "version": "29.3.1", 2367 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.3.1.tgz", 2368 | "integrity": "sha512-wpr26sEvwb3qQQbdlmei+gzp6yoSSoSL6GsLPxnuayZSMrSd5Ka7IjAvatpIernBvT2+Ic6RLTg+jSebScmasg==", 2369 | "dev": true, 2370 | "dependencies": { 2371 | "@jest/environment": "^29.3.1", 2372 | "@jest/expect": "^29.3.1", 2373 | "@jest/test-result": "^29.3.1", 2374 | "@jest/types": "^29.3.1", 2375 | "@types/node": "*", 2376 | "chalk": "^4.0.0", 2377 | "co": "^4.6.0", 2378 | "dedent": "^0.7.0", 2379 | "is-generator-fn": "^2.0.0", 2380 | "jest-each": "^29.3.1", 2381 | "jest-matcher-utils": "^29.3.1", 2382 | "jest-message-util": "^29.3.1", 2383 | "jest-runtime": "^29.3.1", 2384 | "jest-snapshot": "^29.3.1", 2385 | "jest-util": "^29.3.1", 2386 | "p-limit": "^3.1.0", 2387 | "pretty-format": "^29.3.1", 2388 | "slash": "^3.0.0", 2389 | "stack-utils": "^2.0.3" 2390 | }, 2391 | "engines": { 2392 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2393 | } 2394 | }, 2395 | "node_modules/jest-cli": { 2396 | "version": "29.3.1", 2397 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.3.1.tgz", 2398 | "integrity": "sha512-TO/ewvwyvPOiBBuWZ0gm04z3WWP8TIK8acgPzE4IxgsLKQgb377NYGrQLc3Wl/7ndWzIH2CDNNsUjGxwLL43VQ==", 2399 | "dev": true, 2400 | "dependencies": { 2401 | "@jest/core": "^29.3.1", 2402 | "@jest/test-result": "^29.3.1", 2403 | "@jest/types": "^29.3.1", 2404 | "chalk": "^4.0.0", 2405 | "exit": "^0.1.2", 2406 | "graceful-fs": "^4.2.9", 2407 | "import-local": "^3.0.2", 2408 | "jest-config": "^29.3.1", 2409 | "jest-util": "^29.3.1", 2410 | "jest-validate": "^29.3.1", 2411 | "prompts": "^2.0.1", 2412 | "yargs": "^17.3.1" 2413 | }, 2414 | "bin": { 2415 | "jest": "bin/jest.js" 2416 | }, 2417 | "engines": { 2418 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2419 | }, 2420 | "peerDependencies": { 2421 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2422 | }, 2423 | "peerDependenciesMeta": { 2424 | "node-notifier": { 2425 | "optional": true 2426 | } 2427 | } 2428 | }, 2429 | "node_modules/jest-config": { 2430 | "version": "29.3.1", 2431 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.3.1.tgz", 2432 | "integrity": "sha512-y0tFHdj2WnTEhxmGUK1T7fgLen7YK4RtfvpLFBXfQkh2eMJAQq24Vx9472lvn5wg0MAO6B+iPfJfzdR9hJYalg==", 2433 | "dev": true, 2434 | "dependencies": { 2435 | "@babel/core": "^7.11.6", 2436 | "@jest/test-sequencer": "^29.3.1", 2437 | "@jest/types": "^29.3.1", 2438 | "babel-jest": "^29.3.1", 2439 | "chalk": "^4.0.0", 2440 | "ci-info": "^3.2.0", 2441 | "deepmerge": "^4.2.2", 2442 | "glob": "^7.1.3", 2443 | "graceful-fs": "^4.2.9", 2444 | "jest-circus": "^29.3.1", 2445 | "jest-environment-node": "^29.3.1", 2446 | "jest-get-type": "^29.2.0", 2447 | "jest-regex-util": "^29.2.0", 2448 | "jest-resolve": "^29.3.1", 2449 | "jest-runner": "^29.3.1", 2450 | "jest-util": "^29.3.1", 2451 | "jest-validate": "^29.3.1", 2452 | "micromatch": "^4.0.4", 2453 | "parse-json": "^5.2.0", 2454 | "pretty-format": "^29.3.1", 2455 | "slash": "^3.0.0", 2456 | "strip-json-comments": "^3.1.1" 2457 | }, 2458 | "engines": { 2459 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2460 | }, 2461 | "peerDependencies": { 2462 | "@types/node": "*", 2463 | "ts-node": ">=9.0.0" 2464 | }, 2465 | "peerDependenciesMeta": { 2466 | "@types/node": { 2467 | "optional": true 2468 | }, 2469 | "ts-node": { 2470 | "optional": true 2471 | } 2472 | } 2473 | }, 2474 | "node_modules/jest-diff": { 2475 | "version": "29.3.1", 2476 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.3.1.tgz", 2477 | "integrity": "sha512-vU8vyiO7568tmin2lA3r2DP8oRvzhvRcD4DjpXc6uGveQodyk7CKLhQlCSiwgx3g0pFaE88/KLZ0yaTWMc4Uiw==", 2478 | "dev": true, 2479 | "dependencies": { 2480 | "chalk": "^4.0.0", 2481 | "diff-sequences": "^29.3.1", 2482 | "jest-get-type": "^29.2.0", 2483 | "pretty-format": "^29.3.1" 2484 | }, 2485 | "engines": { 2486 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2487 | } 2488 | }, 2489 | "node_modules/jest-docblock": { 2490 | "version": "29.2.0", 2491 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.2.0.tgz", 2492 | "integrity": "sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==", 2493 | "dev": true, 2494 | "dependencies": { 2495 | "detect-newline": "^3.0.0" 2496 | }, 2497 | "engines": { 2498 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2499 | } 2500 | }, 2501 | "node_modules/jest-each": { 2502 | "version": "29.3.1", 2503 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.3.1.tgz", 2504 | "integrity": "sha512-qrZH7PmFB9rEzCSl00BWjZYuS1BSOH8lLuC0azQE9lQrAx3PWGKHTDudQiOSwIy5dGAJh7KA0ScYlCP7JxvFYA==", 2505 | "dev": true, 2506 | "dependencies": { 2507 | "@jest/types": "^29.3.1", 2508 | "chalk": "^4.0.0", 2509 | "jest-get-type": "^29.2.0", 2510 | "jest-util": "^29.3.1", 2511 | "pretty-format": "^29.3.1" 2512 | }, 2513 | "engines": { 2514 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2515 | } 2516 | }, 2517 | "node_modules/jest-environment-node": { 2518 | "version": "29.3.1", 2519 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.3.1.tgz", 2520 | "integrity": "sha512-xm2THL18Xf5sIHoU7OThBPtuH6Lerd+Y1NLYiZJlkE3hbE+7N7r8uvHIl/FkZ5ymKXJe/11SQuf3fv4v6rUMag==", 2521 | "dev": true, 2522 | "dependencies": { 2523 | "@jest/environment": "^29.3.1", 2524 | "@jest/fake-timers": "^29.3.1", 2525 | "@jest/types": "^29.3.1", 2526 | "@types/node": "*", 2527 | "jest-mock": "^29.3.1", 2528 | "jest-util": "^29.3.1" 2529 | }, 2530 | "engines": { 2531 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2532 | } 2533 | }, 2534 | "node_modules/jest-get-type": { 2535 | "version": "29.2.0", 2536 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.2.0.tgz", 2537 | "integrity": "sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==", 2538 | "dev": true, 2539 | "engines": { 2540 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2541 | } 2542 | }, 2543 | "node_modules/jest-haste-map": { 2544 | "version": "29.3.1", 2545 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.3.1.tgz", 2546 | "integrity": "sha512-/FFtvoG1xjbbPXQLFef+WSU4yrc0fc0Dds6aRPBojUid7qlPqZvxdUBA03HW0fnVHXVCnCdkuoghYItKNzc/0A==", 2547 | "dev": true, 2548 | "dependencies": { 2549 | "@jest/types": "^29.3.1", 2550 | "@types/graceful-fs": "^4.1.3", 2551 | "@types/node": "*", 2552 | "anymatch": "^3.0.3", 2553 | "fb-watchman": "^2.0.0", 2554 | "graceful-fs": "^4.2.9", 2555 | "jest-regex-util": "^29.2.0", 2556 | "jest-util": "^29.3.1", 2557 | "jest-worker": "^29.3.1", 2558 | "micromatch": "^4.0.4", 2559 | "walker": "^1.0.8" 2560 | }, 2561 | "engines": { 2562 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2563 | }, 2564 | "optionalDependencies": { 2565 | "fsevents": "^2.3.2" 2566 | } 2567 | }, 2568 | "node_modules/jest-leak-detector": { 2569 | "version": "29.3.1", 2570 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.3.1.tgz", 2571 | "integrity": "sha512-3DA/VVXj4zFOPagGkuqHnSQf1GZBmmlagpguxEERO6Pla2g84Q1MaVIB3YMxgUaFIaYag8ZnTyQgiZ35YEqAQA==", 2572 | "dev": true, 2573 | "dependencies": { 2574 | "jest-get-type": "^29.2.0", 2575 | "pretty-format": "^29.3.1" 2576 | }, 2577 | "engines": { 2578 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2579 | } 2580 | }, 2581 | "node_modules/jest-matcher-utils": { 2582 | "version": "29.3.1", 2583 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.3.1.tgz", 2584 | "integrity": "sha512-fkRMZUAScup3txIKfMe3AIZZmPEjWEdsPJFK3AIy5qRohWqQFg1qrmKfYXR9qEkNc7OdAu2N4KPHibEmy4HPeQ==", 2585 | "dev": true, 2586 | "dependencies": { 2587 | "chalk": "^4.0.0", 2588 | "jest-diff": "^29.3.1", 2589 | "jest-get-type": "^29.2.0", 2590 | "pretty-format": "^29.3.1" 2591 | }, 2592 | "engines": { 2593 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2594 | } 2595 | }, 2596 | "node_modules/jest-message-util": { 2597 | "version": "29.3.1", 2598 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.3.1.tgz", 2599 | "integrity": "sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA==", 2600 | "dev": true, 2601 | "dependencies": { 2602 | "@babel/code-frame": "^7.12.13", 2603 | "@jest/types": "^29.3.1", 2604 | "@types/stack-utils": "^2.0.0", 2605 | "chalk": "^4.0.0", 2606 | "graceful-fs": "^4.2.9", 2607 | "micromatch": "^4.0.4", 2608 | "pretty-format": "^29.3.1", 2609 | "slash": "^3.0.0", 2610 | "stack-utils": "^2.0.3" 2611 | }, 2612 | "engines": { 2613 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2614 | } 2615 | }, 2616 | "node_modules/jest-mock": { 2617 | "version": "29.3.1", 2618 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.3.1.tgz", 2619 | "integrity": "sha512-H8/qFDtDVMFvFP4X8NuOT3XRDzOUTz+FeACjufHzsOIBAxivLqkB1PoLCaJx9iPPQ8dZThHPp/G3WRWyMgA3JA==", 2620 | "dev": true, 2621 | "dependencies": { 2622 | "@jest/types": "^29.3.1", 2623 | "@types/node": "*", 2624 | "jest-util": "^29.3.1" 2625 | }, 2626 | "engines": { 2627 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2628 | } 2629 | }, 2630 | "node_modules/jest-pnp-resolver": { 2631 | "version": "1.2.3", 2632 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 2633 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 2634 | "dev": true, 2635 | "engines": { 2636 | "node": ">=6" 2637 | }, 2638 | "peerDependencies": { 2639 | "jest-resolve": "*" 2640 | }, 2641 | "peerDependenciesMeta": { 2642 | "jest-resolve": { 2643 | "optional": true 2644 | } 2645 | } 2646 | }, 2647 | "node_modules/jest-regex-util": { 2648 | "version": "29.2.0", 2649 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.2.0.tgz", 2650 | "integrity": "sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==", 2651 | "dev": true, 2652 | "engines": { 2653 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2654 | } 2655 | }, 2656 | "node_modules/jest-resolve": { 2657 | "version": "29.3.1", 2658 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.3.1.tgz", 2659 | "integrity": "sha512-amXJgH/Ng712w3Uz5gqzFBBjxV8WFLSmNjoreBGMqxgCz5cH7swmBZzgBaCIOsvb0NbpJ0vgaSFdJqMdT+rADw==", 2660 | "dev": true, 2661 | "dependencies": { 2662 | "chalk": "^4.0.0", 2663 | "graceful-fs": "^4.2.9", 2664 | "jest-haste-map": "^29.3.1", 2665 | "jest-pnp-resolver": "^1.2.2", 2666 | "jest-util": "^29.3.1", 2667 | "jest-validate": "^29.3.1", 2668 | "resolve": "^1.20.0", 2669 | "resolve.exports": "^1.1.0", 2670 | "slash": "^3.0.0" 2671 | }, 2672 | "engines": { 2673 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2674 | } 2675 | }, 2676 | "node_modules/jest-resolve-dependencies": { 2677 | "version": "29.3.1", 2678 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.3.1.tgz", 2679 | "integrity": "sha512-Vk0cYq0byRw2WluNmNWGqPeRnZ3p3hHmjJMp2dyyZeYIfiBskwq4rpiuGFR6QGAdbj58WC7HN4hQHjf2mpvrLA==", 2680 | "dev": true, 2681 | "dependencies": { 2682 | "jest-regex-util": "^29.2.0", 2683 | "jest-snapshot": "^29.3.1" 2684 | }, 2685 | "engines": { 2686 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2687 | } 2688 | }, 2689 | "node_modules/jest-runner": { 2690 | "version": "29.3.1", 2691 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.3.1.tgz", 2692 | "integrity": "sha512-oFvcwRNrKMtE6u9+AQPMATxFcTySyKfLhvso7Sdk/rNpbhg4g2GAGCopiInk1OP4q6gz3n6MajW4+fnHWlU3bA==", 2693 | "dev": true, 2694 | "dependencies": { 2695 | "@jest/console": "^29.3.1", 2696 | "@jest/environment": "^29.3.1", 2697 | "@jest/test-result": "^29.3.1", 2698 | "@jest/transform": "^29.3.1", 2699 | "@jest/types": "^29.3.1", 2700 | "@types/node": "*", 2701 | "chalk": "^4.0.0", 2702 | "emittery": "^0.13.1", 2703 | "graceful-fs": "^4.2.9", 2704 | "jest-docblock": "^29.2.0", 2705 | "jest-environment-node": "^29.3.1", 2706 | "jest-haste-map": "^29.3.1", 2707 | "jest-leak-detector": "^29.3.1", 2708 | "jest-message-util": "^29.3.1", 2709 | "jest-resolve": "^29.3.1", 2710 | "jest-runtime": "^29.3.1", 2711 | "jest-util": "^29.3.1", 2712 | "jest-watcher": "^29.3.1", 2713 | "jest-worker": "^29.3.1", 2714 | "p-limit": "^3.1.0", 2715 | "source-map-support": "0.5.13" 2716 | }, 2717 | "engines": { 2718 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2719 | } 2720 | }, 2721 | "node_modules/jest-runner/node_modules/source-map-support": { 2722 | "version": "0.5.13", 2723 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 2724 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 2725 | "dev": true, 2726 | "dependencies": { 2727 | "buffer-from": "^1.0.0", 2728 | "source-map": "^0.6.0" 2729 | } 2730 | }, 2731 | "node_modules/jest-runtime": { 2732 | "version": "29.3.1", 2733 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.3.1.tgz", 2734 | "integrity": "sha512-jLzkIxIqXwBEOZx7wx9OO9sxoZmgT2NhmQKzHQm1xwR1kNW/dn0OjxR424VwHHf1SPN6Qwlb5pp1oGCeFTQ62A==", 2735 | "dev": true, 2736 | "dependencies": { 2737 | "@jest/environment": "^29.3.1", 2738 | "@jest/fake-timers": "^29.3.1", 2739 | "@jest/globals": "^29.3.1", 2740 | "@jest/source-map": "^29.2.0", 2741 | "@jest/test-result": "^29.3.1", 2742 | "@jest/transform": "^29.3.1", 2743 | "@jest/types": "^29.3.1", 2744 | "@types/node": "*", 2745 | "chalk": "^4.0.0", 2746 | "cjs-module-lexer": "^1.0.0", 2747 | "collect-v8-coverage": "^1.0.0", 2748 | "glob": "^7.1.3", 2749 | "graceful-fs": "^4.2.9", 2750 | "jest-haste-map": "^29.3.1", 2751 | "jest-message-util": "^29.3.1", 2752 | "jest-mock": "^29.3.1", 2753 | "jest-regex-util": "^29.2.0", 2754 | "jest-resolve": "^29.3.1", 2755 | "jest-snapshot": "^29.3.1", 2756 | "jest-util": "^29.3.1", 2757 | "slash": "^3.0.0", 2758 | "strip-bom": "^4.0.0" 2759 | }, 2760 | "engines": { 2761 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2762 | } 2763 | }, 2764 | "node_modules/jest-snapshot": { 2765 | "version": "29.3.1", 2766 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.3.1.tgz", 2767 | "integrity": "sha512-+3JOc+s28upYLI2OJM4PWRGK9AgpsMs/ekNryUV0yMBClT9B1DF2u2qay8YxcQd338PPYSFNb0lsar1B49sLDA==", 2768 | "dev": true, 2769 | "dependencies": { 2770 | "@babel/core": "^7.11.6", 2771 | "@babel/generator": "^7.7.2", 2772 | "@babel/plugin-syntax-jsx": "^7.7.2", 2773 | "@babel/plugin-syntax-typescript": "^7.7.2", 2774 | "@babel/traverse": "^7.7.2", 2775 | "@babel/types": "^7.3.3", 2776 | "@jest/expect-utils": "^29.3.1", 2777 | "@jest/transform": "^29.3.1", 2778 | "@jest/types": "^29.3.1", 2779 | "@types/babel__traverse": "^7.0.6", 2780 | "@types/prettier": "^2.1.5", 2781 | "babel-preset-current-node-syntax": "^1.0.0", 2782 | "chalk": "^4.0.0", 2783 | "expect": "^29.3.1", 2784 | "graceful-fs": "^4.2.9", 2785 | "jest-diff": "^29.3.1", 2786 | "jest-get-type": "^29.2.0", 2787 | "jest-haste-map": "^29.3.1", 2788 | "jest-matcher-utils": "^29.3.1", 2789 | "jest-message-util": "^29.3.1", 2790 | "jest-util": "^29.3.1", 2791 | "natural-compare": "^1.4.0", 2792 | "pretty-format": "^29.3.1", 2793 | "semver": "^7.3.5" 2794 | }, 2795 | "engines": { 2796 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2797 | } 2798 | }, 2799 | "node_modules/jest-snapshot/node_modules/lru-cache": { 2800 | "version": "6.0.0", 2801 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2802 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2803 | "dev": true, 2804 | "dependencies": { 2805 | "yallist": "^4.0.0" 2806 | }, 2807 | "engines": { 2808 | "node": ">=10" 2809 | } 2810 | }, 2811 | "node_modules/jest-snapshot/node_modules/semver": { 2812 | "version": "7.3.8", 2813 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", 2814 | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", 2815 | "dev": true, 2816 | "dependencies": { 2817 | "lru-cache": "^6.0.0" 2818 | }, 2819 | "bin": { 2820 | "semver": "bin/semver.js" 2821 | }, 2822 | "engines": { 2823 | "node": ">=10" 2824 | } 2825 | }, 2826 | "node_modules/jest-snapshot/node_modules/yallist": { 2827 | "version": "4.0.0", 2828 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2829 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2830 | "dev": true 2831 | }, 2832 | "node_modules/jest-util": { 2833 | "version": "29.3.1", 2834 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.3.1.tgz", 2835 | "integrity": "sha512-7YOVZaiX7RJLv76ZfHt4nbNEzzTRiMW/IiOG7ZOKmTXmoGBxUDefgMAxQubu6WPVqP5zSzAdZG0FfLcC7HOIFQ==", 2836 | "dev": true, 2837 | "dependencies": { 2838 | "@jest/types": "^29.3.1", 2839 | "@types/node": "*", 2840 | "chalk": "^4.0.0", 2841 | "ci-info": "^3.2.0", 2842 | "graceful-fs": "^4.2.9", 2843 | "picomatch": "^2.2.3" 2844 | }, 2845 | "engines": { 2846 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2847 | } 2848 | }, 2849 | "node_modules/jest-validate": { 2850 | "version": "29.3.1", 2851 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.3.1.tgz", 2852 | "integrity": "sha512-N9Lr3oYR2Mpzuelp1F8negJR3YE+L1ebk1rYA5qYo9TTY3f9OWdptLoNSPP9itOCBIRBqjt/S5XHlzYglLN67g==", 2853 | "dev": true, 2854 | "dependencies": { 2855 | "@jest/types": "^29.3.1", 2856 | "camelcase": "^6.2.0", 2857 | "chalk": "^4.0.0", 2858 | "jest-get-type": "^29.2.0", 2859 | "leven": "^3.1.0", 2860 | "pretty-format": "^29.3.1" 2861 | }, 2862 | "engines": { 2863 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2864 | } 2865 | }, 2866 | "node_modules/jest-validate/node_modules/camelcase": { 2867 | "version": "6.3.0", 2868 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 2869 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 2870 | "dev": true, 2871 | "engines": { 2872 | "node": ">=10" 2873 | }, 2874 | "funding": { 2875 | "url": "https://github.com/sponsors/sindresorhus" 2876 | } 2877 | }, 2878 | "node_modules/jest-watcher": { 2879 | "version": "29.3.1", 2880 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.3.1.tgz", 2881 | "integrity": "sha512-RspXG2BQFDsZSRKGCT/NiNa8RkQ1iKAjrO0//soTMWx/QUt+OcxMqMSBxz23PYGqUuWm2+m2mNNsmj0eIoOaFg==", 2882 | "dev": true, 2883 | "dependencies": { 2884 | "@jest/test-result": "^29.3.1", 2885 | "@jest/types": "^29.3.1", 2886 | "@types/node": "*", 2887 | "ansi-escapes": "^4.2.1", 2888 | "chalk": "^4.0.0", 2889 | "emittery": "^0.13.1", 2890 | "jest-util": "^29.3.1", 2891 | "string-length": "^4.0.1" 2892 | }, 2893 | "engines": { 2894 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2895 | } 2896 | }, 2897 | "node_modules/jest-worker": { 2898 | "version": "29.3.1", 2899 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.3.1.tgz", 2900 | "integrity": "sha512-lY4AnnmsEWeiXirAIA0c9SDPbuCBq8IYuDVL8PMm0MZ2PEs2yPvRA/J64QBXuZp7CYKrDM/rmNrc9/i3KJQncw==", 2901 | "dev": true, 2902 | "dependencies": { 2903 | "@types/node": "*", 2904 | "jest-util": "^29.3.1", 2905 | "merge-stream": "^2.0.0", 2906 | "supports-color": "^8.0.0" 2907 | }, 2908 | "engines": { 2909 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2910 | } 2911 | }, 2912 | "node_modules/jest-worker/node_modules/supports-color": { 2913 | "version": "8.1.1", 2914 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2915 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2916 | "dev": true, 2917 | "dependencies": { 2918 | "has-flag": "^4.0.0" 2919 | }, 2920 | "engines": { 2921 | "node": ">=10" 2922 | }, 2923 | "funding": { 2924 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2925 | } 2926 | }, 2927 | "node_modules/js-tokens": { 2928 | "version": "4.0.0", 2929 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2930 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2931 | "dev": true 2932 | }, 2933 | "node_modules/js-yaml": { 2934 | "version": "3.14.1", 2935 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2936 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2937 | "dev": true, 2938 | "dependencies": { 2939 | "argparse": "^1.0.7", 2940 | "esprima": "^4.0.0" 2941 | }, 2942 | "bin": { 2943 | "js-yaml": "bin/js-yaml.js" 2944 | } 2945 | }, 2946 | "node_modules/jsesc": { 2947 | "version": "2.5.2", 2948 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 2949 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", 2950 | "dev": true, 2951 | "bin": { 2952 | "jsesc": "bin/jsesc" 2953 | }, 2954 | "engines": { 2955 | "node": ">=4" 2956 | } 2957 | }, 2958 | "node_modules/json-parse-even-better-errors": { 2959 | "version": "2.3.1", 2960 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2961 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2962 | "dev": true 2963 | }, 2964 | "node_modules/json5": { 2965 | "version": "2.2.3", 2966 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2967 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2968 | "dev": true, 2969 | "bin": { 2970 | "json5": "lib/cli.js" 2971 | }, 2972 | "engines": { 2973 | "node": ">=6" 2974 | } 2975 | }, 2976 | "node_modules/kleur": { 2977 | "version": "3.0.3", 2978 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 2979 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 2980 | "dev": true, 2981 | "engines": { 2982 | "node": ">=6" 2983 | } 2984 | }, 2985 | "node_modules/leven": { 2986 | "version": "3.1.0", 2987 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 2988 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 2989 | "dev": true, 2990 | "engines": { 2991 | "node": ">=6" 2992 | } 2993 | }, 2994 | "node_modules/lines-and-columns": { 2995 | "version": "1.2.4", 2996 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2997 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2998 | "dev": true 2999 | }, 3000 | "node_modules/locate-path": { 3001 | "version": "5.0.0", 3002 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 3003 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 3004 | "dev": true, 3005 | "dependencies": { 3006 | "p-locate": "^4.1.0" 3007 | }, 3008 | "engines": { 3009 | "node": ">=8" 3010 | } 3011 | }, 3012 | "node_modules/lodash.memoize": { 3013 | "version": "4.1.2", 3014 | "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", 3015 | "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", 3016 | "dev": true 3017 | }, 3018 | "node_modules/lru-cache": { 3019 | "version": "5.1.1", 3020 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 3021 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 3022 | "dev": true, 3023 | "dependencies": { 3024 | "yallist": "^3.0.2" 3025 | } 3026 | }, 3027 | "node_modules/make-dir": { 3028 | "version": "3.1.0", 3029 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", 3030 | "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", 3031 | "dev": true, 3032 | "dependencies": { 3033 | "semver": "^6.0.0" 3034 | }, 3035 | "engines": { 3036 | "node": ">=8" 3037 | }, 3038 | "funding": { 3039 | "url": "https://github.com/sponsors/sindresorhus" 3040 | } 3041 | }, 3042 | "node_modules/make-error": { 3043 | "version": "1.3.6", 3044 | "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", 3045 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", 3046 | "dev": true 3047 | }, 3048 | "node_modules/makeerror": { 3049 | "version": "1.0.12", 3050 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 3051 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 3052 | "dev": true, 3053 | "dependencies": { 3054 | "tmpl": "1.0.5" 3055 | } 3056 | }, 3057 | "node_modules/merge-stream": { 3058 | "version": "2.0.0", 3059 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 3060 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 3061 | "dev": true 3062 | }, 3063 | "node_modules/micromatch": { 3064 | "version": "4.0.5", 3065 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 3066 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 3067 | "dev": true, 3068 | "dependencies": { 3069 | "braces": "^3.0.2", 3070 | "picomatch": "^2.3.1" 3071 | }, 3072 | "engines": { 3073 | "node": ">=8.6" 3074 | } 3075 | }, 3076 | "node_modules/mimic-fn": { 3077 | "version": "2.1.0", 3078 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3079 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3080 | "dev": true, 3081 | "engines": { 3082 | "node": ">=6" 3083 | } 3084 | }, 3085 | "node_modules/minimatch": { 3086 | "version": "3.1.2", 3087 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3088 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3089 | "dev": true, 3090 | "dependencies": { 3091 | "brace-expansion": "^1.1.7" 3092 | }, 3093 | "engines": { 3094 | "node": "*" 3095 | } 3096 | }, 3097 | "node_modules/ms": { 3098 | "version": "2.1.2", 3099 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3100 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 3101 | "dev": true 3102 | }, 3103 | "node_modules/natural-compare": { 3104 | "version": "1.4.0", 3105 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3106 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3107 | "dev": true 3108 | }, 3109 | "node_modules/node-int64": { 3110 | "version": "0.4.0", 3111 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 3112 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 3113 | "dev": true 3114 | }, 3115 | "node_modules/node-releases": { 3116 | "version": "2.0.8", 3117 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", 3118 | "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==", 3119 | "dev": true 3120 | }, 3121 | "node_modules/normalize-path": { 3122 | "version": "3.0.0", 3123 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3124 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3125 | "dev": true, 3126 | "engines": { 3127 | "node": ">=0.10.0" 3128 | } 3129 | }, 3130 | "node_modules/npm-run-path": { 3131 | "version": "4.0.1", 3132 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3133 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3134 | "dev": true, 3135 | "dependencies": { 3136 | "path-key": "^3.0.0" 3137 | }, 3138 | "engines": { 3139 | "node": ">=8" 3140 | } 3141 | }, 3142 | "node_modules/once": { 3143 | "version": "1.4.0", 3144 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3145 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3146 | "dev": true, 3147 | "dependencies": { 3148 | "wrappy": "1" 3149 | } 3150 | }, 3151 | "node_modules/onetime": { 3152 | "version": "5.1.2", 3153 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3154 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3155 | "dev": true, 3156 | "dependencies": { 3157 | "mimic-fn": "^2.1.0" 3158 | }, 3159 | "engines": { 3160 | "node": ">=6" 3161 | }, 3162 | "funding": { 3163 | "url": "https://github.com/sponsors/sindresorhus" 3164 | } 3165 | }, 3166 | "node_modules/p-limit": { 3167 | "version": "3.1.0", 3168 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3169 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3170 | "dev": true, 3171 | "dependencies": { 3172 | "yocto-queue": "^0.1.0" 3173 | }, 3174 | "engines": { 3175 | "node": ">=10" 3176 | }, 3177 | "funding": { 3178 | "url": "https://github.com/sponsors/sindresorhus" 3179 | } 3180 | }, 3181 | "node_modules/p-locate": { 3182 | "version": "4.1.0", 3183 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 3184 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 3185 | "dev": true, 3186 | "dependencies": { 3187 | "p-limit": "^2.2.0" 3188 | }, 3189 | "engines": { 3190 | "node": ">=8" 3191 | } 3192 | }, 3193 | "node_modules/p-locate/node_modules/p-limit": { 3194 | "version": "2.3.0", 3195 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3196 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3197 | "dev": true, 3198 | "dependencies": { 3199 | "p-try": "^2.0.0" 3200 | }, 3201 | "engines": { 3202 | "node": ">=6" 3203 | }, 3204 | "funding": { 3205 | "url": "https://github.com/sponsors/sindresorhus" 3206 | } 3207 | }, 3208 | "node_modules/p-try": { 3209 | "version": "2.2.0", 3210 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3211 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3212 | "dev": true, 3213 | "engines": { 3214 | "node": ">=6" 3215 | } 3216 | }, 3217 | "node_modules/parse-json": { 3218 | "version": "5.2.0", 3219 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3220 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3221 | "dev": true, 3222 | "dependencies": { 3223 | "@babel/code-frame": "^7.0.0", 3224 | "error-ex": "^1.3.1", 3225 | "json-parse-even-better-errors": "^2.3.0", 3226 | "lines-and-columns": "^1.1.6" 3227 | }, 3228 | "engines": { 3229 | "node": ">=8" 3230 | }, 3231 | "funding": { 3232 | "url": "https://github.com/sponsors/sindresorhus" 3233 | } 3234 | }, 3235 | "node_modules/path-exists": { 3236 | "version": "4.0.0", 3237 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3238 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3239 | "dev": true, 3240 | "engines": { 3241 | "node": ">=8" 3242 | } 3243 | }, 3244 | "node_modules/path-is-absolute": { 3245 | "version": "1.0.1", 3246 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3247 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3248 | "dev": true, 3249 | "engines": { 3250 | "node": ">=0.10.0" 3251 | } 3252 | }, 3253 | "node_modules/path-key": { 3254 | "version": "3.1.1", 3255 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3256 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3257 | "dev": true, 3258 | "engines": { 3259 | "node": ">=8" 3260 | } 3261 | }, 3262 | "node_modules/path-parse": { 3263 | "version": "1.0.7", 3264 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3265 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3266 | "dev": true 3267 | }, 3268 | "node_modules/picocolors": { 3269 | "version": "1.0.0", 3270 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3271 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 3272 | "dev": true 3273 | }, 3274 | "node_modules/picomatch": { 3275 | "version": "2.3.1", 3276 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3277 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3278 | "dev": true, 3279 | "engines": { 3280 | "node": ">=8.6" 3281 | }, 3282 | "funding": { 3283 | "url": "https://github.com/sponsors/jonschlinkert" 3284 | } 3285 | }, 3286 | "node_modules/pirates": { 3287 | "version": "4.0.5", 3288 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 3289 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 3290 | "dev": true, 3291 | "engines": { 3292 | "node": ">= 6" 3293 | } 3294 | }, 3295 | "node_modules/pkg-dir": { 3296 | "version": "4.2.0", 3297 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 3298 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 3299 | "dev": true, 3300 | "dependencies": { 3301 | "find-up": "^4.0.0" 3302 | }, 3303 | "engines": { 3304 | "node": ">=8" 3305 | } 3306 | }, 3307 | "node_modules/pretty-format": { 3308 | "version": "29.3.1", 3309 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.3.1.tgz", 3310 | "integrity": "sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg==", 3311 | "dev": true, 3312 | "dependencies": { 3313 | "@jest/schemas": "^29.0.0", 3314 | "ansi-styles": "^5.0.0", 3315 | "react-is": "^18.0.0" 3316 | }, 3317 | "engines": { 3318 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3319 | } 3320 | }, 3321 | "node_modules/pretty-format/node_modules/ansi-styles": { 3322 | "version": "5.2.0", 3323 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 3324 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 3325 | "dev": true, 3326 | "engines": { 3327 | "node": ">=10" 3328 | }, 3329 | "funding": { 3330 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3331 | } 3332 | }, 3333 | "node_modules/prompts": { 3334 | "version": "2.4.2", 3335 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3336 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3337 | "dev": true, 3338 | "dependencies": { 3339 | "kleur": "^3.0.3", 3340 | "sisteransi": "^1.0.5" 3341 | }, 3342 | "engines": { 3343 | "node": ">= 6" 3344 | } 3345 | }, 3346 | "node_modules/react-is": { 3347 | "version": "18.2.0", 3348 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", 3349 | "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", 3350 | "dev": true 3351 | }, 3352 | "node_modules/require-directory": { 3353 | "version": "2.1.1", 3354 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3355 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3356 | "dev": true, 3357 | "engines": { 3358 | "node": ">=0.10.0" 3359 | } 3360 | }, 3361 | "node_modules/resolve": { 3362 | "version": "1.22.1", 3363 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", 3364 | "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", 3365 | "dev": true, 3366 | "dependencies": { 3367 | "is-core-module": "^2.9.0", 3368 | "path-parse": "^1.0.7", 3369 | "supports-preserve-symlinks-flag": "^1.0.0" 3370 | }, 3371 | "bin": { 3372 | "resolve": "bin/resolve" 3373 | }, 3374 | "funding": { 3375 | "url": "https://github.com/sponsors/ljharb" 3376 | } 3377 | }, 3378 | "node_modules/resolve-cwd": { 3379 | "version": "3.0.0", 3380 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 3381 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 3382 | "dev": true, 3383 | "dependencies": { 3384 | "resolve-from": "^5.0.0" 3385 | }, 3386 | "engines": { 3387 | "node": ">=8" 3388 | } 3389 | }, 3390 | "node_modules/resolve-from": { 3391 | "version": "5.0.0", 3392 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 3393 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 3394 | "dev": true, 3395 | "engines": { 3396 | "node": ">=8" 3397 | } 3398 | }, 3399 | "node_modules/resolve.exports": { 3400 | "version": "1.1.0", 3401 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", 3402 | "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", 3403 | "dev": true, 3404 | "engines": { 3405 | "node": ">=10" 3406 | } 3407 | }, 3408 | "node_modules/semver": { 3409 | "version": "6.3.0", 3410 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 3411 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 3412 | "dev": true, 3413 | "bin": { 3414 | "semver": "bin/semver.js" 3415 | } 3416 | }, 3417 | "node_modules/shebang-command": { 3418 | "version": "2.0.0", 3419 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3420 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3421 | "dev": true, 3422 | "dependencies": { 3423 | "shebang-regex": "^3.0.0" 3424 | }, 3425 | "engines": { 3426 | "node": ">=8" 3427 | } 3428 | }, 3429 | "node_modules/shebang-regex": { 3430 | "version": "3.0.0", 3431 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3432 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3433 | "dev": true, 3434 | "engines": { 3435 | "node": ">=8" 3436 | } 3437 | }, 3438 | "node_modules/signal-exit": { 3439 | "version": "3.0.7", 3440 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3441 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3442 | "dev": true 3443 | }, 3444 | "node_modules/sisteransi": { 3445 | "version": "1.0.5", 3446 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 3447 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 3448 | "dev": true 3449 | }, 3450 | "node_modules/slash": { 3451 | "version": "3.0.0", 3452 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3453 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3454 | "dev": true, 3455 | "engines": { 3456 | "node": ">=8" 3457 | } 3458 | }, 3459 | "node_modules/source-map": { 3460 | "version": "0.6.1", 3461 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3462 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3463 | "engines": { 3464 | "node": ">=0.10.0" 3465 | } 3466 | }, 3467 | "node_modules/source-map-support": { 3468 | "version": "0.5.21", 3469 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 3470 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 3471 | "dependencies": { 3472 | "buffer-from": "^1.0.0", 3473 | "source-map": "^0.6.0" 3474 | } 3475 | }, 3476 | "node_modules/sprintf-js": { 3477 | "version": "1.0.3", 3478 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3479 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3480 | "dev": true 3481 | }, 3482 | "node_modules/stack-utils": { 3483 | "version": "2.0.6", 3484 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3485 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3486 | "dev": true, 3487 | "dependencies": { 3488 | "escape-string-regexp": "^2.0.0" 3489 | }, 3490 | "engines": { 3491 | "node": ">=10" 3492 | } 3493 | }, 3494 | "node_modules/string-length": { 3495 | "version": "4.0.2", 3496 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 3497 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 3498 | "dev": true, 3499 | "dependencies": { 3500 | "char-regex": "^1.0.2", 3501 | "strip-ansi": "^6.0.0" 3502 | }, 3503 | "engines": { 3504 | "node": ">=10" 3505 | } 3506 | }, 3507 | "node_modules/string-width": { 3508 | "version": "4.2.3", 3509 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3510 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3511 | "dev": true, 3512 | "dependencies": { 3513 | "emoji-regex": "^8.0.0", 3514 | "is-fullwidth-code-point": "^3.0.0", 3515 | "strip-ansi": "^6.0.1" 3516 | }, 3517 | "engines": { 3518 | "node": ">=8" 3519 | } 3520 | }, 3521 | "node_modules/strip-ansi": { 3522 | "version": "6.0.1", 3523 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3524 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3525 | "dev": true, 3526 | "dependencies": { 3527 | "ansi-regex": "^5.0.1" 3528 | }, 3529 | "engines": { 3530 | "node": ">=8" 3531 | } 3532 | }, 3533 | "node_modules/strip-bom": { 3534 | "version": "4.0.0", 3535 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 3536 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 3537 | "dev": true, 3538 | "engines": { 3539 | "node": ">=8" 3540 | } 3541 | }, 3542 | "node_modules/strip-final-newline": { 3543 | "version": "2.0.0", 3544 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3545 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3546 | "dev": true, 3547 | "engines": { 3548 | "node": ">=6" 3549 | } 3550 | }, 3551 | "node_modules/strip-json-comments": { 3552 | "version": "3.1.1", 3553 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3554 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3555 | "dev": true, 3556 | "engines": { 3557 | "node": ">=8" 3558 | }, 3559 | "funding": { 3560 | "url": "https://github.com/sponsors/sindresorhus" 3561 | } 3562 | }, 3563 | "node_modules/supports-color": { 3564 | "version": "7.2.0", 3565 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3566 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3567 | "dev": true, 3568 | "dependencies": { 3569 | "has-flag": "^4.0.0" 3570 | }, 3571 | "engines": { 3572 | "node": ">=8" 3573 | } 3574 | }, 3575 | "node_modules/supports-preserve-symlinks-flag": { 3576 | "version": "1.0.0", 3577 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3578 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3579 | "dev": true, 3580 | "engines": { 3581 | "node": ">= 0.4" 3582 | }, 3583 | "funding": { 3584 | "url": "https://github.com/sponsors/ljharb" 3585 | } 3586 | }, 3587 | "node_modules/test-exclude": { 3588 | "version": "6.0.0", 3589 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 3590 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 3591 | "dev": true, 3592 | "dependencies": { 3593 | "@istanbuljs/schema": "^0.1.2", 3594 | "glob": "^7.1.4", 3595 | "minimatch": "^3.0.4" 3596 | }, 3597 | "engines": { 3598 | "node": ">=8" 3599 | } 3600 | }, 3601 | "node_modules/tmpl": { 3602 | "version": "1.0.5", 3603 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 3604 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 3605 | "dev": true 3606 | }, 3607 | "node_modules/to-fast-properties": { 3608 | "version": "2.0.0", 3609 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 3610 | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", 3611 | "dev": true, 3612 | "engines": { 3613 | "node": ">=4" 3614 | } 3615 | }, 3616 | "node_modules/to-regex-range": { 3617 | "version": "5.0.1", 3618 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3619 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3620 | "dev": true, 3621 | "dependencies": { 3622 | "is-number": "^7.0.0" 3623 | }, 3624 | "engines": { 3625 | "node": ">=8.0" 3626 | } 3627 | }, 3628 | "node_modules/ts-jest": { 3629 | "version": "29.0.3", 3630 | "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.0.3.tgz", 3631 | "integrity": "sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==", 3632 | "dev": true, 3633 | "dependencies": { 3634 | "bs-logger": "0.x", 3635 | "fast-json-stable-stringify": "2.x", 3636 | "jest-util": "^29.0.0", 3637 | "json5": "^2.2.1", 3638 | "lodash.memoize": "4.x", 3639 | "make-error": "1.x", 3640 | "semver": "7.x", 3641 | "yargs-parser": "^21.0.1" 3642 | }, 3643 | "bin": { 3644 | "ts-jest": "cli.js" 3645 | }, 3646 | "engines": { 3647 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3648 | }, 3649 | "peerDependencies": { 3650 | "@babel/core": ">=7.0.0-beta.0 <8", 3651 | "@jest/types": "^29.0.0", 3652 | "babel-jest": "^29.0.0", 3653 | "jest": "^29.0.0", 3654 | "typescript": ">=4.3" 3655 | }, 3656 | "peerDependenciesMeta": { 3657 | "@babel/core": { 3658 | "optional": true 3659 | }, 3660 | "@jest/types": { 3661 | "optional": true 3662 | }, 3663 | "babel-jest": { 3664 | "optional": true 3665 | }, 3666 | "esbuild": { 3667 | "optional": true 3668 | } 3669 | } 3670 | }, 3671 | "node_modules/ts-jest/node_modules/lru-cache": { 3672 | "version": "6.0.0", 3673 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 3674 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 3675 | "dev": true, 3676 | "dependencies": { 3677 | "yallist": "^4.0.0" 3678 | }, 3679 | "engines": { 3680 | "node": ">=10" 3681 | } 3682 | }, 3683 | "node_modules/ts-jest/node_modules/semver": { 3684 | "version": "7.3.8", 3685 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", 3686 | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", 3687 | "dev": true, 3688 | "dependencies": { 3689 | "lru-cache": "^6.0.0" 3690 | }, 3691 | "bin": { 3692 | "semver": "bin/semver.js" 3693 | }, 3694 | "engines": { 3695 | "node": ">=10" 3696 | } 3697 | }, 3698 | "node_modules/ts-jest/node_modules/yallist": { 3699 | "version": "4.0.0", 3700 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3701 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3702 | "dev": true 3703 | }, 3704 | "node_modules/ts-node": { 3705 | "version": "10.9.1", 3706 | "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", 3707 | "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", 3708 | "dev": true, 3709 | "dependencies": { 3710 | "@cspotcode/source-map-support": "^0.8.0", 3711 | "@tsconfig/node10": "^1.0.7", 3712 | "@tsconfig/node12": "^1.0.7", 3713 | "@tsconfig/node14": "^1.0.0", 3714 | "@tsconfig/node16": "^1.0.2", 3715 | "acorn": "^8.4.1", 3716 | "acorn-walk": "^8.1.1", 3717 | "arg": "^4.1.0", 3718 | "create-require": "^1.1.0", 3719 | "diff": "^4.0.1", 3720 | "make-error": "^1.1.1", 3721 | "v8-compile-cache-lib": "^3.0.1", 3722 | "yn": "3.1.1" 3723 | }, 3724 | "bin": { 3725 | "ts-node": "dist/bin.js", 3726 | "ts-node-cwd": "dist/bin-cwd.js", 3727 | "ts-node-esm": "dist/bin-esm.js", 3728 | "ts-node-script": "dist/bin-script.js", 3729 | "ts-node-transpile-only": "dist/bin-transpile.js", 3730 | "ts-script": "dist/bin-script-deprecated.js" 3731 | }, 3732 | "peerDependencies": { 3733 | "@swc/core": ">=1.2.50", 3734 | "@swc/wasm": ">=1.2.50", 3735 | "@types/node": "*", 3736 | "typescript": ">=2.7" 3737 | }, 3738 | "peerDependenciesMeta": { 3739 | "@swc/core": { 3740 | "optional": true 3741 | }, 3742 | "@swc/wasm": { 3743 | "optional": true 3744 | } 3745 | } 3746 | }, 3747 | "node_modules/type-detect": { 3748 | "version": "4.0.8", 3749 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 3750 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 3751 | "dev": true, 3752 | "engines": { 3753 | "node": ">=4" 3754 | } 3755 | }, 3756 | "node_modules/type-fest": { 3757 | "version": "0.21.3", 3758 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3759 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3760 | "dev": true, 3761 | "engines": { 3762 | "node": ">=10" 3763 | }, 3764 | "funding": { 3765 | "url": "https://github.com/sponsors/sindresorhus" 3766 | } 3767 | }, 3768 | "node_modules/typescript": { 3769 | "version": "4.9.4", 3770 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", 3771 | "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==", 3772 | "dev": true, 3773 | "bin": { 3774 | "tsc": "bin/tsc", 3775 | "tsserver": "bin/tsserver" 3776 | }, 3777 | "engines": { 3778 | "node": ">=4.2.0" 3779 | } 3780 | }, 3781 | "node_modules/update-browserslist-db": { 3782 | "version": "1.0.10", 3783 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", 3784 | "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", 3785 | "dev": true, 3786 | "funding": [ 3787 | { 3788 | "type": "opencollective", 3789 | "url": "https://opencollective.com/browserslist" 3790 | }, 3791 | { 3792 | "type": "tidelift", 3793 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3794 | } 3795 | ], 3796 | "dependencies": { 3797 | "escalade": "^3.1.1", 3798 | "picocolors": "^1.0.0" 3799 | }, 3800 | "bin": { 3801 | "browserslist-lint": "cli.js" 3802 | }, 3803 | "peerDependencies": { 3804 | "browserslist": ">= 4.21.0" 3805 | } 3806 | }, 3807 | "node_modules/v8-compile-cache-lib": { 3808 | "version": "3.0.1", 3809 | "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", 3810 | "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", 3811 | "dev": true 3812 | }, 3813 | "node_modules/v8-to-istanbul": { 3814 | "version": "9.0.1", 3815 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.0.1.tgz", 3816 | "integrity": "sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==", 3817 | "dev": true, 3818 | "dependencies": { 3819 | "@jridgewell/trace-mapping": "^0.3.12", 3820 | "@types/istanbul-lib-coverage": "^2.0.1", 3821 | "convert-source-map": "^1.6.0" 3822 | }, 3823 | "engines": { 3824 | "node": ">=10.12.0" 3825 | } 3826 | }, 3827 | "node_modules/v8-to-istanbul/node_modules/convert-source-map": { 3828 | "version": "1.9.0", 3829 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", 3830 | "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", 3831 | "dev": true 3832 | }, 3833 | "node_modules/walker": { 3834 | "version": "1.0.8", 3835 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 3836 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 3837 | "dev": true, 3838 | "dependencies": { 3839 | "makeerror": "1.0.12" 3840 | } 3841 | }, 3842 | "node_modules/which": { 3843 | "version": "2.0.2", 3844 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3845 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3846 | "dev": true, 3847 | "dependencies": { 3848 | "isexe": "^2.0.0" 3849 | }, 3850 | "bin": { 3851 | "node-which": "bin/node-which" 3852 | }, 3853 | "engines": { 3854 | "node": ">= 8" 3855 | } 3856 | }, 3857 | "node_modules/wrap-ansi": { 3858 | "version": "7.0.0", 3859 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3860 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3861 | "dev": true, 3862 | "dependencies": { 3863 | "ansi-styles": "^4.0.0", 3864 | "string-width": "^4.1.0", 3865 | "strip-ansi": "^6.0.0" 3866 | }, 3867 | "engines": { 3868 | "node": ">=10" 3869 | }, 3870 | "funding": { 3871 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3872 | } 3873 | }, 3874 | "node_modules/wrappy": { 3875 | "version": "1.0.2", 3876 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3877 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3878 | "dev": true 3879 | }, 3880 | "node_modules/write-file-atomic": { 3881 | "version": "4.0.2", 3882 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 3883 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 3884 | "dev": true, 3885 | "dependencies": { 3886 | "imurmurhash": "^0.1.4", 3887 | "signal-exit": "^3.0.7" 3888 | }, 3889 | "engines": { 3890 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 3891 | } 3892 | }, 3893 | "node_modules/y18n": { 3894 | "version": "5.0.8", 3895 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3896 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3897 | "dev": true, 3898 | "engines": { 3899 | "node": ">=10" 3900 | } 3901 | }, 3902 | "node_modules/yallist": { 3903 | "version": "3.1.1", 3904 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3905 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3906 | "dev": true 3907 | }, 3908 | "node_modules/yargs": { 3909 | "version": "17.6.2", 3910 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", 3911 | "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", 3912 | "dev": true, 3913 | "dependencies": { 3914 | "cliui": "^8.0.1", 3915 | "escalade": "^3.1.1", 3916 | "get-caller-file": "^2.0.5", 3917 | "require-directory": "^2.1.1", 3918 | "string-width": "^4.2.3", 3919 | "y18n": "^5.0.5", 3920 | "yargs-parser": "^21.1.1" 3921 | }, 3922 | "engines": { 3923 | "node": ">=12" 3924 | } 3925 | }, 3926 | "node_modules/yargs-parser": { 3927 | "version": "21.1.1", 3928 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3929 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3930 | "dev": true, 3931 | "engines": { 3932 | "node": ">=12" 3933 | } 3934 | }, 3935 | "node_modules/yn": { 3936 | "version": "3.1.1", 3937 | "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", 3938 | "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", 3939 | "dev": true, 3940 | "engines": { 3941 | "node": ">=6" 3942 | } 3943 | }, 3944 | "node_modules/yocto-queue": { 3945 | "version": "0.1.0", 3946 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3947 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3948 | "dev": true, 3949 | "engines": { 3950 | "node": ">=10" 3951 | }, 3952 | "funding": { 3953 | "url": "https://github.com/sponsors/sindresorhus" 3954 | } 3955 | } 3956 | } 3957 | } 3958 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pipes_patterns_cdk", 3 | "license": "MIT", 4 | "version": "0.1.0", 5 | "bin": { 6 | "pipes_patterns_cdk": "bin/pipes_patterns_cdk.js" 7 | }, 8 | "scripts": { 9 | "build": "tsc", 10 | "watch": "tsc -w", 11 | "test": "jest", 12 | "cdk": "cdk" 13 | }, 14 | "devDependencies": { 15 | "@types/jest": "^29.2.4", 16 | "@types/node": "18.11.15", 17 | "aws-cdk": "2.59.0", 18 | "jest": "^29.3.1", 19 | "ts-jest": "^29.0.3", 20 | "ts-node": "^10.9.1", 21 | "typescript": "~4.9.4", 22 | "cdk-nag": "^2.21.64" 23 | }, 24 | "dependencies": { 25 | "aws-cdk-lib": "2.59.0", 26 | "constructs": "^10.0.0", 27 | "source-map-support": "^0.5.21" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /test/pipes_patterns_cdk.test.ts: -------------------------------------------------------------------------------- 1 | // import * as cdk from 'aws-cdk-lib'; 2 | // import { Template } from 'aws-cdk-lib/assertions'; 3 | // import * as PipesPatternsCdk from '../lib/pipes_patterns_cdk-stack'; 4 | 5 | // example test. To run these tests, uncomment this file along with the 6 | // example resource in lib/pipes_patterns_cdk-stack.ts 7 | test('SQS Queue Created', () => { 8 | // const app = new cdk.App(); 9 | // // WHEN 10 | // const stack = new PipesPatternsCdk.PipesPatternsCdkStack(app, 'MyTestStack'); 11 | // // THEN 12 | // const template = Template.fromStack(stack); 13 | 14 | // template.hasResourceProperties('AWS::SQS::Queue', { 15 | // VisibilityTimeout: 300 16 | // }); 17 | }); 18 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "module": "commonjs", 5 | "lib": [ 6 | "es2020" 7 | ], 8 | "declaration": true, 9 | "strict": true, 10 | "noImplicitAny": true, 11 | "strictNullChecks": true, 12 | "noImplicitThis": true, 13 | "alwaysStrict": true, 14 | "noUnusedLocals": false, 15 | "noUnusedParameters": false, 16 | "noImplicitReturns": true, 17 | "noFallthroughCasesInSwitch": false, 18 | "inlineSourceMap": true, 19 | "inlineSources": true, 20 | "experimentalDecorators": true, 21 | "strictPropertyInitialization": false, 22 | "typeRoots": [ 23 | "./node_modules/@types" 24 | ] 25 | }, 26 | "exclude": [ 27 | "node_modules", 28 | "cdk.out" 29 | ] 30 | } 31 | --------------------------------------------------------------------------------