@reventlessdev/reventless-aws 3.0.0-alpha.167
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1564 -0
- package/README.md +62 -0
- package/__mocks__/emptyModule.js +1 -0
- package/all-licenses.csv +565 -0
- package/docker-compose.dynamodb-local.yml +12 -0
- package/jest.setup.cjs +5 -0
- package/licenses-analysis.ods +0 -0
- package/package.json +73 -0
- package/rescript.json +39 -0
- package/reventless-licenses-analysis.xls +0 -0
- package/scripts/run-integration-tests.sh +43 -0
- package/src/Platform.res +1940 -0
- package/src/Platform.res.mjs +2281 -0
- package/src/Platform_Casts.res +106 -0
- package/src/Platform_Casts.res.mjs +13 -0
- package/src/Platform_Stack.res +153 -0
- package/src/Platform_Stack.res.mjs +121 -0
- package/src/Types.res +39 -0
- package/src/Types.res.mjs +21 -0
- package/src/adapter/AWS.res +96 -0
- package/src/adapter/AWS.res.mjs +186 -0
- package/src/adapter/AWS_Tags.res +16 -0
- package/src/adapter/AWS_Tags.res.mjs +48 -0
- package/src/adapter/Adapter_Helpers.res +19 -0
- package/src/adapter/Adapter_Helpers.res.mjs +37 -0
- package/src/adapter/Api/AppSync_EventsApi.res +172 -0
- package/src/adapter/Api/AppSync_EventsApi.res.mjs +96 -0
- package/src/adapter/Api/AppSync_Resolver_Native.res +93 -0
- package/src/adapter/Api/AppSync_Resolver_Native.res.mjs +67 -0
- package/src/adapter/Api/AppSync_Resolver_Retrying.res +653 -0
- package/src/adapter/Api/AppSync_Resolver_Retrying.res.mjs +462 -0
- package/src/adapter/Api/CommandSubscriptionResolvers_AppSync.res +29 -0
- package/src/adapter/Api/CommandSubscriptionResolvers_AppSync.res.mjs +15 -0
- package/src/adapter/Api/Platform_ComponentDefinitions_Lambda.res +238 -0
- package/src/adapter/Api/Platform_ComponentDefinitions_Lambda.res.mjs +179 -0
- package/src/adapter/Api/Platform_UIFragments_Lambda.res +229 -0
- package/src/adapter/Api/Platform_UIFragments_Lambda.res.mjs +245 -0
- package/src/adapter/Auth/Auth_Cognito.res +209 -0
- package/src/adapter/Auth/Auth_Cognito.res.mjs +135 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers.res +2 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers.res.mjs +12 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers_AppSync.res +251 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers_AppSync.res.mjs +126 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers_AppSync_NoOp.res +20 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers_AppSync_NoOp.res.mjs +23 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers_AppSync_Runtime.res +1 -0
- package/src/adapter/CommandGenerator/CommandGeneratorResolvers_AppSync_Runtime.res.mjs +11 -0
- package/src/adapter/CommandGenerator/InboundTranslationResolvers_AppSync.res +95 -0
- package/src/adapter/CommandGenerator/InboundTranslationResolvers_AppSync.res.mjs +50 -0
- package/src/adapter/CommandTopic/CommandTopicChannel.res +6 -0
- package/src/adapter/CommandTopic/CommandTopicChannel.res.mjs +21 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_Helpers.res +196 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_Helpers.res.mjs +145 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS.res +91 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS.res.mjs +74 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_Async.res +69 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_Async.res.mjs +62 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_FIFO.res +60 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_FIFO.res.mjs +56 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_Runtime.res +73 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_Runtime.res.mjs +65 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_Sync.res +88 -0
- package/src/adapter/CommandTopic/CommandTopicChannel_SQS_Sync.res.mjs +76 -0
- package/src/adapter/CommandTopic/CommandTopicRemoteChannel.res +1 -0
- package/src/adapter/CommandTopic/CommandTopicRemoteChannel.res.mjs +9 -0
- package/src/adapter/CommandTopic/CommandTopicRemoteChannel_SQS.res +7 -0
- package/src/adapter/CommandTopic/CommandTopicRemoteChannel_SQS.res.mjs +17 -0
- package/src/adapter/Counter/CounterHandler_DynamoDbStream.res +103 -0
- package/src/adapter/Counter/CounterHandler_DynamoDbStream.res.mjs +68 -0
- package/src/adapter/Counter/CounterHandler_DynamoDbStream_Runtime.res +107 -0
- package/src/adapter/Counter/CounterHandler_DynamoDbStream_Runtime.res.mjs +145 -0
- package/src/adapter/DcbEventLog/DcbEventLogStorage.res +1 -0
- package/src/adapter/DcbEventLog/DcbEventLogStorage.res.mjs +9 -0
- package/src/adapter/DcbEventLog/DcbEventLogStorage_DynamoDb.res +84 -0
- package/src/adapter/DcbEventLog/DcbEventLogStorage_DynamoDb.res.mjs +52 -0
- package/src/adapter/DcbEventLog/DcbEventLogStorage_DynamoDb_Runtime.res +1436 -0
- package/src/adapter/DcbEventLog/DcbEventLogStorage_DynamoDb_Runtime.res.mjs +1143 -0
- package/src/adapter/EventCollector/EventCollectorChannel.res +6 -0
- package/src/adapter/EventCollector/EventCollectorChannel.res.mjs +21 -0
- package/src/adapter/EventCollector/EventCollectorChannel_DynamoDbStream.res +63 -0
- package/src/adapter/EventCollector/EventCollectorChannel_DynamoDbStream.res.mjs +56 -0
- package/src/adapter/EventCollector/EventCollectorChannel_DynamoDbStream_Runtime.res +20 -0
- package/src/adapter/EventCollector/EventCollectorChannel_DynamoDbStream_Runtime.res.mjs +32 -0
- package/src/adapter/EventCollector/EventCollectorChannel_Helpers.res +266 -0
- package/src/adapter/EventCollector/EventCollectorChannel_Helpers.res.mjs +166 -0
- package/src/adapter/EventCollector/EventCollectorChannel_SQS.res +81 -0
- package/src/adapter/EventCollector/EventCollectorChannel_SQS.res.mjs +54 -0
- package/src/adapter/EventCollector/EventCollectorChannel_SQS_FIFO.res +59 -0
- package/src/adapter/EventCollector/EventCollectorChannel_SQS_FIFO.res.mjs +45 -0
- package/src/adapter/EventCollector/EventCollectorChannel_SQS_Runtime.res +91 -0
- package/src/adapter/EventCollector/EventCollectorChannel_SQS_Runtime.res.mjs +89 -0
- package/src/adapter/EventLog/EventLogStorage.res +3 -0
- package/src/adapter/EventLog/EventLogStorage.res.mjs +15 -0
- package/src/adapter/EventLog/EventLogStorage_DynamoDb.res +25 -0
- package/src/adapter/EventLog/EventLogStorage_DynamoDb.res.mjs +34 -0
- package/src/adapter/EventLog/EventLogStorage_DynamoDbStream.res +26 -0
- package/src/adapter/EventLog/EventLogStorage_DynamoDbStream.res.mjs +35 -0
- package/src/adapter/EventLog/EventLogStorage_DynamoDb_Runtime.res +121 -0
- package/src/adapter/EventLog/EventLogStorage_DynamoDb_Runtime.res.mjs +137 -0
- package/src/adapter/EventLogSubscription/EventLogSubscription_AppSync.res +265 -0
- package/src/adapter/EventLogSubscription/EventLogSubscription_AppSync.res.mjs +185 -0
- package/src/adapter/EventTopic/EventTopicPublisher.res +6 -0
- package/src/adapter/EventTopic/EventTopicPublisher.res.mjs +21 -0
- package/src/adapter/EventTopic/EventTopicPublisher_DynamoDbStream.res +25 -0
- package/src/adapter/EventTopic/EventTopicPublisher_DynamoDbStream.res.mjs +28 -0
- package/src/adapter/EventTopic/EventTopicPublisher_SNS.res +40 -0
- package/src/adapter/EventTopic/EventTopicPublisher_SNS.res.mjs +39 -0
- package/src/adapter/EventTopic/EventTopicPublisher_SNS_FIFO.res +39 -0
- package/src/adapter/EventTopic/EventTopicPublisher_SNS_FIFO.res.mjs +38 -0
- package/src/adapter/EventTopic/EventTopicPublisher_SNS_Runtime.res +5 -0
- package/src/adapter/EventTopic/EventTopicPublisher_SNS_Runtime.res.mjs +18 -0
- package/src/adapter/Mcp/MCP_Lambda.res +502 -0
- package/src/adapter/Mcp/MCP_Lambda.res.mjs +289 -0
- package/src/adapter/QueryDb/NodeResolver_AppSync.res +71 -0
- package/src/adapter/QueryDb/NodeResolver_AppSync.res.mjs +44 -0
- package/src/adapter/QueryDb/QueryDbResolvers.res +2 -0
- package/src/adapter/QueryDb/QueryDbResolvers.res.mjs +12 -0
- package/src/adapter/QueryDb/QueryDbResolvers_AppSync.res +434 -0
- package/src/adapter/QueryDb/QueryDbResolvers_AppSync.res.mjs +243 -0
- package/src/adapter/QueryDb/QueryDbResolvers_AppSync_NoOp.res +21 -0
- package/src/adapter/QueryDb/QueryDbResolvers_AppSync_NoOp.res.mjs +14 -0
- package/src/adapter/QueryDb/QueryDbResolvers_NoOp.res +21 -0
- package/src/adapter/QueryDb/QueryDbResolvers_NoOp.res.mjs +14 -0
- package/src/adapter/QueryDb/QueryDbStorage.res +5 -0
- package/src/adapter/QueryDb/QueryDbStorage.res.mjs +18 -0
- package/src/adapter/QueryDb/QueryDbStorage_DynamoDb.res +115 -0
- package/src/adapter/QueryDb/QueryDbStorage_DynamoDb.res.mjs +100 -0
- package/src/adapter/QueryDb/QueryDbStorage_DynamoDbStream.res +52 -0
- package/src/adapter/QueryDb/QueryDbStorage_DynamoDbStream.res.mjs +38 -0
- package/src/adapter/QueryDb/QueryDbStorage_DynamoDb_Runtime.res +271 -0
- package/src/adapter/QueryDb/QueryDbStorage_DynamoDb_Runtime.res.mjs +306 -0
- package/src/adapter/QueryDb/QueryInterceptor_Lambda.res +20 -0
- package/src/adapter/QueryDb/QueryInterceptor_Lambda.res.mjs +22 -0
- package/src/adapter/QueryEngine/QueryEngine.res +3 -0
- package/src/adapter/QueryEngine/QueryEngine.res.mjs +12 -0
- package/src/adapter/QueryEngine/QueryEngine_DynamoDb.res +184 -0
- package/src/adapter/QueryEngine/QueryEngine_DynamoDb.res.mjs +221 -0
- package/src/adapter/Runtime/AdminEventCollectorEntryPoint.mjs +879 -0
- package/src/adapter/Runtime/AggregateEntryPoint.mjs +313 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Micro.res +327 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Micro.res.mjs +239 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Micro_Async.res +331 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Micro_Async.res.mjs +240 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_PerAggregate.res +247 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_PerAggregate.res.mjs +185 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_PerAggregate_Async.res +244 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_PerAggregate_Async.res.mjs +185 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Single.res +347 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Single.res.mjs +244 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Single_Async.res +285 -0
- package/src/adapter/Runtime/AggregateRuntime_Builder_Single_Async.res.mjs +212 -0
- package/src/adapter/Runtime/AutomationSliceEntryPoint.mjs +124 -0
- package/src/adapter/Runtime/AutomationSliceRuntime_Builder_Single.res +187 -0
- package/src/adapter/Runtime/AutomationSliceRuntime_Builder_Single.res.mjs +147 -0
- package/src/adapter/Runtime/CounterEntryPoint.mjs +91 -0
- package/src/adapter/Runtime/DcbCommandTopicEntryPoint.mjs +265 -0
- package/src/adapter/Runtime/EventCollectorRuntime_Builder_PerEventCollector.res +122 -0
- package/src/adapter/Runtime/EventCollectorRuntime_Builder_PerEventCollector.res.mjs +89 -0
- package/src/adapter/Runtime/EventCollectorRuntime_Builder_Single.res +193 -0
- package/src/adapter/Runtime/EventCollectorRuntime_Builder_Single.res.mjs +137 -0
- package/src/adapter/Runtime/EventMapperEntryPoint.mjs +97 -0
- package/src/adapter/Runtime/ExtensionPointEntryPoint.mjs +101 -0
- package/src/adapter/Runtime/ExtensionPointRuntime_Builder_PerExtensionPoint.res +83 -0
- package/src/adapter/Runtime/ExtensionPointRuntime_Builder_PerExtensionPoint.res.mjs +59 -0
- package/src/adapter/Runtime/HandlerFactoryHelpers.mjs +142 -0
- package/src/adapter/Runtime/HeartbeatEntryPoint.mjs +38 -0
- package/src/adapter/Runtime/PluginExtensionPointEntryPoint.mjs +137 -0
- package/src/adapter/Runtime/ReadModelEntryPoint.mjs +143 -0
- package/src/adapter/Runtime/RuntimeEnvironment.res +1 -0
- package/src/adapter/Runtime/RuntimeEnvironment.res.mjs +9 -0
- package/src/adapter/Runtime/RuntimeEnvironment_Lambda.res +254 -0
- package/src/adapter/Runtime/RuntimeEnvironment_Lambda.res.mjs +169 -0
- package/src/adapter/Runtime/SideEffectEntryPoint.mjs +81 -0
- package/src/adapter/Runtime/SideEffectHandlerRuntime_Builder_Single.res +178 -0
- package/src/adapter/Runtime/SideEffectHandlerRuntime_Builder_Single.res.mjs +129 -0
- package/src/adapter/Runtime/StateChangeSliceRuntime_Builder_Single.res +166 -0
- package/src/adapter/Runtime/StateChangeSliceRuntime_Builder_Single.res.mjs +87 -0
- package/src/adapter/Runtime/StateViewSliceEntryPoint.mjs +136 -0
- package/src/adapter/Runtime/StateViewSliceRuntime_Builder_Single.res +344 -0
- package/src/adapter/Runtime/StateViewSliceRuntime_Builder_Single.res.mjs +242 -0
- package/src/adapter/Runtime/TaskBucketEntryPoint.mjs +150 -0
- package/src/adapter/Runtime/TaskRuntime_Builder_PerBucket.res +123 -0
- package/src/adapter/Runtime/TaskRuntime_Builder_PerBucket.res.mjs +74 -0
- package/src/adapter/ScheduledPublisher/ScheduledPublisher.res +2 -0
- package/src/adapter/ScheduledPublisher/ScheduledPublisher.res.mjs +12 -0
- package/src/adapter/ScheduledPublisher/ScheduledPublisher_CloudWatchEvents.res +54 -0
- package/src/adapter/ScheduledPublisher/ScheduledPublisher_CloudWatchEvents.res.mjs +41 -0
- package/src/adapter/ScheduledPublisher/ScheduledPublisher_CloudWatchEvents_Runtime.res +97 -0
- package/src/adapter/ScheduledPublisher/ScheduledPublisher_CloudWatchEvents_Runtime.res.mjs +85 -0
- package/src/adapter/StateTopic/StateTopic_AppSync.res +418 -0
- package/src/adapter/StateTopic/StateTopic_AppSync.res.mjs +295 -0
- package/src/adapter/Task/TaskBucket.res +1 -0
- package/src/adapter/Task/TaskBucket.res.mjs +9 -0
- package/src/adapter/Task/TaskBucket_S3.res +157 -0
- package/src/adapter/Task/TaskBucket_S3.res.mjs +108 -0
- package/src/adapter/Task/TaskBucket_S3_Runtime.res +11 -0
- package/src/adapter/Task/TaskBucket_S3_Runtime.res.mjs +15 -0
- package/src/components/Aggregate_Builder.res +1 -0
- package/src/components/Aggregate_Builder.res.mjs +25 -0
- package/src/components/Aggregate_Builder_Micro.res +63 -0
- package/src/components/Aggregate_Builder_Micro.res.mjs +80 -0
- package/src/components/Aggregate_Builder_NoResolver.res +61 -0
- package/src/components/Aggregate_Builder_NoResolver.res.mjs +80 -0
- package/src/components/Aggregate_Builder_PerAggregate.res +57 -0
- package/src/components/Aggregate_Builder_PerAggregate.res.mjs +80 -0
- package/src/components/Aggregate_Builder_Single.res +59 -0
- package/src/components/Aggregate_Builder_Single.res.mjs +80 -0
- package/src/components/Aggregate_Builder_Single_Async.res +59 -0
- package/src/components/Aggregate_Builder_Single_Async.res.mjs +80 -0
- package/src/components/Api/AppSync_Adapter.res +500 -0
- package/src/components/Api/AppSync_Adapter.res.mjs +396 -0
- package/src/components/AutomationSlice_Builder.res +52 -0
- package/src/components/AutomationSlice_Builder.res.mjs +72 -0
- package/src/components/AutomationSlice_Builder_Bundled.res.mjs +70 -0
- package/src/components/Counter_Builder.res +10 -0
- package/src/components/Counter_Builder.res.mjs +16 -0
- package/src/components/DataCleaner.res +170 -0
- package/src/components/DataCleaner.res.mjs +2 -0
- package/src/components/DcbEventLog_Builder.res +8 -0
- package/src/components/DcbEventLog_Builder.res.mjs +14 -0
- package/src/components/ExtensionPoint_Builder.res +16 -0
- package/src/components/ExtensionPoint_Builder.res.mjs +37 -0
- package/src/components/ForeignReadModel_Builder.res +19 -0
- package/src/components/ForeignReadModel_Builder.res.mjs +48 -0
- package/src/components/InboundTranslationSlice_Builder.res +25 -0
- package/src/components/InboundTranslationSlice_Builder.res.mjs +31 -0
- package/src/components/OutboundTranslationSlice_Builder.res +60 -0
- package/src/components/OutboundTranslationSlice_Builder.res.mjs +76 -0
- package/src/components/OutboundTranslationSlice_Builder_Bundled.res.mjs +75 -0
- package/src/components/Plugin.res +29 -0
- package/src/components/Plugin.res.mjs +63 -0
- package/src/components/ReadModel_Builder.res +1 -0
- package/src/components/ReadModel_Builder.res.mjs +19 -0
- package/src/components/ReadModel_Builder_NoResolver.res +55 -0
- package/src/components/ReadModel_Builder_NoResolver.res.mjs +64 -0
- package/src/components/ReadModel_Builder_NoResolver_Stream.res +60 -0
- package/src/components/ReadModel_Builder_NoResolver_Stream.res.mjs +64 -0
- package/src/components/ReadModel_Builder_PerReadModel.res +53 -0
- package/src/components/ReadModel_Builder_PerReadModel.res.mjs +66 -0
- package/src/components/ReadModel_Builder_Single.res +52 -0
- package/src/components/ReadModel_Builder_Single.res.mjs +66 -0
- package/src/components/ReadModel_Builder_Single_Stream.res +60 -0
- package/src/components/ReadModel_Builder_Single_Stream.res.mjs +66 -0
- package/src/components/Scheduler.res +1 -0
- package/src/components/Scheduler.res.mjs +13 -0
- package/src/components/SideEffectHandler.res +1 -0
- package/src/components/SideEffectHandler.res.mjs +19 -0
- package/src/components/SideEffectHandler_PerSideEffectHandler.res +13 -0
- package/src/components/SideEffectHandler_PerSideEffectHandler.res.mjs +52 -0
- package/src/components/SideEffectHandler_Single.res +54 -0
- package/src/components/SideEffectHandler_Single.res.mjs +60 -0
- package/src/components/StateChangeSlice_Builder.res +17 -0
- package/src/components/StateChangeSlice_Builder.res.mjs +23 -0
- package/src/components/StateViewSlice_Builder.res +46 -0
- package/src/components/StateViewSlice_Builder.res.mjs +68 -0
- package/src/components/StateViewSlice_Builder_Bundled.res.mjs +69 -0
- package/src/components/StateViewSlice_Builder_Stream.res +50 -0
- package/src/components/StateViewSlice_Builder_Stream.res.mjs +68 -0
- package/src/components/Task_Builder.res +1 -0
- package/src/components/Task_Builder.res.mjs +28 -0
- package/src/components/Task_Builder_PerBucket.res +22 -0
- package/src/components/Task_Builder_PerBucket.res.mjs +63 -0
- package/src/components/Vpc.res +214 -0
- package/src/components/Vpc.res.mjs +117 -0
- package/src/components/Vpc.resi +22 -0
- package/src/errors/AppSync_Error.res +36 -0
- package/src/errors/AppSync_Error.res.mjs +38 -0
- package/src/errors/Cognito_Error.res +36 -0
- package/src/errors/Cognito_Error.res.mjs +38 -0
- package/src/errors/DynamoDb_Error.res +75 -0
- package/src/errors/DynamoDb_Error.res.mjs +86 -0
- package/src/errors/Kinesis_Error.res +36 -0
- package/src/errors/Kinesis_Error.res.mjs +38 -0
- package/src/errors/SNS_Error.res +34 -0
- package/src/errors/SNS_Error.res.mjs +38 -0
- package/src/errors/SQS_Error.res +40 -0
- package/src/errors/SQS_Error.res.mjs +41 -0
- package/src/plugin/cloner/ClonerRunner.res +1 -0
- package/src/plugin/cloner/ClonerRunner.res.mjs +9 -0
- package/src/plugin/cloner/ClonerRunner_Fargate.res +362 -0
- package/src/plugin/cloner/ClonerRunner_Fargate.res.mjs +246 -0
- package/src/plugin/cloner/ClonerRunner_Fargate_Runtime.res +42 -0
- package/src/plugin/cloner/ClonerRunner_Fargate_Runtime.res.mjs +45 -0
- package/src/plugin/heartbeat/HeartbeatRunner.res +1 -0
- package/src/plugin/heartbeat/HeartbeatRunner.res.mjs +9 -0
- package/src/plugin/heartbeat/HeartbeatRunner_CloudWatchEvents.res +96 -0
- package/src/plugin/heartbeat/HeartbeatRunner_CloudWatchEvents.res.mjs +69 -0
- package/src/plugin/runtime/PluginExtensionPointRuntime_Builder.res +115 -0
- package/src/plugin/runtime/PluginExtensionPointRuntime_Builder.res.mjs +88 -0
- package/src/plugin/runtime/PluginRuntimeOperations.res +5 -0
- package/src/plugin/runtime/PluginRuntimeOperations.res.mjs +14 -0
- package/src/plugin/runtime/PluginRuntime_Builder.res +769 -0
- package/src/plugin/runtime/PluginRuntime_Builder.res.mjs +464 -0
- package/src/plugin/runtime/Util_PluginMessage_Runtime.res +13 -0
- package/src/plugin/runtime/Util_PluginMessage_Runtime.res.mjs +19 -0
- package/src/plugin/stack/Plugin_ExtensionPoint_Builder.res +28 -0
- package/src/plugin/stack/Plugin_ExtensionPoint_Builder.res.mjs +67 -0
- package/src/plugin/stack/Plugin_Stack.res +439 -0
- package/src/plugin/stack/Plugin_Stack.res.mjs +263 -0
- package/src/util/Util.res +29 -0
- package/src/util/Util.res.mjs +93 -0
- package/src/util/Util_AppSync.res +36 -0
- package/src/util/Util_AppSync.res.mjs +35 -0
- package/src/util/Util_AppSync_Caller.res +213 -0
- package/src/util/Util_AppSync_Caller.res.mjs +170 -0
- package/src/util/Util_Bundle.res +255 -0
- package/src/util/Util_Bundle.res.mjs +179 -0
- package/src/util/Util_Cloudwatch.res +14 -0
- package/src/util/Util_Cloudwatch.res.mjs +19 -0
- package/src/util/Util_CognitoGroupUser.res +39 -0
- package/src/util/Util_CognitoGroupUser.res.mjs +32 -0
- package/src/util/Util_CognitoGroupUser_Runtime.res +65 -0
- package/src/util/Util_CognitoGroupUser_Runtime.res.mjs +50 -0
- package/src/util/Util_Cognito_Runtime.res +52 -0
- package/src/util/Util_Cognito_Runtime.res.mjs +35 -0
- package/src/util/Util_DeadLetterQueue.res +154 -0
- package/src/util/Util_DeadLetterQueue.res.mjs +158 -0
- package/src/util/Util_DynamoDb.res +210 -0
- package/src/util/Util_DynamoDb.res.mjs +218 -0
- package/src/util/Util_DynamoDbStream.res +138 -0
- package/src/util/Util_DynamoDbStream.res.mjs +134 -0
- package/src/util/Util_DynamoDbStream_Runtime.res +94 -0
- package/src/util/Util_DynamoDbStream_Runtime.res.mjs +131 -0
- package/src/util/Util_DynamoDb_Runtime.res +216 -0
- package/src/util/Util_DynamoDb_Runtime.res.mjs +257 -0
- package/src/util/Util_DynamoDb_TableManager.res +23 -0
- package/src/util/Util_DynamoDb_TableManager.res.mjs +35 -0
- package/src/util/Util_DynamoDb_TableManager.resi +3 -0
- package/src/util/Util_Env.res +5 -0
- package/src/util/Util_Env.res.mjs +2 -0
- package/src/util/Util_EventSourceMapping.res +49 -0
- package/src/util/Util_EventSourceMapping.res.mjs +32 -0
- package/src/util/Util_HostUiDomain.res +28 -0
- package/src/util/Util_HostUiDomain.res.mjs +26 -0
- package/src/util/Util_IAM_Role.res +14 -0
- package/src/util/Util_IAM_Role.res.mjs +28 -0
- package/src/util/Util_Kinesis_Runtime.res +20 -0
- package/src/util/Util_Kinesis_Runtime.res.mjs +24 -0
- package/src/util/Util_Lambda.res +39 -0
- package/src/util/Util_Lambda.res.mjs +45 -0
- package/src/util/Util_LocalConfig.res +119 -0
- package/src/util/Util_LocalConfig.res.mjs +112 -0
- package/src/util/Util_ResourceNaming.res +15 -0
- package/src/util/Util_ResourceNaming.res.mjs +26 -0
- package/src/util/Util_S3.res +17 -0
- package/src/util/Util_S3.res.mjs +30 -0
- package/src/util/Util_S3_Runtime.res +11 -0
- package/src/util/Util_S3_Runtime.res.mjs +15 -0
- package/src/util/Util_SNS.res +33 -0
- package/src/util/Util_SNS.res.mjs +50 -0
- package/src/util/Util_SNS_FIFO.res +21 -0
- package/src/util/Util_SNS_FIFO.res.mjs +27 -0
- package/src/util/Util_SNS_Runtime.res +33 -0
- package/src/util/Util_SNS_Runtime.res.mjs +27 -0
- package/src/util/Util_SQS.res +70 -0
- package/src/util/Util_SQS.res.mjs +83 -0
- package/src/util/Util_SQS_FIFO.res +16 -0
- package/src/util/Util_SQS_FIFO.res.mjs +28 -0
- package/src/util/Util_SQS_Runtime.res +169 -0
- package/src/util/Util_SQS_Runtime.res.mjs +150 -0
- package/src/util/Util_SesPolicy_Runtime.res +54 -0
- package/src/util/Util_SesPolicy_Runtime.res.mjs +55 -0
- package/src/util/Util_StaticBundle.res +124 -0
- package/src/util/Util_StaticBundle.res.mjs +132 -0
- package/src/util/Util_Vpc.res +22 -0
- package/src/util/Util_Vpc.res.mjs +27 -0
- package/tests/AppSync_AdapterTest.res +396 -0
- package/tests/AppSync_AdapterTest.res.mjs +326 -0
- package/tests/AppSync_Resolver_RetryingTest.res +59 -0
- package/tests/AppSync_Resolver_RetryingTest.res.mjs +66 -0
- package/tests/Auth_CognitoTest.res +203 -0
- package/tests/Auth_CognitoTest.res.mjs +248 -0
- package/tests/DcbEventLogStorage_DynamoDb_RuntimeTest.res +602 -0
- package/tests/DcbEventLogStorage_DynamoDb_RuntimeTest.res.mjs +742 -0
- package/tests/EventLogStorage_DynamoDb_RuntimeTest.res +57 -0
- package/tests/EventLogStorage_DynamoDb_RuntimeTest.res.mjs +68 -0
- package/tests/MCP_LambdaTest.res +101 -0
- package/tests/MCP_LambdaTest.res.mjs +56 -0
- package/tests/Util_HostUiDomainTest.res +90 -0
- package/tests/Util_HostUiDomainTest.res.mjs +50 -0
- package/tests/Util_SQS_RuntimeTest.res +46 -0
- package/tests/Util_SQS_RuntimeTest.res.mjs +45 -0
- package/tests/Util_StaticBundleTest.res +136 -0
- package/tests/Util_StaticBundleTest.res.mjs +149 -0
- package/tests/integration/DcbCommandTopicEntryPoint_IntegrationTest.res +101 -0
- package/tests/integration/DcbCommandTopicEntryPoint_IntegrationTest.res.mjs +91 -0
- package/tests/integration/DcbEventLogStorage_DynamoDb_IntegrationTest.res +315 -0
- package/tests/integration/DcbEventLogStorage_DynamoDb_IntegrationTest.res.mjs +435 -0
- package/tests/integration/DcbIntegrationHarness.res +102 -0
- package/tests/integration/DcbIntegrationHarness.res.mjs +163 -0
- package/tests/integration/EpTestSlice.res +28 -0
- package/tests/integration/EpTestSlice.res.mjs +43 -0
- package/tests/integration/EpTestSliceBehavior.res +18 -0
- package/tests/integration/EpTestSliceBehavior.res.mjs +35 -0
package/all-licenses.csv
ADDED
|
@@ -0,0 +1,565 @@
|
|
|
1
|
+
"module name","license","repository"
|
|
2
|
+
"@ampproject/remapping@2.2.0","Apache-2.0","https://github.com/ampproject/remapping"
|
|
3
|
+
"@ampproject/remapping@2.2.1","Apache-2.0","https://github.com/ampproject/remapping"
|
|
4
|
+
"@babel/code-frame@7.18.6","MIT","https://github.com/babel/babel"
|
|
5
|
+
"@babel/code-frame@7.21.4","MIT","https://github.com/babel/babel"
|
|
6
|
+
"@babel/compat-data@7.20.10","MIT","https://github.com/babel/babel"
|
|
7
|
+
"@babel/compat-data@7.21.4","MIT","https://github.com/babel/babel"
|
|
8
|
+
"@babel/core@7.20.12","MIT","https://github.com/babel/babel"
|
|
9
|
+
"@babel/core@7.21.4","MIT","https://github.com/babel/babel"
|
|
10
|
+
"@babel/generator@7.20.7","MIT","https://github.com/babel/babel"
|
|
11
|
+
"@babel/generator@7.21.4","MIT","https://github.com/babel/babel"
|
|
12
|
+
"@babel/helper-compilation-targets@7.20.7","MIT","https://github.com/babel/babel"
|
|
13
|
+
"@babel/helper-compilation-targets@7.21.4","MIT","https://github.com/babel/babel"
|
|
14
|
+
"@babel/helper-environment-visitor@7.18.9","MIT","https://github.com/babel/babel"
|
|
15
|
+
"@babel/helper-function-name@7.19.0","MIT","https://github.com/babel/babel"
|
|
16
|
+
"@babel/helper-function-name@7.21.0","MIT","https://github.com/babel/babel"
|
|
17
|
+
"@babel/helper-hoist-variables@7.18.6","MIT","https://github.com/babel/babel"
|
|
18
|
+
"@babel/helper-module-imports@7.18.6","MIT","https://github.com/babel/babel"
|
|
19
|
+
"@babel/helper-module-imports@7.21.4","MIT","https://github.com/babel/babel"
|
|
20
|
+
"@babel/helper-module-transforms@7.20.11","MIT","https://github.com/babel/babel"
|
|
21
|
+
"@babel/helper-module-transforms@7.21.2","MIT","https://github.com/babel/babel"
|
|
22
|
+
"@babel/helper-plugin-utils@7.20.2","MIT","https://github.com/babel/babel"
|
|
23
|
+
"@babel/helper-simple-access@7.20.2","MIT","https://github.com/babel/babel"
|
|
24
|
+
"@babel/helper-split-export-declaration@7.18.6","MIT","https://github.com/babel/babel"
|
|
25
|
+
"@babel/helper-string-parser@7.19.4","MIT","https://github.com/babel/babel"
|
|
26
|
+
"@babel/helper-validator-identifier@7.19.1","MIT","https://github.com/babel/babel"
|
|
27
|
+
"@babel/helper-validator-option@7.18.6","MIT","https://github.com/babel/babel"
|
|
28
|
+
"@babel/helper-validator-option@7.21.0","MIT","https://github.com/babel/babel"
|
|
29
|
+
"@babel/helpers@7.20.7","MIT","https://github.com/babel/babel"
|
|
30
|
+
"@babel/helpers@7.21.0","MIT","https://github.com/babel/babel"
|
|
31
|
+
"@babel/highlight@7.18.6","MIT","https://github.com/babel/babel"
|
|
32
|
+
"@babel/parser@7.20.7","MIT","https://github.com/babel/babel"
|
|
33
|
+
"@babel/parser@7.21.4","MIT","https://github.com/babel/babel"
|
|
34
|
+
"@babel/plugin-syntax-async-generators@7.8.4","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators"
|
|
35
|
+
"@babel/plugin-syntax-bigint@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint"
|
|
36
|
+
"@babel/plugin-syntax-class-properties@7.12.13","MIT","https://github.com/babel/babel"
|
|
37
|
+
"@babel/plugin-syntax-import-meta@7.10.4","MIT","https://github.com/babel/babel"
|
|
38
|
+
"@babel/plugin-syntax-json-strings@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings"
|
|
39
|
+
"@babel/plugin-syntax-logical-assignment-operators@7.10.4","MIT","https://github.com/babel/babel"
|
|
40
|
+
"@babel/plugin-syntax-nullish-coalescing-operator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator"
|
|
41
|
+
"@babel/plugin-syntax-numeric-separator@7.10.4","MIT","https://github.com/babel/babel"
|
|
42
|
+
"@babel/plugin-syntax-object-rest-spread@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread"
|
|
43
|
+
"@babel/plugin-syntax-optional-catch-binding@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding"
|
|
44
|
+
"@babel/plugin-syntax-optional-chaining@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining"
|
|
45
|
+
"@babel/plugin-syntax-top-level-await@7.14.5","MIT","https://github.com/babel/babel"
|
|
46
|
+
"@babel/plugin-syntax-typescript@7.20.0","MIT","https://github.com/babel/babel"
|
|
47
|
+
"@babel/plugin-syntax-typescript@7.21.4","MIT","https://github.com/babel/babel"
|
|
48
|
+
"@babel/template@7.20.7","MIT","https://github.com/babel/babel"
|
|
49
|
+
"@babel/traverse@7.20.12","MIT","https://github.com/babel/babel"
|
|
50
|
+
"@babel/traverse@7.21.4","MIT","https://github.com/babel/babel"
|
|
51
|
+
"@babel/types@7.20.7","MIT","https://github.com/babel/babel"
|
|
52
|
+
"@babel/types@7.21.4","MIT","https://github.com/babel/babel"
|
|
53
|
+
"@bcoe/v8-coverage@0.2.3","MIT","https://github.com/demurgos/v8-coverage"
|
|
54
|
+
"@cspotcode/source-map-support@0.8.1","MIT","https://github.com/cspotcode/node-source-map-support"
|
|
55
|
+
"@glennsl/rescript-jest@0.9.2","MIT","https://github.com/glennsl/rescript-jest"
|
|
56
|
+
"@grpc/grpc-js@1.3.8","Apache-2.0","https://github.com/grpc/grpc-node/tree/master/packages/grpc-js"
|
|
57
|
+
"@istanbuljs/load-nyc-config@1.1.0","ISC","https://github.com/istanbuljs/load-nyc-config"
|
|
58
|
+
"@istanbuljs/schema@0.1.3","MIT","https://github.com/istanbuljs/schema"
|
|
59
|
+
"@jest/console@27.5.1","MIT","https://github.com/facebook/jest"
|
|
60
|
+
"@jest/core@27.5.1","MIT","https://github.com/facebook/jest"
|
|
61
|
+
"@jest/environment@27.5.1","MIT","https://github.com/facebook/jest"
|
|
62
|
+
"@jest/fake-timers@27.5.1","MIT","https://github.com/facebook/jest"
|
|
63
|
+
"@jest/globals@27.5.1","MIT","https://github.com/facebook/jest"
|
|
64
|
+
"@jest/reporters@27.5.1","MIT","https://github.com/facebook/jest"
|
|
65
|
+
"@jest/source-map@27.5.1","MIT","https://github.com/facebook/jest"
|
|
66
|
+
"@jest/test-result@27.5.1","MIT","https://github.com/facebook/jest"
|
|
67
|
+
"@jest/test-sequencer@27.5.1","MIT","https://github.com/facebook/jest"
|
|
68
|
+
"@jest/transform@27.5.1","MIT","https://github.com/facebook/jest"
|
|
69
|
+
"@jest/types@25.5.0","MIT","https://github.com/facebook/jest"
|
|
70
|
+
"@jest/types@27.5.1","MIT","https://github.com/facebook/jest"
|
|
71
|
+
"@jridgewell/gen-mapping@0.1.1","MIT","https://github.com/jridgewell/gen-mapping"
|
|
72
|
+
"@jridgewell/gen-mapping@0.3.2","MIT","https://github.com/jridgewell/gen-mapping"
|
|
73
|
+
"@jridgewell/gen-mapping@0.3.3","MIT","https://github.com/jridgewell/gen-mapping"
|
|
74
|
+
"@jridgewell/resolve-uri@3.1.0","MIT","https://github.com/jridgewell/resolve-uri"
|
|
75
|
+
"@jridgewell/set-array@1.1.2","MIT","https://github.com/jridgewell/set-array"
|
|
76
|
+
"@jridgewell/sourcemap-codec@1.4.14","MIT","https://github.com/jridgewell/sourcemap-codec"
|
|
77
|
+
"@jridgewell/sourcemap-codec@1.4.15","MIT","https://github.com/jridgewell/sourcemap-codec"
|
|
78
|
+
"@jridgewell/trace-mapping@0.3.17","MIT","https://github.com/jridgewell/trace-mapping"
|
|
79
|
+
"@jridgewell/trace-mapping@0.3.18","MIT","https://github.com/jridgewell/trace-mapping"
|
|
80
|
+
"@jridgewell/trace-mapping@0.3.9","MIT","https://github.com/jridgewell/trace-mapping"
|
|
81
|
+
"@logdna/tail-file@2.2.0","MIT*","https://github.com/logdna/tail-file-node"
|
|
82
|
+
"@opentelemetry/api-metrics@0.32.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
83
|
+
"@opentelemetry/api@1.3.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
84
|
+
"@opentelemetry/context-async-hooks@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
85
|
+
"@opentelemetry/core@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
86
|
+
"@opentelemetry/exporter-zipkin@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
87
|
+
"@opentelemetry/instrumentation-grpc@0.32.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
88
|
+
"@opentelemetry/instrumentation@0.32.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
89
|
+
"@opentelemetry/propagator-b3@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
90
|
+
"@opentelemetry/propagator-jaeger@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
91
|
+
"@opentelemetry/resources@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
92
|
+
"@opentelemetry/sdk-trace-base@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
93
|
+
"@opentelemetry/sdk-trace-node@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
94
|
+
"@opentelemetry/semantic-conventions@1.6.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
95
|
+
"@opentelemetry/semantic-conventions@1.8.0","Apache-2.0","https://github.com/open-telemetry/opentelemetry-js"
|
|
96
|
+
"@pulumi/aws@5.27.0","Apache-2.0","https://github.com/pulumi/pulumi-aws"
|
|
97
|
+
"@pulumi/pulumi@3.49.0","Apache-2.0","https://github.com/pulumi/pulumi"
|
|
98
|
+
"@pulumi/query@0.3.0","Apache-2.0","https://github.com/pulumi/pulumi-query"
|
|
99
|
+
"@rescript/std@10.1.4","GPL-3.0*",""
|
|
100
|
+
"@reventless/bs-aws-sdk@1.2.1-alpha.2","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
101
|
+
"@reventless/bs-fast-csv@0.3.1-alpha.0","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
102
|
+
"@reventless/bs-hash-obj@0.2.0","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
103
|
+
"@reventless/bs-node-streams@0.2.0","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
104
|
+
"@reventless/bs-pulumi-aws@1.2.3","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
105
|
+
"@reventless/bs-pulumi-pulumi@1.2.0","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
106
|
+
"@reventless/bs-ssh2@0.2.0","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
107
|
+
"@reventless/bs-uuid@0.2.0","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
108
|
+
"@reventless/reventless-aws@1.3.0-rescript.78","MIT","git://gitlab.com/reventless/reventless-universe"
|
|
109
|
+
"@reventless/reventless-spec@1.3.0-rescript.28","UNKNOWN","git://gitlab.com/reventless/reventless-universe"
|
|
110
|
+
"@reventless/reventless@1.3.0-rescript.69","Custom: https://serverless.com","git://gitlab.com/reventless/reventless-universe"
|
|
111
|
+
"@ryyppy/rescript-promise@2.1.0","MIT",""
|
|
112
|
+
"@sinonjs/commons@1.8.6","BSD-3-Clause","https://github.com/sinonjs/commons"
|
|
113
|
+
"@sinonjs/fake-timers@8.1.0","BSD-3-Clause","https://github.com/sinonjs/fake-timers"
|
|
114
|
+
"@tootallnate/once@1.1.2","MIT","https://github.com/TooTallNate/once"
|
|
115
|
+
"@tsconfig/node10@1.0.9","MIT","https://github.com/tsconfig/bases"
|
|
116
|
+
"@tsconfig/node12@1.0.11","MIT","https://github.com/tsconfig/bases"
|
|
117
|
+
"@tsconfig/node14@1.0.3","MIT","https://github.com/tsconfig/bases"
|
|
118
|
+
"@tsconfig/node16@1.0.3","MIT","https://github.com/tsconfig/bases"
|
|
119
|
+
"@types/babel__core@7.1.20","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
120
|
+
"@types/babel__core@7.20.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
121
|
+
"@types/babel__generator@7.6.4","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
122
|
+
"@types/babel__template@7.4.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
123
|
+
"@types/babel__traverse@7.18.3","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
124
|
+
"@types/graceful-fs@4.1.6","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
125
|
+
"@types/istanbul-lib-coverage@2.0.4","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
126
|
+
"@types/istanbul-lib-report@3.0.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
127
|
+
"@types/istanbul-reports@1.1.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
128
|
+
"@types/istanbul-reports@3.0.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
129
|
+
"@types/node@12.20.55","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
130
|
+
"@types/node@18.11.15","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
131
|
+
"@types/node@18.11.17","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
132
|
+
"@types/node@18.11.18","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
133
|
+
"@types/node@18.15.11","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
134
|
+
"@types/normalize-package-data@2.4.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
135
|
+
"@types/prettier@2.7.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
136
|
+
"@types/stack-utils@2.0.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
137
|
+
"@types/yargs-parser@21.0.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
138
|
+
"@types/yargs@15.0.15","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
139
|
+
"@types/yargs@16.0.5","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
140
|
+
"abab@2.0.6","BSD-3-Clause","https://github.com/jsdom/abab"
|
|
141
|
+
"acorn-globals@6.0.0","MIT","https://github.com/ForbesLindesay/acorn-globals"
|
|
142
|
+
"acorn-walk@7.2.0","MIT","https://github.com/acornjs/acorn"
|
|
143
|
+
"acorn-walk@8.2.0","MIT","https://github.com/acornjs/acorn"
|
|
144
|
+
"acorn@7.4.1","MIT","https://github.com/acornjs/acorn"
|
|
145
|
+
"acorn@8.8.2","MIT","https://github.com/acornjs/acorn"
|
|
146
|
+
"agent-base@6.0.2","MIT","https://github.com/TooTallNate/node-agent-base"
|
|
147
|
+
"ansi-escapes@4.3.2","MIT","https://github.com/sindresorhus/ansi-escapes"
|
|
148
|
+
"ansi-regex@5.0.1","MIT","https://github.com/chalk/ansi-regex"
|
|
149
|
+
"ansi-styles@3.2.1","MIT","https://github.com/chalk/ansi-styles"
|
|
150
|
+
"ansi-styles@4.3.0","MIT","https://github.com/chalk/ansi-styles"
|
|
151
|
+
"ansi-styles@5.2.0","MIT","https://github.com/chalk/ansi-styles"
|
|
152
|
+
"anymatch@3.1.3","ISC","https://github.com/micromatch/anymatch"
|
|
153
|
+
"arg@4.1.3","MIT","https://github.com/zeit/arg"
|
|
154
|
+
"argparse@1.0.10","MIT","https://github.com/nodeca/argparse"
|
|
155
|
+
"array.prototype.reduce@1.0.5","MIT","https://github.com/es-shims/Array.prototype.reduce"
|
|
156
|
+
"arrify@1.0.1","MIT","https://github.com/sindresorhus/arrify"
|
|
157
|
+
"asap@2.0.6","MIT","https://github.com/kriskowal/asap"
|
|
158
|
+
"asn1@0.2.6","MIT","https://github.com/joyent/node-asn1"
|
|
159
|
+
"asynckit@0.4.0","MIT","https://github.com/alexindigo/asynckit"
|
|
160
|
+
"available-typed-arrays@1.0.5","MIT","https://github.com/inspect-js/available-typed-arrays"
|
|
161
|
+
"aws-sdk@2.1274.0","Apache-2.0","https://github.com/aws/aws-sdk-js"
|
|
162
|
+
"aws-sdk@2.1278.0","Apache-2.0","https://github.com/aws/aws-sdk-js"
|
|
163
|
+
"babel-jest@27.5.1","MIT","https://github.com/facebook/jest"
|
|
164
|
+
"babel-plugin-istanbul@6.1.1","BSD-3-Clause","https://github.com/istanbuljs/babel-plugin-istanbul"
|
|
165
|
+
"babel-plugin-jest-hoist@27.5.1","MIT","https://github.com/facebook/jest"
|
|
166
|
+
"babel-preset-current-node-syntax@1.0.1","MIT","https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax"
|
|
167
|
+
"babel-preset-jest@27.5.1","MIT","https://github.com/facebook/jest"
|
|
168
|
+
"balanced-match@1.0.0","MIT","https://github.com/juliangruber/balanced-match"
|
|
169
|
+
"balanced-match@1.0.2","MIT","https://github.com/juliangruber/balanced-match"
|
|
170
|
+
"base64-js@1.5.1","MIT","https://github.com/beatgammit/base64-js"
|
|
171
|
+
"bcrypt-pbkdf@1.0.2","BSD-3-Clause","https://github.com/joyent/node-bcrypt-pbkdf"
|
|
172
|
+
"brace-expansion@1.1.11","MIT","https://github.com/juliangruber/brace-expansion"
|
|
173
|
+
"braces@3.0.2","MIT","https://github.com/micromatch/braces"
|
|
174
|
+
"browser-process-hrtime@1.0.0","BSD-2-Clause","https://github.com/kumavis/browser-process-hrtime"
|
|
175
|
+
"browser-resolve@1.11.3","MIT","https://github.com/shtylman/node-browser-resolve"
|
|
176
|
+
"browserslist@4.21.4","MIT","https://github.com/browserslist/browserslist"
|
|
177
|
+
"browserslist@4.21.5","MIT","https://github.com/browserslist/browserslist"
|
|
178
|
+
"bs-moment@0.8.0","MIT","https://github.com/Jimexist/bs-moment"
|
|
179
|
+
"bs-platform@8.4.2","GPL-3.0*","https://github.com/rescript-lang/rescript-compiler"
|
|
180
|
+
"bser@2.1.1","Apache-2.0","https://github.com/facebook/watchman"
|
|
181
|
+
"buffer-from@1.1.1","MIT","https://github.com/LinusU/buffer-from"
|
|
182
|
+
"buffer-from@1.1.2","MIT","https://github.com/LinusU/buffer-from"
|
|
183
|
+
"buffer@4.9.2","MIT","https://github.com/feross/buffer"
|
|
184
|
+
"builtin-modules@3.0.0","MIT","https://github.com/sindresorhus/builtin-modules"
|
|
185
|
+
"call-bind@1.0.2","MIT","https://github.com/ljharb/call-bind"
|
|
186
|
+
"callsites@3.1.0","MIT","https://github.com/sindresorhus/callsites"
|
|
187
|
+
"camelcase@5.3.1","MIT","https://github.com/sindresorhus/camelcase"
|
|
188
|
+
"camelcase@6.3.0","MIT","https://github.com/sindresorhus/camelcase"
|
|
189
|
+
"caniuse-lite@1.0.30001442","CC-BY-4.0","https://github.com/browserslist/caniuse-lite"
|
|
190
|
+
"caniuse-lite@1.0.30001480","CC-BY-4.0","https://github.com/browserslist/caniuse-lite"
|
|
191
|
+
"chalk@2.4.2","MIT","https://github.com/chalk/chalk"
|
|
192
|
+
"chalk@3.0.0","MIT","https://github.com/chalk/chalk"
|
|
193
|
+
"chalk@4.1.2","MIT","https://github.com/chalk/chalk"
|
|
194
|
+
"char-regex@1.0.2","MIT","https://github.com/Richienb/char-regex"
|
|
195
|
+
"ci-info@3.8.0","MIT","https://github.com/watson/ci-info"
|
|
196
|
+
"cjs-module-lexer@1.2.2","MIT","https://github.com/guybedford/cjs-module-lexer"
|
|
197
|
+
"cliui@7.0.4","ISC","https://github.com/yargs/cliui"
|
|
198
|
+
"co@4.6.0","MIT","https://github.com/tj/co"
|
|
199
|
+
"collect-v8-coverage@1.0.1","MIT","https://github.com/SimenB/collect-v8-coverage"
|
|
200
|
+
"color-convert@1.9.3","MIT","https://github.com/Qix-/color-convert"
|
|
201
|
+
"color-convert@2.0.1","MIT","https://github.com/Qix-/color-convert"
|
|
202
|
+
"color-name@1.1.3","MIT","https://github.com/dfcreative/color-name"
|
|
203
|
+
"color-name@1.1.4","MIT","https://github.com/colorjs/color-name"
|
|
204
|
+
"combined-stream@1.0.8","MIT","https://github.com/felixge/node-combined-stream"
|
|
205
|
+
"concat-map@0.0.1","MIT","https://github.com/substack/node-concat-map"
|
|
206
|
+
"convert-source-map@1.9.0","MIT","https://github.com/thlorenz/convert-source-map"
|
|
207
|
+
"create-require@1.1.1","MIT","https://github.com/nuxt-contrib/create-require"
|
|
208
|
+
"cross-spawn@7.0.3","MIT","https://github.com/moxystudio/node-cross-spawn"
|
|
209
|
+
"cssom@0.3.8","MIT","https://github.com/NV/CSSOM"
|
|
210
|
+
"cssom@0.4.4","MIT","https://github.com/NV/CSSOM"
|
|
211
|
+
"cssstyle@2.3.0","MIT","https://github.com/jsdom/cssstyle"
|
|
212
|
+
"data-urls@2.0.0","MIT","https://github.com/jsdom/data-urls"
|
|
213
|
+
"debug@4.3.4","MIT","https://github.com/debug-js/debug"
|
|
214
|
+
"debuglog@1.0.1","MIT","https://github.com/sam-github/node-debuglog"
|
|
215
|
+
"decco@1.6.0","MIT","https://github.com/reasonml-labs/decco"
|
|
216
|
+
"decimal.js@10.4.3","MIT","https://github.com/MikeMcl/decimal.js"
|
|
217
|
+
"dedent@0.7.0","MIT","https://github.com/dmnd/dedent"
|
|
218
|
+
"deep-is@0.1.4","MIT","https://github.com/thlorenz/deep-is"
|
|
219
|
+
"deepmerge@4.2.2","MIT","https://github.com/TehShrike/deepmerge"
|
|
220
|
+
"deepmerge@4.3.1","MIT","https://github.com/TehShrike/deepmerge"
|
|
221
|
+
"define-properties@1.1.4","MIT","https://github.com/ljharb/define-properties"
|
|
222
|
+
"delayed-stream@1.0.0","MIT","https://github.com/felixge/node-delayed-stream"
|
|
223
|
+
"detect-newline@3.1.0","MIT","https://github.com/sindresorhus/detect-newline"
|
|
224
|
+
"dezalgo@1.0.4","ISC","https://github.com/npm/dezalgo"
|
|
225
|
+
"diff-sequences@27.5.1","MIT","https://github.com/facebook/jest"
|
|
226
|
+
"diff@3.5.0","BSD-3-Clause","https://github.com/kpdecker/jsdiff"
|
|
227
|
+
"diff@4.0.2","BSD-3-Clause","https://github.com/kpdecker/jsdiff"
|
|
228
|
+
"domexception@2.0.1","MIT","https://github.com/jsdom/domexception"
|
|
229
|
+
"electron-to-chromium@1.4.284","ISC","https://github.com/kilian/electron-to-chromium"
|
|
230
|
+
"electron-to-chromium@1.4.365","ISC","https://github.com/kilian/electron-to-chromium"
|
|
231
|
+
"emittery@0.8.1","MIT","https://github.com/sindresorhus/emittery"
|
|
232
|
+
"emoji-regex@8.0.0","MIT","https://github.com/mathiasbynens/emoji-regex"
|
|
233
|
+
"error-ex@1.3.2","MIT","https://github.com/qix-/node-error-ex"
|
|
234
|
+
"es-abstract@1.20.5","MIT","https://github.com/ljharb/es-abstract"
|
|
235
|
+
"es-array-method-boxes-properly@1.0.0","MIT","https://github.com/ljharb/es-array-method-boxes-properly"
|
|
236
|
+
"es-to-primitive@1.2.1","MIT","https://github.com/ljharb/es-to-primitive"
|
|
237
|
+
"escalade@3.1.1","MIT","https://github.com/lukeed/escalade"
|
|
238
|
+
"escape-string-regexp@1.0.5","MIT","https://github.com/sindresorhus/escape-string-regexp"
|
|
239
|
+
"escape-string-regexp@2.0.0","MIT","https://github.com/sindresorhus/escape-string-regexp"
|
|
240
|
+
"escodegen@2.0.0","BSD-2-Clause","https://github.com/estools/escodegen"
|
|
241
|
+
"esprima@4.0.1","BSD-2-Clause","https://github.com/jquery/esprima"
|
|
242
|
+
"estraverse@5.3.0","BSD-2-Clause","https://github.com/estools/estraverse"
|
|
243
|
+
"esutils@2.0.3","BSD-2-Clause","https://github.com/estools/esutils"
|
|
244
|
+
"events@1.1.1","MIT","https://github.com/Gozala/events"
|
|
245
|
+
"execa@5.1.1","MIT","https://github.com/sindresorhus/execa"
|
|
246
|
+
"exit@0.1.2","MIT","https://github.com/cowboy/node-exit"
|
|
247
|
+
"expect@27.5.1","MIT","https://github.com/facebook/jest"
|
|
248
|
+
"fast-csv@3.7.0","MIT","https://github.com/C2FO/fast-csv"
|
|
249
|
+
"fast-json-stable-stringify@2.1.0","MIT","https://github.com/epoberezkin/fast-json-stable-stringify"
|
|
250
|
+
"fast-levenshtein@2.0.6","MIT","https://github.com/hiddentao/fast-levenshtein"
|
|
251
|
+
"fb-watchman@2.0.2","Apache-2.0","https://github.com/facebook/watchman"
|
|
252
|
+
"fill-range@7.0.1","MIT","https://github.com/jonschlinkert/fill-range"
|
|
253
|
+
"find-up@4.1.0","MIT","https://github.com/sindresorhus/find-up"
|
|
254
|
+
"for-each@0.3.3","MIT","https://github.com/Raynos/for-each"
|
|
255
|
+
"form-data@3.0.1","MIT","https://github.com/form-data/form-data"
|
|
256
|
+
"fs.realpath@1.0.0","ISC","https://github.com/isaacs/fs.realpath"
|
|
257
|
+
"function-bind@1.1.1","MIT","https://github.com/Raynos/function-bind"
|
|
258
|
+
"function.prototype.name@1.1.5","MIT","https://github.com/es-shims/Function.prototype.name"
|
|
259
|
+
"functions-have-names@1.2.3","MIT","https://github.com/inspect-js/functions-have-names"
|
|
260
|
+
"gensync@1.0.0-beta.2","MIT","https://github.com/loganfsmyth/gensync"
|
|
261
|
+
"get-caller-file@2.0.5","ISC","https://github.com/stefanpenner/get-caller-file"
|
|
262
|
+
"get-intrinsic@1.1.3","MIT","https://github.com/ljharb/get-intrinsic"
|
|
263
|
+
"get-package-type@0.1.0","MIT","https://github.com/cfware/get-package-type"
|
|
264
|
+
"get-stream@6.0.1","MIT","https://github.com/sindresorhus/get-stream"
|
|
265
|
+
"get-symbol-description@1.0.0","MIT","https://github.com/inspect-js/get-symbol-description"
|
|
266
|
+
"glob@7.1.6","ISC","https://github.com/isaacs/node-glob"
|
|
267
|
+
"glob@7.2.3","ISC","https://github.com/isaacs/node-glob"
|
|
268
|
+
"globals@11.12.0","MIT","https://github.com/sindresorhus/globals"
|
|
269
|
+
"google-protobuf@3.21.2","(BSD-3-Clause AND Apache-2.0)","https://github.com/protocolbuffers/protobuf-javascript"
|
|
270
|
+
"gopd@1.0.1","MIT","https://github.com/ljharb/gopd"
|
|
271
|
+
"graceful-fs@4.2.10","ISC","https://github.com/isaacs/node-graceful-fs"
|
|
272
|
+
"graceful-fs@4.2.11","ISC","https://github.com/isaacs/node-graceful-fs"
|
|
273
|
+
"growly@1.3.0","MIT","https://github.com/theabraham/growly"
|
|
274
|
+
"has-bigints@1.0.2","MIT","https://github.com/ljharb/has-bigints"
|
|
275
|
+
"has-flag@3.0.0","MIT","https://github.com/sindresorhus/has-flag"
|
|
276
|
+
"has-flag@4.0.0","MIT","https://github.com/sindresorhus/has-flag"
|
|
277
|
+
"has-property-descriptors@1.0.0","MIT","https://github.com/inspect-js/has-property-descriptors"
|
|
278
|
+
"has-symbols@1.0.3","MIT","https://github.com/inspect-js/has-symbols"
|
|
279
|
+
"has-tostringtag@1.0.0","MIT","https://github.com/inspect-js/has-tostringtag"
|
|
280
|
+
"has@1.0.3","MIT","https://github.com/tarruda/has"
|
|
281
|
+
"hash-obj@2.0.0","MIT","https://github.com/sindresorhus/hash-obj"
|
|
282
|
+
"hosted-git-info@2.8.8","ISC","https://github.com/npm/hosted-git-info"
|
|
283
|
+
"hosted-git-info@2.8.9","ISC","https://github.com/npm/hosted-git-info"
|
|
284
|
+
"html-encoding-sniffer@2.0.1","MIT","https://github.com/jsdom/html-encoding-sniffer"
|
|
285
|
+
"html-escaper@2.0.2","MIT","https://github.com/WebReflection/html-escaper"
|
|
286
|
+
"http-proxy-agent@4.0.1","MIT","https://github.com/TooTallNate/node-http-proxy-agent"
|
|
287
|
+
"https-proxy-agent@5.0.1","MIT","https://github.com/TooTallNate/node-https-proxy-agent"
|
|
288
|
+
"human-signals@2.1.0","Apache-2.0","https://github.com/ehmicky/human-signals"
|
|
289
|
+
"iconv-lite@0.4.24","MIT","https://github.com/ashtuchkin/iconv-lite"
|
|
290
|
+
"ieee754@1.1.13","BSD-3-Clause","https://github.com/feross/ieee754"
|
|
291
|
+
"import-local@3.1.0","MIT","https://github.com/sindresorhus/import-local"
|
|
292
|
+
"imurmurhash@0.1.4","MIT","https://github.com/jensyt/imurmurhash-js"
|
|
293
|
+
"inflight@1.0.6","ISC","https://github.com/npm/inflight"
|
|
294
|
+
"inherits@2.0.4","ISC","https://github.com/isaacs/inherits"
|
|
295
|
+
"ini@2.0.0","ISC","https://github.com/isaacs/ini"
|
|
296
|
+
"internal-slot@1.0.4","MIT","https://github.com/ljharb/internal-slot"
|
|
297
|
+
"is-arguments@1.1.1","MIT","https://github.com/inspect-js/is-arguments"
|
|
298
|
+
"is-arrayish@0.2.1","MIT","https://github.com/qix-/node-is-arrayish"
|
|
299
|
+
"is-bigint@1.0.4","MIT","https://github.com/inspect-js/is-bigint"
|
|
300
|
+
"is-boolean-object@1.1.2","MIT","https://github.com/inspect-js/is-boolean-object"
|
|
301
|
+
"is-callable@1.2.7","MIT","https://github.com/inspect-js/is-callable"
|
|
302
|
+
"is-core-module@2.11.0","MIT","https://github.com/inspect-js/is-core-module"
|
|
303
|
+
"is-core-module@2.12.0","MIT","https://github.com/inspect-js/is-core-module"
|
|
304
|
+
"is-date-object@1.0.5","MIT","https://github.com/inspect-js/is-date-object"
|
|
305
|
+
"is-docker@2.2.1","MIT","https://github.com/sindresorhus/is-docker"
|
|
306
|
+
"is-fullwidth-code-point@3.0.0","MIT","https://github.com/sindresorhus/is-fullwidth-code-point"
|
|
307
|
+
"is-generator-fn@2.1.0","MIT","https://github.com/sindresorhus/is-generator-fn"
|
|
308
|
+
"is-generator-function@1.0.10","MIT","https://github.com/inspect-js/is-generator-function"
|
|
309
|
+
"is-negative-zero@2.0.2","MIT","https://github.com/inspect-js/is-negative-zero"
|
|
310
|
+
"is-number-object@1.0.7","MIT","https://github.com/inspect-js/is-number-object"
|
|
311
|
+
"is-number@7.0.0","MIT","https://github.com/jonschlinkert/is-number"
|
|
312
|
+
"is-obj@2.0.0","MIT","https://github.com/sindresorhus/is-obj"
|
|
313
|
+
"is-plain-obj@2.1.0","MIT","https://github.com/sindresorhus/is-plain-obj"
|
|
314
|
+
"is-potential-custom-element-name@1.0.1","MIT","https://github.com/mathiasbynens/is-potential-custom-element-name"
|
|
315
|
+
"is-regex@1.1.4","MIT","https://github.com/inspect-js/is-regex"
|
|
316
|
+
"is-shared-array-buffer@1.0.2","MIT","https://github.com/inspect-js/is-shared-array-buffer"
|
|
317
|
+
"is-stream@2.0.1","MIT","https://github.com/sindresorhus/is-stream"
|
|
318
|
+
"is-string@1.0.7","MIT","https://github.com/ljharb/is-string"
|
|
319
|
+
"is-symbol@1.0.4","MIT","https://github.com/inspect-js/is-symbol"
|
|
320
|
+
"is-typed-array@1.1.10","MIT","https://github.com/inspect-js/is-typed-array"
|
|
321
|
+
"is-typedarray@1.0.0","MIT","https://github.com/hughsk/is-typedarray"
|
|
322
|
+
"is-weakref@1.0.2","MIT","https://github.com/inspect-js/is-weakref"
|
|
323
|
+
"is-wsl@2.2.0","MIT","https://github.com/sindresorhus/is-wsl"
|
|
324
|
+
"isarray@1.0.0","MIT","https://github.com/juliangruber/isarray"
|
|
325
|
+
"isexe@2.0.0","ISC","https://github.com/isaacs/isexe"
|
|
326
|
+
"istanbul-lib-coverage@3.2.0","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs"
|
|
327
|
+
"istanbul-lib-instrument@5.2.1","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs"
|
|
328
|
+
"istanbul-lib-report@3.0.0","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs"
|
|
329
|
+
"istanbul-lib-source-maps@4.0.1","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs"
|
|
330
|
+
"istanbul-reports@3.1.5","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs"
|
|
331
|
+
"jest-changed-files@27.5.1","MIT","https://github.com/facebook/jest"
|
|
332
|
+
"jest-circus@27.5.1","MIT","https://github.com/facebook/jest"
|
|
333
|
+
"jest-cli@27.5.1","MIT","https://github.com/facebook/jest"
|
|
334
|
+
"jest-config@27.5.1","MIT","https://github.com/facebook/jest"
|
|
335
|
+
"jest-diff@27.5.1","MIT","https://github.com/facebook/jest"
|
|
336
|
+
"jest-docblock@27.5.1","MIT","https://github.com/facebook/jest"
|
|
337
|
+
"jest-each@27.5.1","MIT","https://github.com/facebook/jest"
|
|
338
|
+
"jest-environment-jsdom@27.5.1","MIT","https://github.com/facebook/jest"
|
|
339
|
+
"jest-environment-node@27.5.1","MIT","https://github.com/facebook/jest"
|
|
340
|
+
"jest-get-type@27.5.1","MIT","https://github.com/facebook/jest"
|
|
341
|
+
"jest-haste-map@27.5.1","MIT","https://github.com/facebook/jest"
|
|
342
|
+
"jest-jasmine2@27.5.1","MIT","https://github.com/facebook/jest"
|
|
343
|
+
"jest-leak-detector@27.5.1","MIT","https://github.com/facebook/jest"
|
|
344
|
+
"jest-matcher-utils@27.5.1","MIT","https://github.com/facebook/jest"
|
|
345
|
+
"jest-message-util@27.5.1","MIT","https://github.com/facebook/jest"
|
|
346
|
+
"jest-mock@27.5.1","MIT","https://github.com/facebook/jest"
|
|
347
|
+
"jest-pnp-resolver@1.2.3","MIT","https://github.com/arcanis/jest-pnp-resolver"
|
|
348
|
+
"jest-regex-util@27.5.1","MIT","https://github.com/facebook/jest"
|
|
349
|
+
"jest-resolve-dependencies@27.5.1","MIT","https://github.com/facebook/jest"
|
|
350
|
+
"jest-resolve@25.5.1","MIT","https://github.com/facebook/jest"
|
|
351
|
+
"jest-resolve@27.5.1","MIT","https://github.com/facebook/jest"
|
|
352
|
+
"jest-runner@27.5.1","MIT","https://github.com/facebook/jest"
|
|
353
|
+
"jest-runtime@27.5.1","MIT","https://github.com/facebook/jest"
|
|
354
|
+
"jest-serializer@27.5.1","MIT","https://github.com/facebook/jest"
|
|
355
|
+
"jest-snapshot@27.5.1","MIT","https://github.com/facebook/jest"
|
|
356
|
+
"jest-util@27.5.1","MIT","https://github.com/facebook/jest"
|
|
357
|
+
"jest-validate@27.5.1","MIT","https://github.com/facebook/jest"
|
|
358
|
+
"jest-watcher@27.5.1","MIT","https://github.com/facebook/jest"
|
|
359
|
+
"jest-worker@27.5.1","MIT","https://github.com/facebook/jest"
|
|
360
|
+
"jest@27.5.1","MIT","https://github.com/facebook/jest"
|
|
361
|
+
"jmespath@0.16.0","Apache-2.0","https://github.com/jmespath/jmespath.js"
|
|
362
|
+
"js-tokens@4.0.0","MIT","https://github.com/lydell/js-tokens"
|
|
363
|
+
"js-yaml@3.14.1","MIT","https://github.com/nodeca/js-yaml"
|
|
364
|
+
"jsdom@16.7.0","MIT","https://github.com/jsdom/jsdom"
|
|
365
|
+
"jsesc@2.5.2","MIT","https://github.com/mathiasbynens/jsesc"
|
|
366
|
+
"json-parse-even-better-errors@2.3.1","MIT","https://github.com/npm/json-parse-even-better-errors"
|
|
367
|
+
"json5@2.2.3","MIT","https://github.com/json5/json5"
|
|
368
|
+
"kleur@3.0.3","MIT","https://github.com/lukeed/kleur"
|
|
369
|
+
"leven@3.1.0","MIT","https://github.com/sindresorhus/leven"
|
|
370
|
+
"levn@0.3.0","MIT","https://github.com/gkz/levn"
|
|
371
|
+
"lines-and-columns@1.2.4","MIT","https://github.com/eventualbuddha/lines-and-columns"
|
|
372
|
+
"locate-path@5.0.0","MIT","https://github.com/sindresorhus/locate-path"
|
|
373
|
+
"lodash.escaperegexp@4.1.2","MIT","https://github.com/lodash/lodash"
|
|
374
|
+
"lodash.groupby@4.6.0","MIT","https://github.com/lodash/lodash"
|
|
375
|
+
"lodash.isboolean@3.0.3","MIT","https://github.com/lodash/lodash"
|
|
376
|
+
"lodash.isequal@4.5.0","MIT","https://github.com/lodash/lodash"
|
|
377
|
+
"lodash.isfunction@3.0.9","MIT","https://github.com/lodash/lodash"
|
|
378
|
+
"lodash.isnil@4.0.0","MIT","https://github.com/lodash/lodash"
|
|
379
|
+
"lodash.isstring@4.0.1","MIT","https://github.com/lodash/lodash"
|
|
380
|
+
"lodash.isundefined@3.0.1","MIT","https://github.com/lodash/lodash"
|
|
381
|
+
"lodash.uniq@4.5.0","MIT","https://github.com/lodash/lodash"
|
|
382
|
+
"lodash@4.17.21","MIT","https://github.com/lodash/lodash"
|
|
383
|
+
"lru-cache@5.1.1","ISC","https://github.com/isaacs/node-lru-cache"
|
|
384
|
+
"lru-cache@6.0.0","ISC","https://github.com/isaacs/node-lru-cache"
|
|
385
|
+
"make-dir@3.1.0","MIT","https://github.com/sindresorhus/make-dir"
|
|
386
|
+
"make-error@1.3.6","ISC","https://github.com/JsCommunity/make-error"
|
|
387
|
+
"makeerror@1.0.12","BSD-3-Clause","https://github.com/daaku/nodejs-makeerror"
|
|
388
|
+
"merge-stream@2.0.0","MIT","https://github.com/grncdr/merge-stream"
|
|
389
|
+
"micromatch@4.0.5","MIT","https://github.com/micromatch/micromatch"
|
|
390
|
+
"mime-db@1.52.0","MIT","https://github.com/jshttp/mime-db"
|
|
391
|
+
"mime-types@2.1.35","MIT","https://github.com/jshttp/mime-types"
|
|
392
|
+
"mime@2.6.0","MIT","https://github.com/broofa/mime"
|
|
393
|
+
"mimic-fn@2.1.0","MIT","https://github.com/sindresorhus/mimic-fn"
|
|
394
|
+
"minimatch@3.0.4","ISC","https://github.com/isaacs/minimatch"
|
|
395
|
+
"minimatch@3.1.2","ISC","https://github.com/isaacs/minimatch"
|
|
396
|
+
"minimist@1.2.7","MIT","https://github.com/minimistjs/minimist"
|
|
397
|
+
"mkdirp@0.5.6","MIT","https://github.com/substack/node-mkdirp"
|
|
398
|
+
"module-details-from-path@1.0.3","MIT","https://github.com/watson/module-details-from-path"
|
|
399
|
+
"moment@2.29.4","MIT","https://github.com/moment/moment"
|
|
400
|
+
"ms@2.1.2","MIT","https://github.com/zeit/ms"
|
|
401
|
+
"natural-compare@1.4.0","MIT","https://github.com/litejs/natural-compare-lite"
|
|
402
|
+
"node-int64@0.4.0","MIT","https://github.com/broofa/node-int64"
|
|
403
|
+
"node-releases@2.0.10","MIT","https://github.com/chicoxyzzy/node-releases"
|
|
404
|
+
"node-releases@2.0.8","MIT","https://github.com/chicoxyzzy/node-releases"
|
|
405
|
+
"normalize-package-data@2.5.0","BSD-2-Clause","https://github.com/npm/normalize-package-data"
|
|
406
|
+
"normalize-path@3.0.0","MIT","https://github.com/jonschlinkert/normalize-path"
|
|
407
|
+
"npm-normalize-package-bin@1.0.1","ISC","https://github.com/npm/npm-normalize-package-bin"
|
|
408
|
+
"npm-run-path@4.0.1","MIT","https://github.com/sindresorhus/npm-run-path"
|
|
409
|
+
"nwsapi@2.2.2","MIT","https://github.com/dperini/nwsapi"
|
|
410
|
+
"nwsapi@2.2.4","MIT","https://github.com/dperini/nwsapi"
|
|
411
|
+
"object-inspect@1.12.2","MIT","https://github.com/inspect-js/object-inspect"
|
|
412
|
+
"object-keys@1.1.1","MIT","https://github.com/ljharb/object-keys"
|
|
413
|
+
"object.assign@4.1.4","MIT","https://github.com/ljharb/object.assign"
|
|
414
|
+
"object.getownpropertydescriptors@2.1.5","MIT","https://github.com/es-shims/object.getownpropertydescriptors"
|
|
415
|
+
"once@1.4.0","ISC","https://github.com/isaacs/once"
|
|
416
|
+
"onetime@5.1.2","MIT","https://github.com/sindresorhus/onetime"
|
|
417
|
+
"optionator@0.8.3","MIT","https://github.com/gkz/optionator"
|
|
418
|
+
"p-limit@2.3.0","MIT","https://github.com/sindresorhus/p-limit"
|
|
419
|
+
"p-locate@4.1.0","MIT","https://github.com/sindresorhus/p-locate"
|
|
420
|
+
"p-try@2.2.0","MIT","https://github.com/sindresorhus/p-try"
|
|
421
|
+
"parse-json@5.2.0","MIT","https://github.com/sindresorhus/parse-json"
|
|
422
|
+
"parse5@6.0.1","MIT","https://github.com/inikulin/parse5"
|
|
423
|
+
"path-exists@4.0.0","MIT","https://github.com/sindresorhus/path-exists"
|
|
424
|
+
"path-is-absolute@1.0.1","MIT","https://github.com/sindresorhus/path-is-absolute"
|
|
425
|
+
"path-key@3.1.1","MIT","https://github.com/sindresorhus/path-key"
|
|
426
|
+
"path-parse@1.0.7","MIT","https://github.com/jbgutierrez/path-parse"
|
|
427
|
+
"picocolors@1.0.0","ISC","https://github.com/alexeyraspopov/picocolors"
|
|
428
|
+
"picomatch@2.3.1","MIT","https://github.com/micromatch/picomatch"
|
|
429
|
+
"pirates@4.0.5","MIT","https://github.com/danez/pirates"
|
|
430
|
+
"pkg-dir@4.2.0","MIT","https://github.com/sindresorhus/pkg-dir"
|
|
431
|
+
"prelude-ls@1.1.2","MIT","https://github.com/gkz/prelude-ls"
|
|
432
|
+
"pretty-format@27.5.1","MIT","https://github.com/facebook/jest"
|
|
433
|
+
"prompts@2.4.2","MIT","https://github.com/terkelg/prompts"
|
|
434
|
+
"psl@1.9.0","MIT","https://github.com/lupomontero/psl"
|
|
435
|
+
"punycode@1.3.2","MIT","https://github.com/bestiejs/punycode.js"
|
|
436
|
+
"punycode@2.2.0","MIT","https://github.com/bestiejs/punycode.js"
|
|
437
|
+
"punycode@2.3.0","MIT","https://github.com/mathiasbynens/punycode.js"
|
|
438
|
+
"querystring@0.2.0","MIT","https://github.com/Gozala/querystring"
|
|
439
|
+
"querystringify@2.2.0","MIT","https://github.com/unshiftio/querystringify"
|
|
440
|
+
"react-is@17.0.2","MIT","https://github.com/facebook/react"
|
|
441
|
+
"read-package-json@2.1.2","ISC","https://github.com/npm/read-package-json"
|
|
442
|
+
"read-package-tree@5.3.1","ISC","https://github.com/npm/read-package-tree"
|
|
443
|
+
"read-pkg-up@7.0.1","MIT","https://github.com/sindresorhus/read-pkg-up"
|
|
444
|
+
"read-pkg@5.2.0","MIT","https://github.com/sindresorhus/read-pkg"
|
|
445
|
+
"readdir-scoped-modules@1.1.0","ISC","https://github.com/npm/readdir-scoped-modules"
|
|
446
|
+
"realpath-native@2.0.0","MIT","https://github.com/SimenB/realpath-native"
|
|
447
|
+
"regexp.prototype.flags@1.4.3","MIT","https://github.com/es-shims/RegExp.prototype.flags"
|
|
448
|
+
"require-directory@2.1.1","MIT","https://github.com/troygoode/node-require-directory"
|
|
449
|
+
"require-from-string@2.0.2","MIT","https://github.com/floatdrop/require-from-string"
|
|
450
|
+
"require-in-the-middle@5.2.0","MIT","https://github.com/elastic/require-in-the-middle"
|
|
451
|
+
"requires-port@1.0.0","MIT","https://github.com/unshiftio/requires-port"
|
|
452
|
+
"rescript@10.1.4","GPL-3.0*","https://github.com/rescript-lang/rescript-compiler"
|
|
453
|
+
"resolve-cwd@3.0.0","MIT","https://github.com/sindresorhus/resolve-cwd"
|
|
454
|
+
"resolve-from@5.0.0","MIT","https://github.com/sindresorhus/resolve-from"
|
|
455
|
+
"resolve.exports@1.1.1","MIT","https://github.com/lukeed/resolve.exports"
|
|
456
|
+
"resolve@1.1.7","MIT","https://github.com/substack/node-resolve"
|
|
457
|
+
"resolve@1.22.1","MIT","https://github.com/browserify/resolve"
|
|
458
|
+
"resolve@1.22.3","MIT","https://github.com/browserify/resolve"
|
|
459
|
+
"rimraf@3.0.2","ISC","https://github.com/isaacs/rimraf"
|
|
460
|
+
"safe-regex-test@1.0.0","MIT","https://github.com/ljharb/safe-regex-test"
|
|
461
|
+
"safer-buffer@2.1.2","MIT","https://github.com/ChALkeR/safer-buffer"
|
|
462
|
+
"sax@1.2.1","ISC","https://github.com/isaacs/sax-js"
|
|
463
|
+
"saxes@5.0.1","ISC","https://github.com/lddubeau/saxes"
|
|
464
|
+
"semver@5.7.1","ISC","https://github.com/npm/node-semver"
|
|
465
|
+
"semver@6.3.0","ISC","https://github.com/npm/node-semver"
|
|
466
|
+
"semver@7.3.8","ISC","https://github.com/npm/node-semver"
|
|
467
|
+
"semver@7.4.0","ISC","https://github.com/npm/node-semver"
|
|
468
|
+
"shebang-command@2.0.0","MIT","https://github.com/kevva/shebang-command"
|
|
469
|
+
"shebang-regex@3.0.0","MIT","https://github.com/sindresorhus/shebang-regex"
|
|
470
|
+
"shellwords@0.1.1","MIT","https://github.com/jimmycuadra/shellwords"
|
|
471
|
+
"shimmer@1.2.1","BSD-2-Clause","https://github.com/othiym23/shimmer"
|
|
472
|
+
"side-channel@1.0.4","MIT","https://github.com/ljharb/side-channel"
|
|
473
|
+
"signal-exit@3.0.3","ISC","https://github.com/tapjs/signal-exit"
|
|
474
|
+
"signal-exit@3.0.7","ISC","https://github.com/tapjs/signal-exit"
|
|
475
|
+
"sisteransi@1.0.5","MIT","https://github.com/terkelg/sisteransi"
|
|
476
|
+
"slash@3.0.0","MIT","https://github.com/sindresorhus/slash"
|
|
477
|
+
"sort-keys@3.0.0","MIT","https://github.com/sindresorhus/sort-keys"
|
|
478
|
+
"source-map-support@0.5.19","MIT","https://github.com/evanw/node-source-map-support"
|
|
479
|
+
"source-map-support@0.5.21","MIT","https://github.com/evanw/node-source-map-support"
|
|
480
|
+
"source-map@0.6.1","BSD-3-Clause","https://github.com/mozilla/source-map"
|
|
481
|
+
"source-map@0.7.4","BSD-3-Clause","https://github.com/mozilla/source-map"
|
|
482
|
+
"spdx-correct@3.1.1","Apache-2.0","https://github.com/jslicense/spdx-correct.js"
|
|
483
|
+
"spdx-exceptions@2.3.0","CC-BY-3.0","https://github.com/kemitchell/spdx-exceptions.json"
|
|
484
|
+
"spdx-expression-parse@3.0.1","MIT","https://github.com/jslicense/spdx-expression-parse.js"
|
|
485
|
+
"spdx-license-ids@3.0.12","CC0-1.0","https://github.com/jslicense/spdx-license-ids"
|
|
486
|
+
"spdx-license-ids@3.0.7","CC0-1.0","https://github.com/jslicense/spdx-license-ids"
|
|
487
|
+
"sprintf-js@1.0.3","BSD-3-Clause","https://github.com/alexei/sprintf.js"
|
|
488
|
+
"ssh2-streams@0.4.10","MIT","https://github.com/mscdex/ssh2-streams"
|
|
489
|
+
"ssh2@0.8.9","MIT","https://github.com/mscdex/ssh2"
|
|
490
|
+
"stack-utils@2.0.6","MIT","https://github.com/tapjs/stack-utils"
|
|
491
|
+
"streamsearch@0.1.2","MIT","https://github.com/mscdex/streamsearch"
|
|
492
|
+
"string-length@4.0.2","MIT","https://github.com/sindresorhus/string-length"
|
|
493
|
+
"string-width@4.2.3","MIT","https://github.com/sindresorhus/string-width"
|
|
494
|
+
"string.prototype.trimend@1.0.6","MIT","https://github.com/es-shims/String.prototype.trimEnd"
|
|
495
|
+
"string.prototype.trimstart@1.0.6","MIT","https://github.com/es-shims/String.prototype.trimStart"
|
|
496
|
+
"strip-ansi@6.0.1","MIT","https://github.com/chalk/strip-ansi"
|
|
497
|
+
"strip-bom@4.0.0","MIT","https://github.com/sindresorhus/strip-bom"
|
|
498
|
+
"strip-final-newline@2.0.0","MIT","https://github.com/sindresorhus/strip-final-newline"
|
|
499
|
+
"strip-json-comments@3.1.1","MIT","https://github.com/sindresorhus/strip-json-comments"
|
|
500
|
+
"supports-color@5.5.0","MIT","https://github.com/chalk/supports-color"
|
|
501
|
+
"supports-color@7.2.0","MIT","https://github.com/chalk/supports-color"
|
|
502
|
+
"supports-color@8.1.1","MIT","https://github.com/chalk/supports-color"
|
|
503
|
+
"supports-hyperlinks@2.3.0","MIT","https://github.com/jamestalmage/supports-hyperlinks"
|
|
504
|
+
"supports-preserve-symlinks-flag@1.0.0","MIT","https://github.com/inspect-js/node-supports-preserve-symlinks-flag"
|
|
505
|
+
"symbol-tree@3.2.4","MIT","https://github.com/jsdom/js-symbol-tree"
|
|
506
|
+
"terminal-link@2.1.1","MIT","https://github.com/sindresorhus/terminal-link"
|
|
507
|
+
"test-exclude@6.0.0","ISC","https://github.com/istanbuljs/test-exclude"
|
|
508
|
+
"throat@6.0.2","MIT","https://github.com/ForbesLindesay/throat"
|
|
509
|
+
"tmpl@1.0.5","BSD-3-Clause","https://github.com/daaku/nodejs-tmpl"
|
|
510
|
+
"to-fast-properties@2.0.0","MIT","https://github.com/sindresorhus/to-fast-properties"
|
|
511
|
+
"to-regex-range@5.0.1","MIT","https://github.com/micromatch/to-regex-range"
|
|
512
|
+
"tough-cookie@4.1.2","BSD-3-Clause","https://github.com/salesforce/tough-cookie"
|
|
513
|
+
"tr46@2.1.0","MIT","https://github.com/jsdom/tr46"
|
|
514
|
+
"ts-node@10.9.1","MIT","https://github.com/TypeStrong/ts-node"
|
|
515
|
+
"ts-node@7.0.1","MIT","https://github.com/TypeStrong/ts-node"
|
|
516
|
+
"tweetnacl@0.14.5","Unlicense","https://github.com/dchest/tweetnacl-js"
|
|
517
|
+
"type-check@0.3.2","MIT","https://github.com/gkz/type-check"
|
|
518
|
+
"type-detect@4.0.8","MIT","https://github.com/chaijs/type-detect"
|
|
519
|
+
"type-fest@0.21.3","(MIT OR CC0-1.0)","https://github.com/sindresorhus/type-fest"
|
|
520
|
+
"type-fest@0.4.1","(MIT OR CC0-1.0)","https://github.com/sindresorhus/type-fest"
|
|
521
|
+
"type-fest@0.6.0","(MIT OR CC0-1.0)","https://github.com/sindresorhus/type-fest"
|
|
522
|
+
"type-fest@0.8.1","(MIT OR CC0-1.0)","https://github.com/sindresorhus/type-fest"
|
|
523
|
+
"typedarray-to-buffer@3.1.5","MIT","https://github.com/feross/typedarray-to-buffer"
|
|
524
|
+
"typescript@3.8.3","Apache-2.0","https://github.com/Microsoft/TypeScript"
|
|
525
|
+
"unbox-primitive@1.0.2","MIT","https://github.com/ljharb/unbox-primitive"
|
|
526
|
+
"universalify@0.2.0","MIT","https://github.com/RyanZim/universalify"
|
|
527
|
+
"upath@1.2.0","MIT","https://github.com/anodynos/upath"
|
|
528
|
+
"update-browserslist-db@1.0.10","MIT","https://github.com/browserslist/update-db"
|
|
529
|
+
"update-browserslist-db@1.0.11","MIT","https://github.com/browserslist/update-db"
|
|
530
|
+
"url-parse@1.5.10","MIT","https://github.com/unshiftio/url-parse"
|
|
531
|
+
"url@0.10.3","MIT","https://github.com/defunctzombie/node-url"
|
|
532
|
+
"util-promisify@2.1.0","MIT","https://github.com/juliangruber/util-promisify"
|
|
533
|
+
"util@0.12.5","MIT","https://github.com/browserify/node-util"
|
|
534
|
+
"uuid@3.4.0","MIT","https://github.com/uuidjs/uuid"
|
|
535
|
+
"uuid@8.0.0","MIT","https://github.com/uuidjs/uuid"
|
|
536
|
+
"v8-compile-cache-lib@3.0.1","MIT","https://github.com/cspotcode/v8-compile-cache-lib"
|
|
537
|
+
"v8-to-istanbul@8.1.1","ISC","https://github.com/istanbuljs/v8-to-istanbul"
|
|
538
|
+
"validate-npm-package-license@3.0.4","Apache-2.0","https://github.com/kemitchell/validate-npm-package-license.js"
|
|
539
|
+
"w3c-hr-time@1.0.2","MIT","https://github.com/jsdom/w3c-hr-time"
|
|
540
|
+
"w3c-xmlserializer@2.0.0","MIT","https://github.com/jsdom/w3c-xmlserializer"
|
|
541
|
+
"walker@1.0.8","Apache-2.0","https://github.com/daaku/nodejs-walker"
|
|
542
|
+
"webidl-conversions@5.0.0","BSD-2-Clause","https://github.com/jsdom/webidl-conversions"
|
|
543
|
+
"webidl-conversions@6.1.0","BSD-2-Clause","https://github.com/jsdom/webidl-conversions"
|
|
544
|
+
"whatwg-encoding@1.0.5","MIT","https://github.com/jsdom/whatwg-encoding"
|
|
545
|
+
"whatwg-mimetype@2.3.0","MIT","https://github.com/jsdom/whatwg-mimetype"
|
|
546
|
+
"whatwg-url@8.7.0","MIT","https://github.com/jsdom/whatwg-url"
|
|
547
|
+
"which-boxed-primitive@1.0.2","MIT","https://github.com/inspect-js/which-boxed-primitive"
|
|
548
|
+
"which-typed-array@1.1.9","MIT","https://github.com/inspect-js/which-typed-array"
|
|
549
|
+
"which@2.0.2","ISC","https://github.com/isaacs/node-which"
|
|
550
|
+
"word-wrap@1.2.3","MIT","https://github.com/jonschlinkert/word-wrap"
|
|
551
|
+
"wrap-ansi@7.0.0","MIT","https://github.com/chalk/wrap-ansi"
|
|
552
|
+
"wrappy@1.0.2","ISC","https://github.com/npm/wrappy"
|
|
553
|
+
"write-file-atomic@3.0.3","ISC","https://github.com/npm/write-file-atomic"
|
|
554
|
+
"ws@7.5.9","MIT","https://github.com/websockets/ws"
|
|
555
|
+
"xml-name-validator@3.0.0","Apache-2.0","https://github.com/jsdom/xml-name-validator"
|
|
556
|
+
"xml2js@0.4.19","MIT","https://github.com/Leonidas-from-XIV/node-xml2js"
|
|
557
|
+
"xmlbuilder@9.0.7","MIT","https://github.com/oozcitak/xmlbuilder-js"
|
|
558
|
+
"xmlchars@2.2.0","MIT","https://github.com/lddubeau/xmlchars"
|
|
559
|
+
"y18n@5.0.8","ISC","https://github.com/yargs/y18n"
|
|
560
|
+
"yallist@3.1.1","ISC","https://github.com/isaacs/yallist"
|
|
561
|
+
"yallist@4.0.0","ISC","https://github.com/isaacs/yallist"
|
|
562
|
+
"yargs-parser@20.2.9","ISC","https://github.com/yargs/yargs-parser"
|
|
563
|
+
"yargs@16.2.0","MIT","https://github.com/yargs/yargs"
|
|
564
|
+
"yn@2.0.0","MIT","https://github.com/sindresorhus/yn"
|
|
565
|
+
"yn@3.1.1","MIT","https://github.com/sindresorhus/yn"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# DynamoDB Local sidecar for the DCB integration suite.
|
|
2
|
+
# Booted/torn down by scripts/run-integration-tests.sh.
|
|
3
|
+
#
|
|
4
|
+
# -inMemory keeps everything in RAM (no on-disk state to clean up); -sharedDb
|
|
5
|
+
# makes every credential/region share one DB so the tests don't have to match
|
|
6
|
+
# the harness's dummy credentials to a region-scoped store.
|
|
7
|
+
services:
|
|
8
|
+
dynamodb-local:
|
|
9
|
+
image: amazon/dynamodb-local:2.5.2
|
|
10
|
+
command: "-jar DynamoDBLocal.jar -inMemory -sharedDb"
|
|
11
|
+
ports:
|
|
12
|
+
- "8000:8000"
|