From 6f99924e319b4349eb456be97fcd207a95e530bc Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:31:52 +0200 Subject: [PATCH 01/17] Create SECURITY.md --- SECURITY.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..034e848 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. From 7e37878bac46f7301a3638d324872b1859f9a362 Mon Sep 17 00:00:00 2001 From: atef-ux <110737248+atef-ux@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:46:22 +0200 Subject: [PATCH 02/17] Create notes.txt --- notes.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 notes.txt diff --git a/notes.txt b/notes.txt new file mode 100644 index 0000000..fa49b07 --- /dev/null +++ b/notes.txt @@ -0,0 +1 @@ +new file From a2d8e43505a44b7a6d8ddb797a85c1320ac8adef Mon Sep 17 00:00:00 2001 From: Private Date: Mon, 8 Aug 2022 14:00:13 +0200 Subject: [PATCH 03/17] re struct the project --- src/.dockerignore | 25 ++ src/.gitignore | 265 ++++++++++++++++++ src/.vscode/launch.json | 35 +++ src/.vscode/settings.json | 6 + src/.vscode/tasks.json | 41 +++ src/F1/#new File.trz | 0 src/F1/F2/F3/f3.txt | 0 src/F1/F2/f2.txt | 0 src/FishingTrip.API.gRPC/Dockerfile | 22 ++ .../FishingTrip.API.gRPC.csproj | 20 ++ src/FishingTrip.API.gRPC/Program.cs | 26 ++ .../Properties/launchSettings.json | 18 ++ src/FishingTrip.API.gRPC/Protos/greet.proto | 21 ++ .../Services/GreeterService.cs | 21 ++ .../appsettings.Development.json | 8 + src/FishingTrip.API.gRPC/appsettings.json | 14 + .../Controllers/BookingController.cs | 10 + .../Controllers/GalleryController.cs | 56 ++++ .../Controllers/WeatherForecastController.cs | 33 +++ src/FishingTrip.API/DI/ApiModule.cs | 4 + src/FishingTrip.API/Dockerfile | 22 ++ src/FishingTrip.API/FishingTrip.API.csproj | 25 ++ src/FishingTrip.API/Program.cs | 22 ++ .../Properties/launchSettings.json | 38 +++ src/FishingTrip.API/Startup.cs | 52 ++++ src/FishingTrip.API/WeatherForecast.cs | 13 + .../appsettings.Development.json | 8 + src/FishingTrip.API/appsettings.json | 9 + .../FishingTrip.Application.csproj | 18 ++ .../Interface/Config/IConfigPovider.cs | 7 + .../Interface/IDbContext.cs | 36 +++ .../Interface/IDbContextProvider.cs | 7 + .../Interface/IFishingTripPlannerDbContext.cs | 14 + .../Config/ConnectionConfig.cs | 9 + .../DetailedDomains/BoatProfile.cs | 9 + .../DetailedDomains/LocationCoordinate.cs | 8 + .../DetailedDomains/PortProfile.cs | 16 ++ .../DetailedDomains/UserProfile.cs | 14 + .../Enums/TripMemberRole.cs | 16 ++ .../EventSourcingDomain/EventSource.cs | 26 ++ .../FishingTrip.Domain.csproj | 9 + .../FishingTripDomain/Boat.cs | 24 ++ .../FishingTripDomain/BoatAvailability.cs | 16 ++ .../FishingTripDomain/Booking.cs | 15 + .../FishingTripDomain/ExceptionDay.cs | 9 + .../FishingTripDomain/Port.cs | 18 ++ .../FishingTripDomain/Profile.cs | 25 ++ .../FishingTripDomain/Trip.cs | 18 ++ .../FishingTripDomain/TripMember.cs | 14 + .../FishingTripDomain/User.cs | 15 + .../WeatherDomain/ForecastRecord.cs | 10 + .../WeatherDomain/Temperature.cs | 6 + src/FishingTrip.Domain/WeatherDomain/Tide.cs | 6 + ...hingTrip.Infrastructure.UnitTesting.csproj | 24 ++ .../UnitTest1.cs | 11 + .../Usings.cs | 1 + .../Config/ConfigPovider.cs | 10 + .../FishingTripEventSourcingDbContext.cs | 13 + .../DBContext/FishingTripPlannerDbContext.cs | 27 ++ .../FishingTripPlannerDbContextProvider.cs | 28 ++ .../DBContext/IDbContextConfigProvider.cs | 10 + .../DI/ConfigurationRegisterationExtension.cs | 14 + .../DI/DatabaseRegisterationExtenstion.cs | 25 ++ .../FishingTrip.Infrastructure.csproj | 25 ++ .../Framework/Http/ApiHandler.cs | 27 ++ .../Framework/Http/RequestHeaedrKey.cs | 8 + .../Http/Weather/WeatherAPIResponce.cs | 6 + .../Http/Weather/WeatherApiHandler.cs | 24 ++ .../Http/Weather/WeatherApiHeaders.cs | 9 + .../Middleware/ErrorHandlingMiddleware.cs | 6 + .../FishingTrip.Migrations.csproj | 37 +++ .../FishingTripContextFactory.cs | 30 ++ .../20220721170632_initialcreate.Designer.cs | 48 ++++ .../20220721170632_initialcreate.cs | 34 +++ .../20220721175925_modev-v01.Designer.cs | 229 +++++++++++++++ .../Migrations/20220721175925_modev-v01.cs | 185 ++++++++++++ ...ishingTripPlannerDbContextModelSnapshot.cs | 226 +++++++++++++++ src/FishingTrip.Migrations/Program.cs | 7 + src/FishingTrip.Migrations/appsettings.json | 5 + src/FishingTrip.sln | 66 +++++ 80 files changed, 2314 insertions(+) create mode 100644 src/.dockerignore create mode 100644 src/.gitignore create mode 100644 src/.vscode/launch.json create mode 100644 src/.vscode/settings.json create mode 100644 src/.vscode/tasks.json create mode 100644 src/F1/#new File.trz create mode 100644 src/F1/F2/F3/f3.txt create mode 100644 src/F1/F2/f2.txt create mode 100644 src/FishingTrip.API.gRPC/Dockerfile create mode 100644 src/FishingTrip.API.gRPC/FishingTrip.API.gRPC.csproj create mode 100644 src/FishingTrip.API.gRPC/Program.cs create mode 100644 src/FishingTrip.API.gRPC/Properties/launchSettings.json create mode 100644 src/FishingTrip.API.gRPC/Protos/greet.proto create mode 100644 src/FishingTrip.API.gRPC/Services/GreeterService.cs create mode 100644 src/FishingTrip.API.gRPC/appsettings.Development.json create mode 100644 src/FishingTrip.API.gRPC/appsettings.json create mode 100644 src/FishingTrip.API/Controllers/BookingController.cs create mode 100644 src/FishingTrip.API/Controllers/GalleryController.cs create mode 100644 src/FishingTrip.API/Controllers/WeatherForecastController.cs create mode 100644 src/FishingTrip.API/DI/ApiModule.cs create mode 100644 src/FishingTrip.API/Dockerfile create mode 100644 src/FishingTrip.API/FishingTrip.API.csproj create mode 100644 src/FishingTrip.API/Program.cs create mode 100644 src/FishingTrip.API/Properties/launchSettings.json create mode 100644 src/FishingTrip.API/Startup.cs create mode 100644 src/FishingTrip.API/WeatherForecast.cs create mode 100644 src/FishingTrip.API/appsettings.Development.json create mode 100644 src/FishingTrip.API/appsettings.json create mode 100644 src/FishingTrip.Application/FishingTrip.Application.csproj create mode 100644 src/FishingTrip.Application/Interface/Config/IConfigPovider.cs create mode 100644 src/FishingTrip.Application/Interface/IDbContext.cs create mode 100644 src/FishingTrip.Application/Interface/IDbContextProvider.cs create mode 100644 src/FishingTrip.Application/Interface/IFishingTripPlannerDbContext.cs create mode 100644 src/FishingTrip.Domain/Config/ConnectionConfig.cs create mode 100644 src/FishingTrip.Domain/DetailedDomains/BoatProfile.cs create mode 100644 src/FishingTrip.Domain/DetailedDomains/LocationCoordinate.cs create mode 100644 src/FishingTrip.Domain/DetailedDomains/PortProfile.cs create mode 100644 src/FishingTrip.Domain/DetailedDomains/UserProfile.cs create mode 100644 src/FishingTrip.Domain/Enums/TripMemberRole.cs create mode 100644 src/FishingTrip.Domain/EventSourcingDomain/EventSource.cs create mode 100644 src/FishingTrip.Domain/FishingTrip.Domain.csproj create mode 100644 src/FishingTrip.Domain/FishingTripDomain/Boat.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/BoatAvailability.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/Booking.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/ExceptionDay.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/Port.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/Profile.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/Trip.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/TripMember.cs create mode 100644 src/FishingTrip.Domain/FishingTripDomain/User.cs create mode 100644 src/FishingTrip.Domain/WeatherDomain/ForecastRecord.cs create mode 100644 src/FishingTrip.Domain/WeatherDomain/Temperature.cs create mode 100644 src/FishingTrip.Domain/WeatherDomain/Tide.cs create mode 100644 src/FishingTrip.Infrastructure.UnitTesting/FishingTrip.Infrastructure.UnitTesting.csproj create mode 100644 src/FishingTrip.Infrastructure.UnitTesting/UnitTest1.cs create mode 100644 src/FishingTrip.Infrastructure.UnitTesting/Usings.cs create mode 100644 src/FishingTrip.Infrastructure/Config/ConfigPovider.cs create mode 100644 src/FishingTrip.Infrastructure/DBContext/FishingTripEventSourcingDbContext.cs create mode 100644 src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContext.cs create mode 100644 src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContextProvider.cs create mode 100644 src/FishingTrip.Infrastructure/DBContext/IDbContextConfigProvider.cs create mode 100644 src/FishingTrip.Infrastructure/DI/ConfigurationRegisterationExtension.cs create mode 100644 src/FishingTrip.Infrastructure/DI/DatabaseRegisterationExtenstion.cs create mode 100644 src/FishingTrip.Infrastructure/FishingTrip.Infrastructure.csproj create mode 100644 src/FishingTrip.Infrastructure/Framework/Http/ApiHandler.cs create mode 100644 src/FishingTrip.Infrastructure/Framework/Http/RequestHeaedrKey.cs create mode 100644 src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherAPIResponce.cs create mode 100644 src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHandler.cs create mode 100644 src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHeaders.cs create mode 100644 src/FishingTrip.Infrastructure/Middleware/ErrorHandlingMiddleware.cs create mode 100644 src/FishingTrip.Migrations/FishingTrip.Migrations.csproj create mode 100644 src/FishingTrip.Migrations/FishingTripContextFactory.cs create mode 100644 src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.Designer.cs create mode 100644 src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.cs create mode 100644 src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.Designer.cs create mode 100644 src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.cs create mode 100644 src/FishingTrip.Migrations/Migrations/FishingTripPlannerDbContextModelSnapshot.cs create mode 100644 src/FishingTrip.Migrations/Program.cs create mode 100644 src/FishingTrip.Migrations/appsettings.json create mode 100644 src/FishingTrip.sln diff --git a/src/.dockerignore b/src/.dockerignore new file mode 100644 index 0000000..3729ff0 --- /dev/null +++ b/src/.dockerignore @@ -0,0 +1,25 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md \ No newline at end of file diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 0000000..98a770b --- /dev/null +++ b/src/.gitignore @@ -0,0 +1,265 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# Azure Functions localsettings file +local.settings.json + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX +project.lock.json +project.fragment.lock.json +artifacts/ + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +#*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +node_modules/ +orleans.codegen.cs + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc +/F3/ diff --git a/src/.vscode/launch.json b/src/.vscode/launch.json new file mode 100644 index 0000000..dd9d7ad --- /dev/null +++ b/src/.vscode/launch.json @@ -0,0 +1,35 @@ +{ + "version": "0.2.0", + "configurations": [ + { + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "name": ".NET Core Launch (web)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/FishingTrip.API/bin/Debug/net6.0/FishingTrip.API.dll", + "args": [], + "cwd": "${workspaceFolder}/FishingTrip.API", + "stopAtEntry": false, + // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser + "serverReadyAction": { + "action": "openExternally", + "pattern": "\\bNow listening on:\\s+(https?://\\S+)" + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + } + ] +} \ No newline at end of file diff --git a/src/.vscode/settings.json b/src/.vscode/settings.json new file mode 100644 index 0000000..0929bfe --- /dev/null +++ b/src/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "cSpell.words": [ + "Npgsql", + "Swashbuckle" + ] +} \ No newline at end of file diff --git a/src/.vscode/tasks.json b/src/.vscode/tasks.json new file mode 100644 index 0000000..508140a --- /dev/null +++ b/src/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/FishingTrip.API/FishingTrip.API.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/FishingTrip.API/FishingTrip.API.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/FishingTrip.API/FishingTrip.API.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/src/F1/#new File.trz b/src/F1/#new File.trz new file mode 100644 index 0000000..e69de29 diff --git a/src/F1/F2/F3/f3.txt b/src/F1/F2/F3/f3.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/F1/F2/f2.txt b/src/F1/F2/f2.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/FishingTrip.API.gRPC/Dockerfile b/src/FishingTrip.API.gRPC/Dockerfile new file mode 100644 index 0000000..b3b4371 --- /dev/null +++ b/src/FishingTrip.API.gRPC/Dockerfile @@ -0,0 +1,22 @@ +#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. + +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base +WORKDIR /app +EXPOSE 80 +EXPOSE 443 + +FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build +WORKDIR /src +COPY ["FishingTrip.API.gRPC/FishingTrip.API.gRPC.csproj", "FishingTrip.API.gRPC/"] +RUN dotnet restore "FishingTrip.API.gRPC/FishingTrip.API.gRPC.csproj" +COPY . . +WORKDIR "/src/FishingTrip.API.gRPC" +RUN dotnet build "FishingTrip.API.gRPC.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "FishingTrip.API.gRPC.csproj" -c Release -o /app/publish + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "FishingTrip.API.gRPC.dll"] \ No newline at end of file diff --git a/src/FishingTrip.API.gRPC/FishingTrip.API.gRPC.csproj b/src/FishingTrip.API.gRPC/FishingTrip.API.gRPC.csproj new file mode 100644 index 0000000..0093328 --- /dev/null +++ b/src/FishingTrip.API.gRPC/FishingTrip.API.gRPC.csproj @@ -0,0 +1,20 @@ + + + + net6.0 + enable + enable + aae24c52-c0f7-480f-ba61-aa584dfc8ce2 + Linux + + + + + + + + + + + + diff --git a/src/FishingTrip.API.gRPC/Program.cs b/src/FishingTrip.API.gRPC/Program.cs new file mode 100644 index 0000000..37b563e --- /dev/null +++ b/src/FishingTrip.API.gRPC/Program.cs @@ -0,0 +1,26 @@ +using FishingTrip.API.gRPC.Services; + +namespace Company.WebApplication1 +{ + public class Program + { + public static void Main(string[] args) + { + var builder = WebApplication.CreateBuilder(args); + + // Additional configuration is required to successfully run gRPC on macOS. + // For instructions on how to configure Kestrel and gRPC clients on macOS, visit https://go.microsoft.com/fwlink/?linkid=2099682 + + // Add services to the container. + builder.Services.AddGrpc(); + + var app = builder.Build(); + + // Configure the HTTP request pipeline. + app.MapGrpcService(); + app.MapGet("/", () => "Communication with gRPC endpoints must be made through a gRPC client. To learn how to create a client, visit: https://go.microsoft.com/fwlink/?linkid=2086909"); + + app.Run(); + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API.gRPC/Properties/launchSettings.json b/src/FishingTrip.API.gRPC/Properties/launchSettings.json new file mode 100644 index 0000000..1e6b7bb --- /dev/null +++ b/src/FishingTrip.API.gRPC/Properties/launchSettings.json @@ -0,0 +1,18 @@ +{ + "profiles": { + "FishingTrip.API.gRPC": { + "commandName": "Project", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://localhost:5231;https://localhost:7231", + "dotnetRunMessages": true + }, + "Docker": { + "commandName": "Docker", + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}", + "publishAllPorts": true, + "useSSL": true + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API.gRPC/Protos/greet.proto b/src/FishingTrip.API.gRPC/Protos/greet.proto new file mode 100644 index 0000000..3d5ced6 --- /dev/null +++ b/src/FishingTrip.API.gRPC/Protos/greet.proto @@ -0,0 +1,21 @@ +syntax = "proto3"; + +option csharp_namespace = "FishingTrip.API.gRPC"; + +package greet; + +// The greeting service definition. +service Greeter { + // Sends a greeting + rpc SayHello (HelloRequest) returns (HelloReply); +} + +// The request message containing the user's name. +message HelloRequest { + string name = 1; +} + +// The response message containing the greetings. +message HelloReply { + string message = 1; +} diff --git a/src/FishingTrip.API.gRPC/Services/GreeterService.cs b/src/FishingTrip.API.gRPC/Services/GreeterService.cs new file mode 100644 index 0000000..b317fc4 --- /dev/null +++ b/src/FishingTrip.API.gRPC/Services/GreeterService.cs @@ -0,0 +1,21 @@ +using Grpc.Core; + +namespace FishingTrip.API.gRPC.Services +{ + public class GreeterService : Greeter.GreeterBase + { + private readonly ILogger _logger; + public GreeterService(ILogger logger) + { + _logger = logger; + } + + public override Task SayHello(HelloRequest request, ServerCallContext context) + { + return Task.FromResult(new HelloReply + { + Message = "Hello " + request.Name + }); + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API.gRPC/appsettings.Development.json b/src/FishingTrip.API.gRPC/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/src/FishingTrip.API.gRPC/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/src/FishingTrip.API.gRPC/appsettings.json b/src/FishingTrip.API.gRPC/appsettings.json new file mode 100644 index 0000000..1aef507 --- /dev/null +++ b/src/FishingTrip.API.gRPC/appsettings.json @@ -0,0 +1,14 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Kestrel": { + "EndpointDefaults": { + "Protocols": "Http2" + } + } +} diff --git a/src/FishingTrip.API/Controllers/BookingController.cs b/src/FishingTrip.API/Controllers/BookingController.cs new file mode 100644 index 0000000..8a8a2ac --- /dev/null +++ b/src/FishingTrip.API/Controllers/BookingController.cs @@ -0,0 +1,10 @@ +using Microsoft.AspNetCore.Mvc; + +namespace FishingTrip.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class BookingController : ControllerBase + { + } +} diff --git a/src/FishingTrip.API/Controllers/GalleryController.cs b/src/FishingTrip.API/Controllers/GalleryController.cs new file mode 100644 index 0000000..0942985 --- /dev/null +++ b/src/FishingTrip.API/Controllers/GalleryController.cs @@ -0,0 +1,56 @@ +using FishingTrip.Application.Interface; +using FishingTrip.Domain.FishingTripDomain; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Swashbuckle.AspNetCore.Annotations; +using System.Net; + +namespace FishingTrip.API.Controllers +{ + + [ApiController] + [Route("Gallery")] + public class GalleryController : ControllerBase + { + private readonly ILogger _logger; + private readonly IFishingTripPlannerDbContext fishingTripPlannerDbContext; + + public GalleryController(IFishingTripPlannerDbContext fishingTripPlannerDbContext, ILogger logger) + { + _logger = logger; + this.fishingTripPlannerDbContext = fishingTripPlannerDbContext; + } + [HttpGet] + [SwaggerOperation( + Summary = "Get Profile", + Description = "Retrieves Profile by Id", + OperationId = "get-Profile")] + [Route("{profileId}")] + [ProducesResponseType(typeof(UserProfile), (int)HttpStatusCode.OK)] + [ProducesResponseType(typeof(string), (int)HttpStatusCode.BadRequest)] + + public Task GetProfileAsync([FromRoute] string profileId) => fishingTripPlannerDbContext.UserProfiles.FirstOrDefaultAsync(); + + [HttpGet] + [SwaggerOperation( + Summary = "Get Profiles", + Description = "Retrieves Profile by email", + OperationId = "get-Profiles")] + [ProducesResponseType(typeof(List), (int)HttpStatusCode.OK)] + [ProducesResponseType(typeof(string), (int)HttpStatusCode.BadRequest)] + public Task> GetProfilesAsync([FromQuery] string email) => fishingTripPlannerDbContext.UserProfiles.Where(profile => profile.Email == email).ToListAsync(); + + [HttpPost] + [SwaggerOperation( + Summary = "Add Profile", + Description = "Retrieves Profile by email", + OperationId = "add-Profile")] + [ProducesResponseType(typeof(int), (int)HttpStatusCode.OK)] + [ProducesResponseType(typeof(string), (int)HttpStatusCode.BadRequest)] + public Task AddProfileAsync(string email, string phone) + { + fishingTripPlannerDbContext.Add(new UserProfile { Email = email, PhoneNumber = phone }); + return fishingTripPlannerDbContext.SaveChangesAsync(); + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API/Controllers/WeatherForecastController.cs b/src/FishingTrip.API/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..36a9608 --- /dev/null +++ b/src/FishingTrip.API/Controllers/WeatherForecastController.cs @@ -0,0 +1,33 @@ +using Microsoft.AspNetCore.Mvc; + +namespace FishingTrip.API.Controllers +{ + [ApiController] + [Route("api/[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet(Name = "GetWeatherForecast")] + public IEnumerable Get() + { + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateTime.Now.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = Summaries[Random.Shared.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API/DI/ApiModule.cs b/src/FishingTrip.API/DI/ApiModule.cs new file mode 100644 index 0000000..ddce944 --- /dev/null +++ b/src/FishingTrip.API/DI/ApiModule.cs @@ -0,0 +1,4 @@ +namespace FishingTrip.API.DI +{ + public class ApiModule { } +} \ No newline at end of file diff --git a/src/FishingTrip.API/Dockerfile b/src/FishingTrip.API/Dockerfile new file mode 100644 index 0000000..78a3829 --- /dev/null +++ b/src/FishingTrip.API/Dockerfile @@ -0,0 +1,22 @@ +#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. + +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base +WORKDIR /app +EXPOSE 80 +EXPOSE 443 + +FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build +WORKDIR /src +COPY ["FishingTrip.API/FishingTrip.API. ", "FishingTrip.API/"] +RUN dotnet restore "FishingTrip.API/FishingTrip.API.csproj" +COPY . . +WORKDIR "/src/FishingTrip.API" +RUN dotnet build "FishingTrip.API.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "FishingTrip.API.csproj" -c Release -o /app/publish + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "FishingTrip.API.dll"] \ No newline at end of file diff --git a/src/FishingTrip.API/FishingTrip.API.csproj b/src/FishingTrip.API/FishingTrip.API.csproj new file mode 100644 index 0000000..12931a7 --- /dev/null +++ b/src/FishingTrip.API/FishingTrip.API.csproj @@ -0,0 +1,25 @@ + + + + net6.0 + enable + enable + d1774b5f-0928-44ad-9e51-47740df1e22f + Linux + + + + + + + + + + + + + + + + + diff --git a/src/FishingTrip.API/Program.cs b/src/FishingTrip.API/Program.cs new file mode 100644 index 0000000..2a64575 --- /dev/null +++ b/src/FishingTrip.API/Program.cs @@ -0,0 +1,22 @@ +using FishingTrip.Infrastructure.DI; +using Microsoft.AspNetCore; +namespace FishingTrip.API +{ + public class Program + { + public static Task Main(string[] args) + => BuildWebHost(args) + .RunAsync(); + + public static IWebHost BuildWebHost(string[] args) + => WebHost.CreateDefaultBuilder(args) + .ConfigureLogging(logging => + { + logging.AddConsole(); + }) + .ConfigureServices((app, services) => + { + services.AddConfiguration(); + }).UseStartup().Build(); + } +} \ No newline at end of file diff --git a/src/FishingTrip.API/Properties/launchSettings.json b/src/FishingTrip.API/Properties/launchSettings.json new file mode 100644 index 0000000..43748ed --- /dev/null +++ b/src/FishingTrip.API/Properties/launchSettings.json @@ -0,0 +1,38 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:48113", + "sslPort": 44372 + } + }, + "profiles": { + "FishingTrip.API": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:7218;http://localhost:5218", + "dotnetRunMessages": true + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Docker": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger", + "publishAllPorts": true, + "useSSL": true + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API/Startup.cs b/src/FishingTrip.API/Startup.cs new file mode 100644 index 0000000..63ad373 --- /dev/null +++ b/src/FishingTrip.API/Startup.cs @@ -0,0 +1,52 @@ +using FishingTrip.Application.Interface; +using FishingTrip.Application.Interface.Config; +using FishingTrip.Infrastructure.DBContext; +using FishingTrip.Infrastructure.DI; + +namespace FishingTrip.API +{ + public class Startup + { + private readonly IConfigProvider configProvider; + public Startup(IConfigProvider configProvider) + { + this.configProvider = configProvider; + } + public void ConfigureServices(IServiceCollection services) + { + services.AddControllers(); + services.AddEndpointsApiExplorer(); + services.AddSwaggerGen(); + services.AddDatabase(configProvider); + } + + public void Configure(IApplicationBuilder app, IWebHostEnvironment env) + { + + // Configure the HTTP request pipeline. + if (env.IsDevelopment()) + { + app.UseSwagger(); + app.UseSwaggerUI(); + } + app.UseHttpsRedirection(); + app.UseRouting(); + app.UseAuthorization(); + app.UseEndpoints(endpoints => + { + endpoints.MapControllers(); + + }); + } + } + + public static class RegisterServicesExtensions + { + public static IServiceCollection AddDatabase(this IServiceCollection serviceCollection, IConfigProvider configProvider) + { + + serviceCollection.AddPostgresDatabaseContext(configProvider.FishingTripDbConnectionString); + return serviceCollection; + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API/WeatherForecast.cs b/src/FishingTrip.API/WeatherForecast.cs new file mode 100644 index 0000000..6699bc7 --- /dev/null +++ b/src/FishingTrip.API/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace FishingTrip.API +{ + public class WeatherForecast + { + public DateTime Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.API/appsettings.Development.json b/src/FishingTrip.API/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/src/FishingTrip.API/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/src/FishingTrip.API/appsettings.json b/src/FishingTrip.API/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/src/FishingTrip.API/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/src/FishingTrip.Application/FishingTrip.Application.csproj b/src/FishingTrip.Application/FishingTrip.Application.csproj new file mode 100644 index 0000000..3d7e94a --- /dev/null +++ b/src/FishingTrip.Application/FishingTrip.Application.csproj @@ -0,0 +1,18 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + + diff --git a/src/FishingTrip.Application/Interface/Config/IConfigPovider.cs b/src/FishingTrip.Application/Interface/Config/IConfigPovider.cs new file mode 100644 index 0000000..f6ccf3f --- /dev/null +++ b/src/FishingTrip.Application/Interface/Config/IConfigPovider.cs @@ -0,0 +1,7 @@ +namespace FishingTrip.Application.Interface.Config +{ + public interface IConfigProvider + { + public string FishingTripDbConnectionString { get; } + } +} diff --git a/src/FishingTrip.Application/Interface/IDbContext.cs b/src/FishingTrip.Application/Interface/IDbContext.cs new file mode 100644 index 0000000..c2c34ab --- /dev/null +++ b/src/FishingTrip.Application/Interface/IDbContext.cs @@ -0,0 +1,36 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.ChangeTracking; +using Microsoft.EntityFrameworkCore.Infrastructure; + +namespace FishingTrip.Application.Interface +{ + public interface IDbContext + { + public ChangeTracker ChangeTracker { get; } + DatabaseFacade Database { get; } + Task SaveChangesAsync(CancellationToken cancellationToken = default); + Task SaveChangesAsync(bool acceptAllChangesOnSuccess, + CancellationToken cancellationToken = default); + int SaveChanges(); + int SaveChanges(bool acceptAllChangesOnSuccess); + EntityEntry Remove(TEntity entity) where TEntity : class; + EntityEntry Attach(TEntity entity) where TEntity : class; + EntityEntry Update(TEntity entity) where TEntity : class; + ValueTask> AddAsync( + TEntity entity, + CancellationToken cancellationToken = default) + where TEntity : class; + + void AddRange(params object[] entities); + Task AddRangeAsync(params object[] entities); + void AddRange(IEnumerable entities); + Task AddRangeAsync( + IEnumerable entities, + CancellationToken cancellationToken = default); + EntityEntry Add(TEntity entity) where TEntity : class; + DbSet Set() where TEntity : class; + public EntityEntry Entry(TEntity entity) + where TEntity : class; + EntityEntry Entry(object entity); + } +} diff --git a/src/FishingTrip.Application/Interface/IDbContextProvider.cs b/src/FishingTrip.Application/Interface/IDbContextProvider.cs new file mode 100644 index 0000000..2bf5296 --- /dev/null +++ b/src/FishingTrip.Application/Interface/IDbContextProvider.cs @@ -0,0 +1,7 @@ +namespace FishingTrip.Application.Interface +{ + public interface IDbContextProvider + { + TDbContext Get(); + } +} \ No newline at end of file diff --git a/src/FishingTrip.Application/Interface/IFishingTripPlannerDbContext.cs b/src/FishingTrip.Application/Interface/IFishingTripPlannerDbContext.cs new file mode 100644 index 0000000..6dd0150 --- /dev/null +++ b/src/FishingTrip.Application/Interface/IFishingTripPlannerDbContext.cs @@ -0,0 +1,14 @@ +using FishingTrip.Domain.FishingTripDomain; +using Microsoft.EntityFrameworkCore; + + +namespace FishingTrip.Application.Interface +{ + public interface IFishingTripPlannerDbContext : IDbContext + + { + public DbSet? Boats { get; set; } + public DbSet? Users { get; set; } + public DbSet? UserProfiles { get; set; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/Config/ConnectionConfig.cs b/src/FishingTrip.Domain/Config/ConnectionConfig.cs new file mode 100644 index 0000000..0060d45 --- /dev/null +++ b/src/FishingTrip.Domain/Config/ConnectionConfig.cs @@ -0,0 +1,9 @@ +namespace FishingTrip.Domain.Config +{ + public class ConnectionConfig + { + public string? FishingTripConnectionString { get; } + public string? EventSourceConnectionString { get; } + + } +} diff --git a/src/FishingTrip.Domain/DetailedDomains/BoatProfile.cs b/src/FishingTrip.Domain/DetailedDomains/BoatProfile.cs new file mode 100644 index 0000000..7404986 --- /dev/null +++ b/src/FishingTrip.Domain/DetailedDomains/BoatProfile.cs @@ -0,0 +1,9 @@ +namespace FishingTrip.Domain.DetailedDomains +{ + public class BoatProfile + { + public string? Name { get; set; } + public string? NameEnglish { get; set; } + + } +} diff --git a/src/FishingTrip.Domain/DetailedDomains/LocationCoordinate.cs b/src/FishingTrip.Domain/DetailedDomains/LocationCoordinate.cs new file mode 100644 index 0000000..dcade1e --- /dev/null +++ b/src/FishingTrip.Domain/DetailedDomains/LocationCoordinate.cs @@ -0,0 +1,8 @@ +namespace FishingTrip.Domain.DetailedDomains +{ + public class LocationCoordinate + { + public double Latitude { get; set; } + public double Longitude { get; set; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/DetailedDomains/PortProfile.cs b/src/FishingTrip.Domain/DetailedDomains/PortProfile.cs new file mode 100644 index 0000000..fb9dd22 --- /dev/null +++ b/src/FishingTrip.Domain/DetailedDomains/PortProfile.cs @@ -0,0 +1,16 @@ +namespace FishingTrip.Domain.DetailedDomains +{ + public class PortProfile + { + public string? Name { get; set; } + public string? NameEnglish { get; set; } + public string? PortAddress { get; set; } + public string? MainPhoneNumber { get; set; } + public string? SecondaryPhoneNumber { get; set; } // nullable + public string? EmailAddress { get; set; } // nullable + public bool RequiresLicenseBEforeArrival { get; set; } // nullable + public string? RequiredDocuments { get; set; } // nullable + public LocationCoordinate? Location { get; set; } + public string? MoreInfo { get; set; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/DetailedDomains/UserProfile.cs b/src/FishingTrip.Domain/DetailedDomains/UserProfile.cs new file mode 100644 index 0000000..d24940b --- /dev/null +++ b/src/FishingTrip.Domain/DetailedDomains/UserProfile.cs @@ -0,0 +1,14 @@ +namespace FishingTrip.Domain.DetailedDomains +{ + public class UserProfile + { + public string? FirstName { get; set; } + public string? LastName { get; set; } + public string GetFullName() => $"{FirstName} {LastName}"; + public DateOnly? DateOfBirth { get; set; } + public UserProfile() + { + + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/Enums/TripMemberRole.cs b/src/FishingTrip.Domain/Enums/TripMemberRole.cs new file mode 100644 index 0000000..0e7c35d --- /dev/null +++ b/src/FishingTrip.Domain/Enums/TripMemberRole.cs @@ -0,0 +1,16 @@ +using System.Runtime.Serialization; + +namespace FishingTrip.Domain.Enums +{ + public enum TripMemberRole + { + [EnumMember(Value = "CAPTAIN")] + Captain, + [EnumMember(Value = "MEMBER")] + Member, + [EnumMember(Value = "CAPTAIN")] + Admin, + [EnumMember(Value = "Crew")] + Crew + } +} diff --git a/src/FishingTrip.Domain/EventSourcingDomain/EventSource.cs b/src/FishingTrip.Domain/EventSourcingDomain/EventSource.cs new file mode 100644 index 0000000..0a2ba97 --- /dev/null +++ b/src/FishingTrip.Domain/EventSourcingDomain/EventSource.cs @@ -0,0 +1,26 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.EventSourcingDomain +{ + [Table("Events")] + public record EventSource + { + public EventSource() + { + EntityId = Guid.NewGuid(); + } + public Guid EntityId { get; set; } + + public int Version { get; set; } + + + [Required] public string? Payload { get; set; } + + public string? DomainEventType { get; set; } + + public string? TraceId { get; set; } + + public DateTime Timestamp { get; set; } = DateTime.UtcNow; + } +} diff --git a/src/FishingTrip.Domain/FishingTrip.Domain.csproj b/src/FishingTrip.Domain/FishingTrip.Domain.csproj new file mode 100644 index 0000000..27ac386 --- /dev/null +++ b/src/FishingTrip.Domain/FishingTrip.Domain.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/src/FishingTrip.Domain/FishingTripDomain/Boat.cs b/src/FishingTrip.Domain/FishingTripDomain/Boat.cs new file mode 100644 index 0000000..3d8c6cb --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/Boat.cs @@ -0,0 +1,24 @@ +using FishingTrip.Domain.DetailedDomains; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record Boat + { + public Boat() + { + Created = DateTime.UtcNow; + } + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public long Id { get; init; } + public DateTime Created { get; init; } + public User? Owner { get; init; } + [Column(TypeName = "jsonb")] + public BoatProfile? Profile { get; init; } + public Port? OperatingPort { get; init; } + public string? GetCurrentPortName(string locale) => OperatingPort?.GetName(locale); + public string? GetName(string locale) => locale == "" ? Profile?.Name : Profile?.NameEnglish; + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/FishingTripDomain/BoatAvailability.cs b/src/FishingTrip.Domain/FishingTripDomain/BoatAvailability.cs new file mode 100644 index 0000000..0cbedaa --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/BoatAvailability.cs @@ -0,0 +1,16 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record BoatAvailability + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public long Id { get; set; } + [Required] + public int Year { get; set; } + public Boat? Boat { get; set; } + public ICollection? CalendarExceptions { get; set; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/FishingTripDomain/Booking.cs b/src/FishingTrip.Domain/FishingTripDomain/Booking.cs new file mode 100644 index 0000000..9026300 --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/Booking.cs @@ -0,0 +1,15 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record Booking + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public long Id { get; init; } + public virtual User? BookedByUser { get; init; } + public DateOnly Date { get; init; } + public TimeOnly Time { get; init; } + } +} diff --git a/src/FishingTrip.Domain/FishingTripDomain/ExceptionDay.cs b/src/FishingTrip.Domain/FishingTripDomain/ExceptionDay.cs new file mode 100644 index 0000000..1c13801 --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/ExceptionDay.cs @@ -0,0 +1,9 @@ +namespace FishingTrip.Domain.FishingTripDomain +{ + public record CalendarException + { + public DateTime DateFrom { get; init; } + public DateTime DateTo { get; init; } + public string? Reason { get; init; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/FishingTripDomain/Port.cs b/src/FishingTrip.Domain/FishingTripDomain/Port.cs new file mode 100644 index 0000000..4cb38d0 --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/Port.cs @@ -0,0 +1,18 @@ +using FishingTrip.Domain.DetailedDomains; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record Port + { + [Required] + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public long Id { get; init; } + + [Column(TypeName = "jsonb")] + public PortProfile? Profile { get; init; } + public string? GetName(string locale) => locale == "" ? Profile?.Name : Profile?.NameEnglish; + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/FishingTripDomain/Profile.cs b/src/FishingTrip.Domain/FishingTripDomain/Profile.cs new file mode 100644 index 0000000..ac9334a --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/Profile.cs @@ -0,0 +1,25 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record UserProfile + { + [MaxLength(100)] + public string Email { get; init; } + [Column(TypeName = "jsonb")] + public UserProfile? ProfileDetails { get; init; } + + [Key] + [MaxLength(15)] + public string PhoneNumber { get; init; } + + public long? DefaultUserId { get; init; } + [ForeignKey(nameof(DefaultUserId))] + public User? DefaultUser { get; init; } + + public ICollection? Trips { get; init; } + public bool IsActive { get; init; } + public UserProfile() => IsActive = true; + } +} diff --git a/src/FishingTrip.Domain/FishingTripDomain/Trip.cs b/src/FishingTrip.Domain/FishingTripDomain/Trip.cs new file mode 100644 index 0000000..9e9a181 --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/Trip.cs @@ -0,0 +1,18 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record Trip + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public long Id { get; set; } + + public DateOnly? DepartureDate { get; set; } + public DateOnly? ReturnDate { get; set; } + public ICollection? TripMembers { get; set; } + public Port? DeparturePort { get; set; } + public Port? ReturnPort { get; set; } + } +} diff --git a/src/FishingTrip.Domain/FishingTripDomain/TripMember.cs b/src/FishingTrip.Domain/FishingTripDomain/TripMember.cs new file mode 100644 index 0000000..ef4e465 --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/TripMember.cs @@ -0,0 +1,14 @@ +using FishingTrip.Domain.Enums; +using System.ComponentModel.DataAnnotations.Schema; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record TripMember + { + public string? PhoneNumber { get; set; } + [ForeignKey(nameof(PhoneNumber))] + public UserProfile? Profile { get; set; } + public User? User { get; set; } + public TripMemberRole Role { get; set; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/FishingTripDomain/User.cs b/src/FishingTrip.Domain/FishingTripDomain/User.cs new file mode 100644 index 0000000..f1f5cc6 --- /dev/null +++ b/src/FishingTrip.Domain/FishingTripDomain/User.cs @@ -0,0 +1,15 @@ +using System.ComponentModel.DataAnnotations; + +namespace FishingTrip.Domain.FishingTripDomain +{ + public record User + { + [Key] public long Id { get; set; } + [Required] + [MaxLength(15)] + public string? UserName { get; set; } + public UserProfile? Profile { get; set; } + public ICollection? Bookings { get; set; } + public ICollection? Trips { get; set; } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Domain/WeatherDomain/ForecastRecord.cs b/src/FishingTrip.Domain/WeatherDomain/ForecastRecord.cs new file mode 100644 index 0000000..0214de2 --- /dev/null +++ b/src/FishingTrip.Domain/WeatherDomain/ForecastRecord.cs @@ -0,0 +1,10 @@ +namespace FishingTrip.Domain.WeatherDomain +{ + public record ForecastRecord + { + public DateOnly? ForecastDate { get; set; } + public TimeOnly? ForecastTime { get; set; } + public Tide? Tide { get; set; } + public Temperature? Temperature { get; set; } + } +} diff --git a/src/FishingTrip.Domain/WeatherDomain/Temperature.cs b/src/FishingTrip.Domain/WeatherDomain/Temperature.cs new file mode 100644 index 0000000..05f3699 --- /dev/null +++ b/src/FishingTrip.Domain/WeatherDomain/Temperature.cs @@ -0,0 +1,6 @@ +namespace FishingTrip.Domain.WeatherDomain +{ + public record Temperature + { + } +} diff --git a/src/FishingTrip.Domain/WeatherDomain/Tide.cs b/src/FishingTrip.Domain/WeatherDomain/Tide.cs new file mode 100644 index 0000000..568211d --- /dev/null +++ b/src/FishingTrip.Domain/WeatherDomain/Tide.cs @@ -0,0 +1,6 @@ +namespace FishingTrip.Domain.WeatherDomain +{ + public record class Tide + { + } +} diff --git a/src/FishingTrip.Infrastructure.UnitTesting/FishingTrip.Infrastructure.UnitTesting.csproj b/src/FishingTrip.Infrastructure.UnitTesting/FishingTrip.Infrastructure.UnitTesting.csproj new file mode 100644 index 0000000..c5d1063 --- /dev/null +++ b/src/FishingTrip.Infrastructure.UnitTesting/FishingTrip.Infrastructure.UnitTesting.csproj @@ -0,0 +1,24 @@ + + + + net6.0 + enable + enable + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + diff --git a/src/FishingTrip.Infrastructure.UnitTesting/UnitTest1.cs b/src/FishingTrip.Infrastructure.UnitTesting/UnitTest1.cs new file mode 100644 index 0000000..0e38aff --- /dev/null +++ b/src/FishingTrip.Infrastructure.UnitTesting/UnitTest1.cs @@ -0,0 +1,11 @@ +namespace FishingTrip.Infrastructure.UnitTesting +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure.UnitTesting/Usings.cs b/src/FishingTrip.Infrastructure.UnitTesting/Usings.cs new file mode 100644 index 0000000..8c927eb --- /dev/null +++ b/src/FishingTrip.Infrastructure.UnitTesting/Usings.cs @@ -0,0 +1 @@ +global using Xunit; \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure/Config/ConfigPovider.cs b/src/FishingTrip.Infrastructure/Config/ConfigPovider.cs new file mode 100644 index 0000000..d91dedf --- /dev/null +++ b/src/FishingTrip.Infrastructure/Config/ConfigPovider.cs @@ -0,0 +1,10 @@ + +using FishingTrip.Application.Interface.Config; + +namespace FishingTrip.Infrastructure.Config +{ + internal class ConfigProvider : IConfigProvider + { + public string FishingTripDbConnectionString { get; } = "User ID=postgres;Password=admin;Host=localhost;Port=5432;Database=newsimpleFishing;Pooling=true"; + } +} \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure/DBContext/FishingTripEventSourcingDbContext.cs b/src/FishingTrip.Infrastructure/DBContext/FishingTripEventSourcingDbContext.cs new file mode 100644 index 0000000..c1a631e --- /dev/null +++ b/src/FishingTrip.Infrastructure/DBContext/FishingTripEventSourcingDbContext.cs @@ -0,0 +1,13 @@ +using FishingTrip.Domain.EventSourcingDomain; +using Microsoft.EntityFrameworkCore; +namespace FishingTrip.Infrastructure.DBContext +{ + public class FishingTripEventSourcingDbContext : DbContext + { + public DbSet? Events { get; set; } + public FishingTripEventSourcingDbContext(DbContextOptions options) : base(options) + { + + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContext.cs b/src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContext.cs new file mode 100644 index 0000000..9ebfd53 --- /dev/null +++ b/src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContext.cs @@ -0,0 +1,27 @@ +using FishingTrip.Application.Interface; +using FishingTrip.Domain.FishingTripDomain; +using Microsoft.EntityFrameworkCore; +namespace FishingTrip.Infrastructure.DBContext +{ + public class FishingTripPlannerDbContext : DbContext, IFishingTripPlannerDbContext + { + public DbSet? Boats { get; set; } + public DbSet? Users { get; set; } + public DbSet? UserProfiles { get; set; } + public FishingTripPlannerDbContext(DbContextOptions options) + : base(options) + { + } + protected override void OnModelCreating(ModelBuilder builder) + { + builder.Entity().HasKey(key => key.PhoneNumber); + builder.Entity().HasKey(key => new { key.PhoneNumber, key.Role }); + base.OnModelCreating(builder); + } + public override int SaveChanges() + { + ChangeTracker.DetectChanges(); + return base.SaveChanges(); + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContextProvider.cs b/src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContextProvider.cs new file mode 100644 index 0000000..0acf534 --- /dev/null +++ b/src/FishingTrip.Infrastructure/DBContext/FishingTripPlannerDbContextProvider.cs @@ -0,0 +1,28 @@ +using FishingTrip.Application.Interface; +using FishingTrip.Application.Interface.Config; +using Microsoft.EntityFrameworkCore; + +namespace FishingTrip.Infrastructure.DBContext +{ + internal class FishingTripPlannerDbContextProvider : IDbContextProvider, IDbContextConfigProvider + { + protected readonly IConfigProvider configProvider; + public FishingTripPlannerDbContextProvider(IConfigProvider _configProvider) + { + configProvider = _configProvider; + } + public FishingTripPlannerDbContext Get() + { + var dbContext = new FishingTripPlannerDbContext(GetContextConfig()); + return dbContext; + } + public DbContextOptions GetContextConfig() + { + var optionsBuilder = new DbContextOptionsBuilder(); + if (string.IsNullOrEmpty(configProvider.FishingTripDbConnectionString)) + throw new Exception($"Cannot get database connection string "); + DbContextOptionsBuilder dbContextOptionsBuilder = optionsBuilder.UseNpgsql(configProvider.FishingTripDbConnectionString); + return optionsBuilder.Options; + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure/DBContext/IDbContextConfigProvider.cs b/src/FishingTrip.Infrastructure/DBContext/IDbContextConfigProvider.cs new file mode 100644 index 0000000..abd3bd9 --- /dev/null +++ b/src/FishingTrip.Infrastructure/DBContext/IDbContextConfigProvider.cs @@ -0,0 +1,10 @@ +using Microsoft.EntityFrameworkCore; + +namespace FishingTrip.Infrastructure.DBContext +{ + public interface IDbContextConfigProvider + where TDbContext : DbContext + { + DbContextOptions GetContextConfig(); + } +} diff --git a/src/FishingTrip.Infrastructure/DI/ConfigurationRegisterationExtension.cs b/src/FishingTrip.Infrastructure/DI/ConfigurationRegisterationExtension.cs new file mode 100644 index 0000000..0ba9a5a --- /dev/null +++ b/src/FishingTrip.Infrastructure/DI/ConfigurationRegisterationExtension.cs @@ -0,0 +1,14 @@ +using FishingTrip.Application.Interface.Config; +using FishingTrip.Infrastructure.Config; +using Microsoft.Extensions.DependencyInjection; + +namespace FishingTrip.Infrastructure.DI +{ + public static class ConfigurationRegistrationExtension + { + public static void AddConfiguration(this IServiceCollection serviceCollection) + { + serviceCollection.AddScoped(typeof(IConfigProvider), typeof(ConfigProvider)); + } + } +} diff --git a/src/FishingTrip.Infrastructure/DI/DatabaseRegisterationExtenstion.cs b/src/FishingTrip.Infrastructure/DI/DatabaseRegisterationExtenstion.cs new file mode 100644 index 0000000..39ddbfa --- /dev/null +++ b/src/FishingTrip.Infrastructure/DI/DatabaseRegisterationExtenstion.cs @@ -0,0 +1,25 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; + +namespace FishingTrip.Infrastructure.DI +{ + public static class DatabaseRegistrationExtension + { + public static IServiceCollection AddPostgresDatabaseContext(this IServiceCollection serviceCollection, + string connectionString) + where TDbCOntext : DbContext + where ITDbCOntext : class + { + serviceCollection.AddDbContext( + options => + { + options.EnableDetailedErrors(); + NpgsqlDbContextOptionsBuilderExtensions + .UseNpgsql(options, connectionString); + + }); + serviceCollection.AddScoped(typeof(ITDbCOntext), typeof(TDbCOntext)); + return serviceCollection; + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure/FishingTrip.Infrastructure.csproj b/src/FishingTrip.Infrastructure/FishingTrip.Infrastructure.csproj new file mode 100644 index 0000000..a638ed5 --- /dev/null +++ b/src/FishingTrip.Infrastructure/FishingTrip.Infrastructure.csproj @@ -0,0 +1,25 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + + + + + + + + + diff --git a/src/FishingTrip.Infrastructure/Framework/Http/ApiHandler.cs b/src/FishingTrip.Infrastructure/Framework/Http/ApiHandler.cs new file mode 100644 index 0000000..61548b7 --- /dev/null +++ b/src/FishingTrip.Infrastructure/Framework/Http/ApiHandler.cs @@ -0,0 +1,27 @@ +using Microsoft.Extensions.Options; + +namespace FishingTrip.Infrastructure.Framework.Http +{ + internal abstract class ApiHandler : DelegatingHandler + where TRequestHeaders : class + { + protected readonly TRequestHeaders _requestHeaders; + + public ApiHandler(IOptions options) => _requestHeaders = options.Value; + public abstract IReadOnlyDictionary GetHttpRequestHeaders(); + protected override async Task SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + { + var requestHeaders = GetHttpRequestHeaders(); + if (requestHeaders != null && requestHeaders.Any()) + { + foreach (var header in requestHeaders) + request.Headers.Add(header.Key, header.Value); + } + var response = await base.SendAsync(request, cancellationToken); + + response.EnsureSuccessStatusCode(); + + return response; + } + } +} diff --git a/src/FishingTrip.Infrastructure/Framework/Http/RequestHeaedrKey.cs b/src/FishingTrip.Infrastructure/Framework/Http/RequestHeaedrKey.cs new file mode 100644 index 0000000..66c759c --- /dev/null +++ b/src/FishingTrip.Infrastructure/Framework/Http/RequestHeaedrKey.cs @@ -0,0 +1,8 @@ +namespace FishingTrip.Infrastructure.Framework.Http +{ + internal class RequestHeaedrKey + { + public string _key { get; private set; } + public string _value { get; private set; } + } +} diff --git a/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherAPIResponce.cs b/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherAPIResponce.cs new file mode 100644 index 0000000..a19c921 --- /dev/null +++ b/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherAPIResponce.cs @@ -0,0 +1,6 @@ +namespace FishingTrip.Infrastructure.Framework.Http.Weather +{ + public sealed class WeatherApiResponce + { + } +} diff --git a/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHandler.cs b/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHandler.cs new file mode 100644 index 0000000..fa381c7 --- /dev/null +++ b/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHandler.cs @@ -0,0 +1,24 @@ +using Microsoft.Extensions.Options; + +namespace FishingTrip.Infrastructure.Framework.Http.Weather +{ + internal class WeatherApiHandler : ApiHandler + { + + public WeatherApiHandler(IOptions options) : base(options) { } + public override IReadOnlyDictionary GetHttpRequestHeaders() + { + return new Dictionary + { + { + _requestHeaders.ApiKey?._key, + new[] { _requestHeaders.ApiKey?._value } + }, + { + _requestHeaders.ResponceType?._key, + new[] { _requestHeaders.ResponceType._value } + } + }; + } + } +} \ No newline at end of file diff --git a/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHeaders.cs b/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHeaders.cs new file mode 100644 index 0000000..db3a25f --- /dev/null +++ b/src/FishingTrip.Infrastructure/Framework/Http/Weather/WeatherApiHeaders.cs @@ -0,0 +1,9 @@ +namespace FishingTrip.Infrastructure.Framework.Http.Weather +{ + internal class WeatherApiHeaders + { + + public RequestHeaedrKey? ApiKey { get; private set; } + public RequestHeaedrKey? ResponceType { get; private set; } + } +} diff --git a/src/FishingTrip.Infrastructure/Middleware/ErrorHandlingMiddleware.cs b/src/FishingTrip.Infrastructure/Middleware/ErrorHandlingMiddleware.cs new file mode 100644 index 0000000..f30edc1 --- /dev/null +++ b/src/FishingTrip.Infrastructure/Middleware/ErrorHandlingMiddleware.cs @@ -0,0 +1,6 @@ +namespace FishingTrip.Infrastructure.Middleware +{ + internal class ErrorHandlingMiddleware + { + } +} diff --git a/src/FishingTrip.Migrations/FishingTrip.Migrations.csproj b/src/FishingTrip.Migrations/FishingTrip.Migrations.csproj new file mode 100644 index 0000000..1f62b68 --- /dev/null +++ b/src/FishingTrip.Migrations/FishingTrip.Migrations.csproj @@ -0,0 +1,37 @@ + + + + Exe + net6.0 + enable + enable + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + Always + + + + diff --git a/src/FishingTrip.Migrations/FishingTripContextFactory.cs b/src/FishingTrip.Migrations/FishingTripContextFactory.cs new file mode 100644 index 0000000..8e3c863 --- /dev/null +++ b/src/FishingTrip.Migrations/FishingTripContextFactory.cs @@ -0,0 +1,30 @@ +using FishingTrip.Infrastructure.DBContext; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Design; +using Microsoft.Extensions.Configuration; +namespace FishingTrip.Migrations +{ + internal class FishingTripPlannerDbContextFactory : IDesignTimeDbContextFactory + { + public FishingTripPlannerDbContext CreateDbContext(string[] args) + { + var configuration = new ConfigurationBuilder() + .SetBasePath(Directory.GetCurrentDirectory()) + .AddJsonFile("appsettings.json") + .Build(); + string dbConnectionString = configuration.GetConnectionString("dbConnectionString"); + if (string.IsNullOrEmpty(dbConnectionString)) + throw new Exception(nameof(dbConnectionString)); + var builder = new DbContextOptionsBuilder(); + builder.UseSqlServer( + dbConnectionString, + x => + { + x.MigrationsAssembly("FishingTrip.Migrations"); + x.CommandTimeout((int)TimeSpan.FromMinutes(10).TotalSeconds); + }); + + return new FishingTripPlannerDbContext(builder.Options); + } + } +} diff --git a/src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.Designer.cs b/src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.Designer.cs new file mode 100644 index 0000000..5df05e6 --- /dev/null +++ b/src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.Designer.cs @@ -0,0 +1,48 @@ +// +using FishingTrip.Infrastructure.DBContext; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace FishingTrip.Migrations.Migrations +{ + [DbContext(typeof(FishingTripPlannerDbContext))] + [Migration("20220721170632_initialcreate")] + partial class initialcreate + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "7.0.0-preview.6.22329.4") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("FishingTrip.Domain.Domain.Profile", b => + { + b.Property("PhoneNumber") + .HasMaxLength(15) + .HasColumnType("character varying(15)"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.HasKey("PhoneNumber"); + + b.ToTable("Profiles"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.cs b/src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.cs new file mode 100644 index 0000000..4b1fa0f --- /dev/null +++ b/src/FishingTrip.Migrations/Migrations/20220721170632_initialcreate.cs @@ -0,0 +1,34 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace FishingTrip.Migrations.Migrations +{ + /// + public partial class initialcreate : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Profiles", + columns: table => new + { + PhoneNumber = table.Column(type: "character varying(15)", maxLength: 15, nullable: false), + Email = table.Column(type: "character varying(100)", maxLength: 100, nullable: false), + IsActive = table.Column(type: "boolean", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Profiles", x => x.PhoneNumber); + }); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Profiles"); + } + } +} diff --git a/src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.Designer.cs b/src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.Designer.cs new file mode 100644 index 0000000..1c48cd8 --- /dev/null +++ b/src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.Designer.cs @@ -0,0 +1,229 @@ +// +using System; +using System.Text.Json; +using FishingTrip.Domain.DetailedDomains; +using FishingTrip.Infrastructure.DBContext; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace FishingTrip.Migrations.Migrations +{ + [DbContext(typeof(FishingTripPlannerDbContext))] + [Migration("20220721175925_modev-v01")] + partial class modevv01 + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "7.0.0-preview.6.22329.4") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Boat", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Created") + .HasColumnType("timestamp with time zone"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("OperatingPortPortId") + .HasColumnType("integer"); + + b.Property("Profile") + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("OperatingPortPortId"); + + b.ToTable("Boats"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Booking", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BookedByUserId") + .HasColumnType("bigint"); + + b.Property("Date") + .HasColumnType("date"); + + b.Property("Time") + .HasColumnType("time without time zone"); + + b.HasKey("Id"); + + b.HasIndex("BookedByUserId"); + + b.ToTable("Booking"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Port", b => + { + b.Property("PortId") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("PortId")); + + b.Property("CityName") + .HasColumnType("text"); + + b.Property("Location") + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("PortId"); + + b.ToTable("Port"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Profile", b => + { + b.Property("PhoneNumber") + .HasMaxLength(15) + .HasColumnType("character varying(15)"); + + b.Property("DefaultUserId") + .HasColumnType("bigint"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("ProfileDetails") + .HasColumnType("jsonb"); + + b.HasKey("PhoneNumber"); + + b.HasIndex("DefaultUserId") + .IsUnique(); + + b.ToTable("Profiles"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.TripMember", b => + { + b.Property("PhoneNumber") + .HasColumnType("character varying(15)"); + + b.Property("Role") + .HasColumnType("integer"); + + b.Property("UserId") + .HasColumnType("bigint"); + + b.HasKey("PhoneNumber", "Role"); + + b.HasIndex("UserId"); + + b.ToTable("TripMember"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.User", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserName") + .IsRequired() + .HasMaxLength(15) + .HasColumnType("character varying(15)"); + + b.HasKey("Id"); + + b.ToTable("Users"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Boat", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.Port", "OperatingPort") + .WithMany() + .HasForeignKey("OperatingPortPortId"); + + b.Navigation("OperatingPort"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Booking", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.User", "BookedByUser") + .WithMany("Bookings") + .HasForeignKey("BookedByUserId"); + + b.Navigation("BookedByUser"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Profile", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.User", "DefaultUser") + .WithOne("Profile") + .HasForeignKey("FishingTrip.Domain.FishingTripDomain.Profile", "DefaultUserId"); + + b.Navigation("DefaultUser"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.TripMember", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.Profile", "Profile") + .WithMany("Trips") + .HasForeignKey("PhoneNumber") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("FishingTrip.Domain.FishingTripDomain.User", "User") + .WithMany("Trips") + .HasForeignKey("UserId"); + + b.Navigation("Profile"); + + b.Navigation("User"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Profile", b => + { + b.Navigation("Trips"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.User", b => + { + b.Navigation("Bookings"); + + b.Navigation("Profile") + .IsRequired(); + + b.Navigation("Trips"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.cs b/src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.cs new file mode 100644 index 0000000..741b401 --- /dev/null +++ b/src/FishingTrip.Migrations/Migrations/20220721175925_modev-v01.cs @@ -0,0 +1,185 @@ +using FishingTrip.Domain.DetailedDomains; +using Microsoft.EntityFrameworkCore.Migrations; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using System.Text.Json; + +#nullable disable + +namespace FishingTrip.Migrations.Migrations +{ + /// + public partial class modevv01 : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "DefaultUserId", + table: "Profiles", + type: "bigint", + nullable: true); + + migrationBuilder.AddColumn( + name: "ProfileDetails", + table: "Profiles", + type: "jsonb", + nullable: true); + + migrationBuilder.CreateTable( + name: "Port", + columns: table => new + { + PortId = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + Name = table.Column(type: "text", nullable: false), + CityName = table.Column(type: "text", nullable: true), + Location = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Port", x => x.PortId); + }); + + migrationBuilder.CreateTable( + name: "Users", + columns: table => new + { + Id = table.Column(type: "bigint", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + UserName = table.Column(type: "character varying(15)", maxLength: 15, nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Users", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Boats", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + Name = table.Column(type: "text", nullable: true), + Created = table.Column(type: "timestamp with time zone", nullable: false), + Profile = table.Column(type: "jsonb", nullable: true), + OperatingPortPortId = table.Column(type: "integer", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Boats", x => x.Id); + table.ForeignKey( + name: "FK_Boats_Port_OperatingPortPortId", + column: x => x.OperatingPortPortId, + principalTable: "Port", + principalColumn: "PortId"); + }); + + migrationBuilder.CreateTable( + name: "Booking", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + BookedByUserId = table.Column(type: "bigint", nullable: true), + Date = table.Column(type: "date", nullable: false), + Time = table.Column(type: "time without time zone", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Booking", x => x.Id); + table.ForeignKey( + name: "FK_Booking_Users_BookedByUserId", + column: x => x.BookedByUserId, + principalTable: "Users", + principalColumn: "Id"); + }); + + migrationBuilder.CreateTable( + name: "TripMember", + columns: table => new + { + PhoneNumber = table.Column(type: "character varying(15)", nullable: false), + Role = table.Column(type: "integer", nullable: false), + UserId = table.Column(type: "bigint", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_TripMember", x => new { x.PhoneNumber, x.Role }); + table.ForeignKey( + name: "FK_TripMember_Profiles_PhoneNumber", + column: x => x.PhoneNumber, + principalTable: "Profiles", + principalColumn: "PhoneNumber", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_TripMember_Users_UserId", + column: x => x.UserId, + principalTable: "Users", + principalColumn: "Id"); + }); + + migrationBuilder.CreateIndex( + name: "IX_Profiles_DefaultUserId", + table: "Profiles", + column: "DefaultUserId", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_Boats_OperatingPortPortId", + table: "Boats", + column: "OperatingPortPortId"); + + migrationBuilder.CreateIndex( + name: "IX_Booking_BookedByUserId", + table: "Booking", + column: "BookedByUserId"); + + migrationBuilder.CreateIndex( + name: "IX_TripMember_UserId", + table: "TripMember", + column: "UserId"); + + migrationBuilder.AddForeignKey( + name: "FK_Profiles_Users_DefaultUserId", + table: "Profiles", + column: "DefaultUserId", + principalTable: "Users", + principalColumn: "Id"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_Profiles_Users_DefaultUserId", + table: "Profiles"); + + migrationBuilder.DropTable( + name: "Boats"); + + migrationBuilder.DropTable( + name: "Booking"); + + migrationBuilder.DropTable( + name: "TripMember"); + + migrationBuilder.DropTable( + name: "Port"); + + migrationBuilder.DropTable( + name: "Users"); + + migrationBuilder.DropIndex( + name: "IX_Profiles_DefaultUserId", + table: "Profiles"); + + migrationBuilder.DropColumn( + name: "DefaultUserId", + table: "Profiles"); + + migrationBuilder.DropColumn( + name: "ProfileDetails", + table: "Profiles"); + } + } +} diff --git a/src/FishingTrip.Migrations/Migrations/FishingTripPlannerDbContextModelSnapshot.cs b/src/FishingTrip.Migrations/Migrations/FishingTripPlannerDbContextModelSnapshot.cs new file mode 100644 index 0000000..ed255be --- /dev/null +++ b/src/FishingTrip.Migrations/Migrations/FishingTripPlannerDbContextModelSnapshot.cs @@ -0,0 +1,226 @@ +// +using System; +using System.Text.Json; +using FishingTrip.Domain.DetailedDomains; +using FishingTrip.Infrastructure.DBContext; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace FishingTrip.Migrations.Migrations +{ + [DbContext(typeof(FishingTripPlannerDbContext))] + partial class FishingTripPlannerDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "7.0.0-preview.6.22329.4") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Boat", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Created") + .HasColumnType("timestamp with time zone"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("OperatingPortPortId") + .HasColumnType("integer"); + + b.Property("Profile") + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("OperatingPortPortId"); + + b.ToTable("Boats"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Booking", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BookedByUserId") + .HasColumnType("bigint"); + + b.Property("Date") + .HasColumnType("date"); + + b.Property("Time") + .HasColumnType("time without time zone"); + + b.HasKey("Id"); + + b.HasIndex("BookedByUserId"); + + b.ToTable("Booking"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Port", b => + { + b.Property("PortId") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("PortId")); + + b.Property("CityName") + .HasColumnType("text"); + + b.Property("Location") + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("PortId"); + + b.ToTable("Port"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Profile", b => + { + b.Property("PhoneNumber") + .HasMaxLength(15) + .HasColumnType("character varying(15)"); + + b.Property("DefaultUserId") + .HasColumnType("bigint"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("IsActive") + .HasColumnType("boolean"); + + b.Property("ProfileDetails") + .HasColumnType("jsonb"); + + b.HasKey("PhoneNumber"); + + b.HasIndex("DefaultUserId") + .IsUnique(); + + b.ToTable("Profiles"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.TripMember", b => + { + b.Property("PhoneNumber") + .HasColumnType("character varying(15)"); + + b.Property("Role") + .HasColumnType("integer"); + + b.Property("UserId") + .HasColumnType("bigint"); + + b.HasKey("PhoneNumber", "Role"); + + b.HasIndex("UserId"); + + b.ToTable("TripMember"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.User", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserName") + .IsRequired() + .HasMaxLength(15) + .HasColumnType("character varying(15)"); + + b.HasKey("Id"); + + b.ToTable("Users"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Boat", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.Port", "OperatingPort") + .WithMany() + .HasForeignKey("OperatingPortPortId"); + + b.Navigation("OperatingPort"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Booking", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.User", "BookedByUser") + .WithMany("Bookings") + .HasForeignKey("BookedByUserId"); + + b.Navigation("BookedByUser"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Profile", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.User", "DefaultUser") + .WithOne("Profile") + .HasForeignKey("FishingTrip.Domain.FishingTripDomain.Profile", "DefaultUserId"); + + b.Navigation("DefaultUser"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.TripMember", b => + { + b.HasOne("FishingTrip.Domain.FishingTripDomain.Profile", "Profile") + .WithMany("Trips") + .HasForeignKey("PhoneNumber") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("FishingTrip.Domain.FishingTripDomain.User", "User") + .WithMany("Trips") + .HasForeignKey("UserId"); + + b.Navigation("Profile"); + + b.Navigation("User"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.Profile", b => + { + b.Navigation("Trips"); + }); + + modelBuilder.Entity("FishingTrip.Domain.FishingTripDomain.User", b => + { + b.Navigation("Bookings"); + + b.Navigation("Profile") + .IsRequired(); + + b.Navigation("Trips"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/FishingTrip.Migrations/Program.cs b/src/FishingTrip.Migrations/Program.cs new file mode 100644 index 0000000..1263b37 --- /dev/null +++ b/src/FishingTrip.Migrations/Program.cs @@ -0,0 +1,7 @@ +// See https://aka.ms/new-console-template for more information +using FishingTrip.Migrations; +using Microsoft.EntityFrameworkCore; + +var factory = new FishingTripPlannerDbContextFactory(); +using var context = factory.CreateDbContext(new string[] { }); +context.Database.Migrate(); diff --git a/src/FishingTrip.Migrations/appsettings.json b/src/FishingTrip.Migrations/appsettings.json new file mode 100644 index 0000000..d4f3d2f --- /dev/null +++ b/src/FishingTrip.Migrations/appsettings.json @@ -0,0 +1,5 @@ +{ + "ConnectionStrings": { + "dbConnectionString": "User ID=postgres;Password=admin;Host=localhost;Port=5432;Database=newsimpleFishing;Pooling=true;" + } +} \ No newline at end of file diff --git a/src/FishingTrip.sln b/src/FishingTrip.sln new file mode 100644 index 0000000..3b76d57 --- /dev/null +++ b/src/FishingTrip.sln @@ -0,0 +1,66 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.1.32421.90 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishingTrip.API", "FishingTrip.API\FishingTrip.API.csproj", "{C65C7201-1055-47C9-97BD-FDABC4A9A47C}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishingTrip.Domain", "FishingTrip.Domain\FishingTrip.Domain.csproj", "{DD12D681-4FE2-4627-8298-C510C1EB2E09}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishingTrip.Infrastructure", "FishingTrip.Infrastructure\FishingTrip.Infrastructure.csproj", "{2D3C1AC2-72CF-4579-AEC9-5551A344316C}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishingTrip.Application", "FishingTrip.Application\FishingTrip.Application.csproj", "{73D44694-F7E6-405F-8040-5C6F44911FAC}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishingTrip.API.gRPC", "FishingTrip.API.gRPC\FishingTrip.API.gRPC.csproj", "{4E243F42-7FCB-4410-B24E-3522E10DE26E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FishingTrip.Migrations", "FishingTrip.Migrations\FishingTrip.Migrations.csproj", "{E50AA23B-AAA0-4D8B-A8D0-7816806324B7}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Testing", "Testing", "{91ED1CA0-D6AB-423B-AE53-C09E0A40FA4B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FishingTrip.Infrastructure.UnitTesting", "FishingTrip.Infrastructure.UnitTesting\FishingTrip.Infrastructure.UnitTesting.csproj", "{BACB63CE-2E65-40DC-A0F1-834F550C8B17}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C65C7201-1055-47C9-97BD-FDABC4A9A47C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C65C7201-1055-47C9-97BD-FDABC4A9A47C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C65C7201-1055-47C9-97BD-FDABC4A9A47C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C65C7201-1055-47C9-97BD-FDABC4A9A47C}.Release|Any CPU.Build.0 = Release|Any CPU + {DD12D681-4FE2-4627-8298-C510C1EB2E09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DD12D681-4FE2-4627-8298-C510C1EB2E09}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DD12D681-4FE2-4627-8298-C510C1EB2E09}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DD12D681-4FE2-4627-8298-C510C1EB2E09}.Release|Any CPU.Build.0 = Release|Any CPU + {2D3C1AC2-72CF-4579-AEC9-5551A344316C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2D3C1AC2-72CF-4579-AEC9-5551A344316C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2D3C1AC2-72CF-4579-AEC9-5551A344316C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2D3C1AC2-72CF-4579-AEC9-5551A344316C}.Release|Any CPU.Build.0 = Release|Any CPU + {73D44694-F7E6-405F-8040-5C6F44911FAC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {73D44694-F7E6-405F-8040-5C6F44911FAC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {73D44694-F7E6-405F-8040-5C6F44911FAC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {73D44694-F7E6-405F-8040-5C6F44911FAC}.Release|Any CPU.Build.0 = Release|Any CPU + {4E243F42-7FCB-4410-B24E-3522E10DE26E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4E243F42-7FCB-4410-B24E-3522E10DE26E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4E243F42-7FCB-4410-B24E-3522E10DE26E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4E243F42-7FCB-4410-B24E-3522E10DE26E}.Release|Any CPU.Build.0 = Release|Any CPU + {E50AA23B-AAA0-4D8B-A8D0-7816806324B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E50AA23B-AAA0-4D8B-A8D0-7816806324B7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E50AA23B-AAA0-4D8B-A8D0-7816806324B7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E50AA23B-AAA0-4D8B-A8D0-7816806324B7}.Release|Any CPU.Build.0 = Release|Any CPU + {BACB63CE-2E65-40DC-A0F1-834F550C8B17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BACB63CE-2E65-40DC-A0F1-834F550C8B17}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BACB63CE-2E65-40DC-A0F1-834F550C8B17}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BACB63CE-2E65-40DC-A0F1-834F550C8B17}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {BACB63CE-2E65-40DC-A0F1-834F550C8B17} = {91ED1CA0-D6AB-423B-AE53-C09E0A40FA4B} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C5CB1573-3B3D-440E-91DB-1AC5A63854DB} + EndGlobalSection +EndGlobal From 9064e1f56ed0a9bcbdab8b5b3c6b0e23c71a6b5a Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:02:21 +0200 Subject: [PATCH 04/17] Create codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 72 +++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..ad43499 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,72 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ "master" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "master" ] + schedule: + - cron: '19 13 * * 0' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'csharp' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + # ℹ️ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 From 2c79fd40e2f5fb79a1911838fbd812c4a20d4f08 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:04:26 +0200 Subject: [PATCH 05/17] Create README.md --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c0b4465 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# cruise-planner From 83124e9ef0ce36811dbc5b7c4334650938b374d2 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:07:11 +0200 Subject: [PATCH 06/17] new contributer --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..d1f0c38 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1 @@ +* js @ux From 4bb1951597c2a9bf2384e65afd143c26c6edea0c Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:09:33 +0200 Subject: [PATCH 07/17] Update CONTRIBUTING.md --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d1f0c38..f498c41 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1 +1,2 @@ -* js @ux +*.js @ux +*.cs @atef-aziz-eg From 05326c8ba8cba3b6dc8e200274af39dc9fd8bc23 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:10:08 +0200 Subject: [PATCH 08/17] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f498c41..1cb2d30 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,2 +1,4 @@ +# js files to be reviewd by ux team *.js @ux +# cs file to be reviewed by atef *.cs @atef-aziz-eg From 13dbba6a422867502c3c1b0f1add0979074d9620 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:10:55 +0200 Subject: [PATCH 09/17] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1cb2d30..0f97de6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,3 +2,5 @@ *.js @ux # cs file to be reviewed by atef *.cs @atef-aziz-eg + # sql file to be revied by atef + *.sql atef.aziz.eg@gmail.com From 9cda252728496ce1484bc7f00302b0ca48851831 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:11:45 +0200 Subject: [PATCH 10/17] Create CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 128 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..18c9147 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,128 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations. From d16d47c6b4f2e239c449436ac7dbaf774ab89443 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:13:20 +0200 Subject: [PATCH 11/17] Create LICENSE --- LICENSE | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 674 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. From 247fe33dd74868ae769e7cee5b09c05587b1e520 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:15:58 +0200 Subject: [PATCH 12/17] Update issue templates --- .github/ISSUE_TEMPLATE/story.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/story.md diff --git a/.github/ISSUE_TEMPLATE/story.md b/.github/ISSUE_TEMPLATE/story.md new file mode 100644 index 0000000..044f23c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/story.md @@ -0,0 +1,10 @@ +--- +name: Story +about: Describe this issue template's purpose here. +title: '' +labels: new feature +assignees: '' + +--- + + From b55b8e9176a6796024371732e65a2cc81d200265 Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:38:46 +0200 Subject: [PATCH 13/17] Delete src/F1 directory --- src/F1/#new File.trz | 0 src/F1/F2/F3/f3.txt | 0 src/F1/F2/f2.txt | 0 3 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/F1/#new File.trz delete mode 100644 src/F1/F2/F3/f3.txt delete mode 100644 src/F1/F2/f2.txt diff --git a/src/F1/#new File.trz b/src/F1/#new File.trz deleted file mode 100644 index e69de29..0000000 diff --git a/src/F1/F2/F3/f3.txt b/src/F1/F2/F3/f3.txt deleted file mode 100644 index e69de29..0000000 diff --git a/src/F1/F2/f2.txt b/src/F1/F2/f2.txt deleted file mode 100644 index e69de29..0000000 From dce673023bb946cb2bde3eb286061fe4a858018e Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:39:21 +0200 Subject: [PATCH 14/17] Create newjs.js --- newjs.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 newjs.js diff --git a/newjs.js b/newjs.js new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/newjs.js @@ -0,0 +1 @@ + From 57996ac1abbb8395735186830879e0e0dcb99caa Mon Sep 17 00:00:00 2001 From: MAYO Tech <88550162+atef-aziz-eg@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:43:07 +0200 Subject: [PATCH 15/17] Create dependabot.yml --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f67cae4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + + # Maintain dependencies for Composer + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "daily" From eb07fab04eca925ae0ab6d1124a76d4656b4cbe9 Mon Sep 17 00:00:00 2001 From: Private Date: Mon, 8 Aug 2022 14:47:29 +0200 Subject: [PATCH 16/17] sadsa --- src/package-lock.json | 12101 ++++++++++++++++++++++++++++++++++++++++ src/package.json | 77 + 2 files changed, 12178 insertions(+) create mode 100644 src/package-lock.json create mode 100644 src/package.json diff --git a/src/package-lock.json b/src/package-lock.json new file mode 100644 index 0000000..cbf4780 --- /dev/null +++ b/src/package-lock.json @@ -0,0 +1,12101 @@ +{ + "name": "presentation", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha1-DfyAMJvuyEEeZecGRhxAiwu5tDE=", + "dev": true, + "requires": { + "@babel/highlight": "^7.16.0" + } + }, + "@babel/compat-data": { + "version": "7.16.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/compat-data/-/compat-data-7.16.4.tgz", + "integrity": "sha1-CB1rvDNuxcJDXGNGsq4fuYtaxo4=", + "dev": true + }, + "@babel/core": { + "version": "7.11.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/core/-/core-7.11.6.tgz", + "integrity": "sha1-OpRV3HOH/xusRXcGULwTugShVlE=", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.6", + "@babel/helper-module-transforms": "^7.11.0", + "@babel/helpers": "^7.10.4", + "@babel/parser": "^7.11.5", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.11.5", + "@babel/types": "^7.11.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/generator/-/generator-7.16.0.tgz", + "integrity": "sha1-1A89HVB15i01ALzLZ/PaqKlSZbI=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz", + "integrity": "sha1-mh8OvNpT2aLQAQjEzqzmpdXx8I0=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz", + "integrity": "sha1-8aaGuS2nlAIMJlguuFLprM0NeII=", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.16.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", + "integrity": "sha1-W0gM0T9oNj327E3IrI4toRNjy/A=", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz", + "integrity": "sha1-CQ1NFms0KgOp/sN+9P1a65x8aks=", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz", + "integrity": "sha1-BrI0jON/zMT14Y3NjXUFPyp8RP8=", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz", + "integrity": "sha1-dTAXM3oV9G+cCfZ0z/EM7pudd3g=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-function-name": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", + "integrity": "sha1-t90Hl9ALv+5PB+nE6lsOMMi7FIE=", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", + "integrity": "sha1-AIjHSGspqctdlIsaHeRttm4InPo=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", + "integrity": "sha1-TJAjwvHe9+KP9G/B2802o5vqqBo=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", + "integrity": "sha1-KShwQO/Rl8d2Nu91GI6B2ovM1aQ=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", + "integrity": "sha1-kFOOYLZy7PG0SPX09UM9N+eaPsM=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-transforms": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", + "integrity": "sha1-HIKo3UyzRXdQLr0pCWmbGUw+m7U=", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-simple-access": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", + "integrity": "sha1-zs2xRdcMVAlrFWT46fEM19GTszg=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha1-WsgizpfuxGdBq3ClF5ceRDpwxak=", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.16.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.4.tgz", + "integrity": "sha1-XXkC9hNJ/2uWPgfwajic4Tn7/m4=", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-wrap-function": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-replace-supers": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", + "integrity": "sha1-cwVejTz5vLqN21XK2T/tyGD2jxc=", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", + "integrity": "sha1-IdaidiDjg+N1NM9sELugGab5BRc=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha1-DuM4gHAUfDrgUeSH7KPrsOLouwk=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", + "integrity": "sha1-KWcvQ2Y+k23zcKrrIr7ds7rsdDg=", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k=", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha1-bnKh//GNXfy4eOHmLxoCHEty1aM=", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helper-wrap-function/-/helper-wrap-function-7.16.0.tgz", + "integrity": "sha1-s88xivzndN/nW4Z2fNbWjzSC5Xw=", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helpers": { + "version": "7.16.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/helpers/-/helpers-7.16.3.tgz", + "integrity": "sha1-J/xk9AuZbnB03HMSjD5cPn9VxDw=", + "dev": true, + "requires": { + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.3", + "@babel/types": "^7.16.0" + } + }, + "@babel/highlight": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha1-bOsysspLj182H7f9gh4/3fShclo=", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.16.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/parser/-/parser-7.16.4.tgz", + "integrity": "sha1-1fkvV88sdP/ps3mBwOcv7nMRNy4=", + "dev": true + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.4.tgz", + "integrity": "sha1-5gbrYBX+xvpZeMlA8xXq5OMAsIE=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.0.tgz", + "integrity": "sha1-wClhgmfd68coD6KG4PjKKieKLRo=", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.0.tgz", + "integrity": "sha1-eD7KYdUFJiAvmylglUU5d+iGWfE=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.0.tgz", + "integrity": "sha1-nAHe5Auda4R7ZWqvSjl2pxdA8iI=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.0.tgz", + "integrity": "sha1-yuNale0dKn+inE3EFUC4SnLpqyU=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.0.tgz", + "integrity": "sha1-pxG4zrP/3dPviNOknobb08x9s/0=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz", + "integrity": "sha1-ROHM4I/iQnSCz0RqkbtFFSjtBZY=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.0.tgz", + "integrity": "sha1-XUGOT7v4ubfQMSXTpScwQzo3NzQ=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.11.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz", + "integrity": "sha1-vYH5Wh90Z2DqQ7bC09YrEXkK0K8=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.10.4" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.0.tgz", + "integrity": "sha1-WRAIWBGrTCiwDW6/+kqwJ00eXxY=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.0.tgz", + "integrity": "sha1-VtvDlwglaDYI6e+1XqgsKi1sjcA=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.0.tgz", + "integrity": "sha1-tNr7nHF+QwHFd2sw0IDWODyJr/Y=", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz", + "integrity": "sha1-iQSC38XqN45C4Zpx5wlyjKvxhhI=", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha1-AolkqbqA28CUyRXEh618TnpmRlo=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.0.tgz", + "integrity": "sha1-+WJDlDFzZamojII1jT+EcRVGmPE=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha1-ypHvRjA1MESLkGZSusLp/plB9pk=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.0.tgz", + "integrity": "sha1-lRcG+LRJyDTtB71HTAkkyUS5Wo4=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.0.tgz", + "integrity": "sha1-3xJjf5Yw3foO+dehG8QU1inThgQ=", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.0" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.0.tgz", + "integrity": "sha1-xhh2MjOtAoR4BavKxMNFzp3nFF0=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.0.tgz", + "integrity": "sha1-vPQz+0gv6MPTtOimaxxKjnfTfBY=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.0.tgz", + "integrity": "sha1-VM9f8LIkLGVz11PNS/xwd6iygvU=", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.0.tgz", + "integrity": "sha1-4MOFUH0h4bCwdtZr7W1SMbhRELc=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.0.tgz", + "integrity": "sha1-rT1+dFhK1epOrbHmZCFGxZDe4zw=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.0.tgz", + "integrity": "sha1-ULqwDBCEthYtClioGAMc9XeY4G8=", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.0.tgz", + "integrity": "sha1-i8LiGBPj6J5eW/O2CqX8RYV1oXY=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.0.tgz", + "integrity": "sha1-oYDNKIHjUzzvnTkB5I2tD77/S+Q=", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.0.tgz", + "integrity": "sha1-96us7RVSYOJGE1m7x8ckispea9I=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.0.tgz", + "integrity": "sha1-AuNpnChMYmIjZZn3UQZcXV8fQA4=", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.0.tgz", + "integrity": "sha1-eXEeZw/86zG9KYIp1Q82IfeYDKw=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.0.tgz", + "integrity": "sha1-UlG0zOAer4MUQD0hrtsmnXn15ks=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.0.tgz", + "integrity": "sha1-CavUHhjc9P1HnFmMHO97056xM34=", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz", + "integrity": "sha1-rdWOY4yN3Eh1vZqey1xZRhP2ySI=", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.16.0", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.0.tgz", + "integrity": "sha1-qSzyQK/rYF9MoWZwRTAkQl5CHqQ=", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.15.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.0.tgz", + "integrity": "sha1-GV8mwq1tajkbcIgO/84YzmJeBqc=", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.0.tgz", + "integrity": "sha1-09thzF1bl5hlWZZ81eqD5cMglso=", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.0.tgz", + "integrity": "sha1-r4I6tXb3UiFaSZN3eaQcplglqzU=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.0.tgz", + "integrity": "sha1-+yDVgG3GSRoGKWrBTqjo1v7dpys=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.16.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.3.tgz", + "integrity": "sha1-+p5Mh07lIj+JHub6jXN/R2bTHRU=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.0.tgz", + "integrity": "sha1-qVxVIYmpagAFn2d23E4A42kMeNE=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.0.tgz", + "integrity": "sha1-mgrYqo6HkIg6e9Jzb2YimlgSVnY=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.0.tgz", + "integrity": "sha1-VbeX1JYMPeBOB60cBHbivGpIifE=", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-jsx": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.0.tgz", + "integrity": "sha1-HLUodGeNI6sR0NFkiNVHMIBzA+8=", + "dev": true, + "requires": { + "@babel/plugin-transform-react-jsx": "^7.16.0" + } + }, + "@babel/plugin-transform-react-jsx-self": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.16.0.tgz", + "integrity": "sha1-CSAhWKu8cWoIMw85K/uY1rms+gw=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.16.0.tgz", + "integrity": "sha1-1AyVnXgDquOCJFlFhXSGk+hMCiI=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.0.tgz", + "integrity": "sha1-I9tt31WNir3kG4rZ1Z9IrVUyzKs=", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.0.tgz", + "integrity": "sha1-6u5CLISwIy0Drqfbmcl97q9hJaQ=", + "dev": true, + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.0.tgz", + "integrity": "sha1-//S53LGeEmGTlL2hctFPLQTAN5w=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.0.tgz", + "integrity": "sha1-CQNy4xQffMMk7XCz2vU3nfL6OE0=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.0.tgz", + "integrity": "sha1-0hygmbvVOrMHqGIeAZp70PQM3Ps=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.0.tgz", + "integrity": "sha1-w16jGgLYa+SF9qpRAYS2d6kXOP0=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.0.tgz", + "integrity": "sha1-qOztOo57ji1A7E7EVIpFkSYw0wI=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.0.tgz", + "integrity": "sha1-ixmiRMb4ydZo3Kam91Stbq0RKPI=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.0.tgz", + "integrity": "sha1-GjVAZLTEVmOjIzT0b6DPYQC1sfM=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.0.tgz", + "integrity": "sha1-KTuAlQF3yMha7eh87ygCWfuZVAI=", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/preset-env": { + "version": "7.11.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/preset-env/-/preset-env-7.11.5.tgz", + "integrity": "sha1-GMtLk3nj6S/+qSwHRxqZopFOQnI=", + "dev": true, + "requires": { + "@babel/compat-data": "^7.11.0", + "@babel/helper-compilation-targets": "^7.10.4", + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-proposal-async-generator-functions": "^7.10.4", + "@babel/plugin-proposal-class-properties": "^7.10.4", + "@babel/plugin-proposal-dynamic-import": "^7.10.4", + "@babel/plugin-proposal-export-namespace-from": "^7.10.4", + "@babel/plugin-proposal-json-strings": "^7.10.4", + "@babel/plugin-proposal-logical-assignment-operators": "^7.11.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4", + "@babel/plugin-proposal-numeric-separator": "^7.10.4", + "@babel/plugin-proposal-object-rest-spread": "^7.11.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.10.4", + "@babel/plugin-proposal-optional-chaining": "^7.11.0", + "@babel/plugin-proposal-private-methods": "^7.10.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.10.4", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.10.4", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.10.4", + "@babel/plugin-transform-arrow-functions": "^7.10.4", + "@babel/plugin-transform-async-to-generator": "^7.10.4", + "@babel/plugin-transform-block-scoped-functions": "^7.10.4", + "@babel/plugin-transform-block-scoping": "^7.10.4", + "@babel/plugin-transform-classes": "^7.10.4", + "@babel/plugin-transform-computed-properties": "^7.10.4", + "@babel/plugin-transform-destructuring": "^7.10.4", + "@babel/plugin-transform-dotall-regex": "^7.10.4", + "@babel/plugin-transform-duplicate-keys": "^7.10.4", + "@babel/plugin-transform-exponentiation-operator": "^7.10.4", + "@babel/plugin-transform-for-of": "^7.10.4", + "@babel/plugin-transform-function-name": "^7.10.4", + "@babel/plugin-transform-literals": "^7.10.4", + "@babel/plugin-transform-member-expression-literals": "^7.10.4", + "@babel/plugin-transform-modules-amd": "^7.10.4", + "@babel/plugin-transform-modules-commonjs": "^7.10.4", + "@babel/plugin-transform-modules-systemjs": "^7.10.4", + "@babel/plugin-transform-modules-umd": "^7.10.4", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.10.4", + "@babel/plugin-transform-new-target": "^7.10.4", + "@babel/plugin-transform-object-super": "^7.10.4", + "@babel/plugin-transform-parameters": "^7.10.4", + "@babel/plugin-transform-property-literals": "^7.10.4", + "@babel/plugin-transform-regenerator": "^7.10.4", + "@babel/plugin-transform-reserved-words": "^7.10.4", + "@babel/plugin-transform-shorthand-properties": "^7.10.4", + "@babel/plugin-transform-spread": "^7.11.0", + "@babel/plugin-transform-sticky-regex": "^7.10.4", + "@babel/plugin-transform-template-literals": "^7.10.4", + "@babel/plugin-transform-typeof-symbol": "^7.10.4", + "@babel/plugin-transform-unicode-escapes": "^7.10.4", + "@babel/plugin-transform-unicode-regex": "^7.10.4", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.11.5", + "browserslist": "^4.12.0", + "core-js-compat": "^3.6.2", + "invariant": "^2.2.2", + "levenary": "^1.1.1", + "semver": "^5.5.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha1-75Odbn8miCfhhBY43G/5VRXhFdk=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.10.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/preset-react/-/preset-react-7.10.4.tgz", + "integrity": "sha1-kuimbYFvmRHRHUzJNb5nrfyC288=", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.10.4", + "@babel/plugin-transform-react-jsx": "^7.10.4", + "@babel/plugin-transform-react-jsx-development": "^7.10.4", + "@babel/plugin-transform-react-jsx-self": "^7.10.4", + "@babel/plugin-transform-react-jsx-source": "^7.10.4", + "@babel/plugin-transform-react-pure-annotations": "^7.10.4" + } + }, + "@babel/runtime": { + "version": "7.16.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/runtime/-/runtime-7.16.3.tgz", + "integrity": "sha1-uG8NsCoEGHo8F8qnfeaYQBZdQtU=", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/template/-/template-7.16.0.tgz", + "integrity": "sha1-0Wo16/TNdOICCDNW+rId2JNj3dY=", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/traverse": { + "version": "7.16.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/traverse/-/traverse-7.16.3.tgz", + "integrity": "sha1-9j6Kk4zBt4D2bZ7TxU9TLKLRR4c=", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/parser": "^7.16.3", + "@babel/types": "^7.16.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@babel/types/-/types-7.16.0.tgz", + "integrity": "sha1-2zsxOAT5aq3Qt3bEgj4SetZyibo=", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "to-fast-properties": "^2.0.0" + } + }, + "@datadog/browser-core": { + "version": "1.21.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@datadog/browser-core/-/browser-core-1.21.0.tgz", + "integrity": "sha1-vdq9EhpayHfcyaC2haVKuXSfVpo=", + "requires": { + "tslib": "^1.10.0" + } + }, + "@datadog/browser-rum": { + "version": "1.21.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@datadog/browser-rum/-/browser-rum-1.21.0.tgz", + "integrity": "sha1-yOHDM/CeoPvVqxf+HFxsIznqH7w=", + "requires": { + "@datadog/browser-core": "1.21.0", + "tslib": "^1.10.0" + } + }, + "@eslint/eslintrc": { + "version": "0.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@eslint/eslintrc/-/eslintrc-0.3.0.tgz", + "integrity": "sha1-1zbWlj1wA7ZRTmMkvsnGAqw0Axg=", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "12.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globals/-/globals-12.4.0.tgz", + "integrity": "sha1-oYgTV2pBsAokqX5/gVkYwuGZJfg=", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=", + "dev": true + } + } + }, + "@gar/promisify": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@gar/promisify/-/promisify-1.1.2.tgz", + "integrity": "sha1-MKqCXxHUOGcdWFvUTn/VZFNfwhA=", + "dev": true + }, + "@hapi/hoek": { + "version": "9.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@hapi/hoek/-/hoek-9.2.1.tgz", + "integrity": "sha1-lVEUKhmAUDdSU2tQUP2Z9KfxOxc=", + "dev": true + }, + "@hapi/topo": { + "version": "5.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha1-3ESOMyxsbjek3AL9hLqNRLmvsBI=", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=", + "dev": true, + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@npmcli/fs/-/fs-1.0.0.tgz", + "integrity": "sha1-WJYSz606bqD+r8uQHSnGP9UtsJ8=", + "dev": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha1-GoLD43L3yuklPrZtclQ9a4aFxnQ=", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha1-PrXtYmInVteaXw4qIh3+utdcL34=", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "@sideway/address": { + "version": "4.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@sideway/address/-/address-4.1.3.tgz", + "integrity": "sha1-2TzOXUXF2uySrXbbSSzC7jxkqyc=", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@sideway/formula": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha1-/hWK7jLmvV3oUES+YVvAhHigoTw=", + "dev": true + }, + "@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha1-z/j/rcNyrSn9P3gneusp5jLMcN8=", + "dev": true + }, + "@types/axios": { + "version": "0.14.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/axios/-/axios-0.14.0.tgz", + "integrity": "sha1-7CMA++fX3d1+udOr+HmZlkyvzkY=", + "dev": true, + "requires": { + "axios": "*" + } + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha1-vBtb86qS8lvV3TnzXFc2G9zlsus=", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": { + "@types/node": { + "version": "16.11.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/node/-/node-16.11.11.tgz", + "integrity": "sha1-bqc0Lfs3nqEhCDW62oezxRISAjQ=" + } + } + }, + "@types/html-minifier-terser": { + "version": "5.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "integrity": "sha1-aTsxatMj6pfu1rOO0aPMArFnK1c=", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha1-l+3JA36gw4WFMgsolk3eOznkZg0=", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha1-EAHMXmo3BLg8I2An538vWOoBD0A=" + }, + "@types/node": { + "version": "14.10.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/node/-/node-14.10.1.tgz", + "integrity": "sha1-zDI7rY6KUz1IIvRc5OUybzbkIXc=", + "dev": true + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha1-AHiDYGP/rxdBI0m7o2QIfgrALsk=" + }, + "@types/tapable": { + "version": "1.0.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha1-uUpDkchWZse3Mpn9OtedT6pDUxA=" + }, + "@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha1-XoienoHpQkXHW2RQYA4cXqKHiuo=", + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/webpack": { + "version": "4.41.32", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/webpack/-/webpack-4.41.32.tgz", + "integrity": "sha1-p7qwO3KQQHAWKy8WlBVJIgnpQhI=", + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@types/node": { + "version": "16.11.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/node/-/node-16.11.11.tgz", + "integrity": "sha1-bqc0Lfs3nqEhCDW62oezxRISAjQ=" + } + } + }, + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha1-FtdZuglsKJA0smVT0t8b9FJI04s=", + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "@types/node": { + "version": "16.11.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@types/node/-/node-16.11.11.tgz", + "integrity": "sha1-bqc0Lfs3nqEhCDW62oezxRISAjQ=" + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=" + } + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.14.1.tgz", + "integrity": "sha1-It0wHOIoqqs0FrFOrRCx2z59MYA=", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "4.14.1", + "@typescript-eslint/scope-manager": "4.14.1", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "lodash": "^4.17.15", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@typescript-eslint/experimental-utils/-/experimental-utils-4.14.1.tgz", + "integrity": "sha1-pclFyyTau5Z0cYDhz8hIf4Bm9HE=", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.14.1", + "@typescript-eslint/types": "4.14.1", + "@typescript-eslint/typescript-estree": "4.14.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@typescript-eslint/parser/-/parser-4.14.1.tgz", + "integrity": "sha1-O9bCRxDNVX2ERmJShLzJxtUoF8Y=", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.14.1", + "@typescript-eslint/types": "4.14.1", + "@typescript-eslint/typescript-estree": "4.14.1", + "debug": "^4.1.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@typescript-eslint/scope-manager/-/scope-manager-4.14.1.tgz", + "integrity": "sha1-hERTQlTG83DpqpdPA1ztf+cTzgI=", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.14.1", + "@typescript-eslint/visitor-keys": "4.14.1" + } + }, + "@typescript-eslint/types": { + "version": "4.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@typescript-eslint/types/-/types-4.14.1.tgz", + "integrity": "sha1-s9Lrkdr9D9iz/OfGFRKsZr0DZKo=", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "4.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@typescript-eslint/typescript-estree/-/typescript-estree-4.14.1.tgz", + "integrity": "sha1-INO4yOPNyPdkvdXlsGBt2D2mB1s=", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.14.1", + "@typescript-eslint/visitor-keys": "4.14.1", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "array-union": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha1-t5hCCtvrHego2ErNii4j0+/oXo0=", + "dev": true + }, + "globby": { + "version": "11.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globby/-/globby-11.0.4.tgz", + "integrity": "sha1-LLr/d8Lypi5x6bKBOme5ejowAaU=", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@typescript-eslint/visitor-keys/-/visitor-keys-4.14.1.tgz", + "integrity": "sha1-6Twv8n9H7kd6kpuXDKidYKEX2pE=", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.14.1", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@vue/component-compiler-utils": { + "version": "3.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", + "integrity": "sha1-+fX7U0ZLDDeyyNLz+/5E32D2Hck=", + "dev": true, + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss": "^7.0.36", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2 || ^2.0.0", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": { + "lru-cache": { + "version": "4.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80=", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha1-vYUGBLQEJFmlpBzX0zjL7Wle2WQ=", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha1-PD07Jxvd/ITesA9xNEQ4MR1S/7Q=", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha1-ID9nbjM7lsnaLuqzzO8zxFkotqI=", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha1-oUQtJpxf6yP8vJ73WdrDVH8p3gA=", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha1-ZH+Iks0gQ6gqwMjF51w28dkVnyc=", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha1-wFJWtxJEIUZx9LCOwQitY7cO3bg=", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha1-JdiIS3aDmHGgimxvgGw5ee9xLwc=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha1-T+2L6sm4wU+MWLcNEk1UndH+V5A=", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha1-WkE41aYpK6GLBMWuSXF+QWeWU0Y=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha1-Fceg+6roP7JhQ7us9tbfFwKtOeQ=", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha1-8Zygt2ptxVYjoJz/p2noOPoeHJU=", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha1-BNM7Y2945qaBMifoJAL3Y3tiKas=", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha1-P+bXnT8PkiGDqoYALELdJWz+6c8=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha1-ULxw7Gje2OJ2OwGhQYv0NJGnpJw=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha1-IhEYHlsxMmRDzIES658LkChyGmE=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha1-nUjkSCbfSmWYKUqmyHRp1kL/9l4=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha1-MDERXXmsW9JhVWzsw/qQo+9FGRQ=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha1-STXVTIX+9jewDOn1I3dFHQDUeJk=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=", + "dev": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha1-UxvHJlF6OytB+FACHGzBXqq1B80=", + "dev": true, + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=", + "dev": true + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=", + "dev": true + }, + "add-asset-html-webpack-plugin": { + "version": "3.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/add-asset-html-webpack-plugin/-/add-asset-html-webpack-plugin-3.1.3.tgz", + "integrity": "sha1-vsd9yBgmRKWKDuvK59H56xYtr98=", + "dev": true, + "requires": { + "globby": "^9.0.0", + "micromatch": "^3.1.3", + "p-each-series": "^1.0.0" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha1-K1o6s/kYzKSKjHVMCBaOPwPrphs=", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/braces/-/braces-2.3.2.tgz", + "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dir-glob/-/dir-glob-2.2.2.tgz", + "integrity": "sha1-+gnwaUFTyJGLGLoN6vrpR2n8UMQ=", + "dev": true, + "requires": { + "path-type": "^3.0.0" + } + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha1-aVOFfDr6R1//ku5gFdUtpwpM050=", + "dev": true, + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "globby": { + "version": "9.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globby/-/globby-9.2.0.tgz", + "integrity": "sha1-/QKacGxwPSm90XD0tts6P3p8tj0=", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha1-zvMdyOCho7sNEFwM2Xzzv0f0428=", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/slash/-/slash-2.0.0.tgz", + "integrity": "sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q=", + "dev": true + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha1-81mGrOuRr63sQQL72FAUlQzvpk0=", + "dev": true + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha1-MfKdpatuANHC0yms97WSlhTVAU0=", + "dev": true + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=", + "dev": true + } + } + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "dev": true + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha1-wFV8CWrzLxBhmPT04qODU343hxY=", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha1-aALmJk79GMeQobDVF/DyYnvyyUo=", + "dev": true + }, + "are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha1-sVR0qTKtq0/4pQ2a36fk6SbyEUY=", + "dev": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha1-DTp7tuZOAqkMAwOzHykoaOoJoI0=", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha1-EamAuE67kXgc41sP3C7ilON4Pwc=", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/assert/-/assert-1.5.0.tgz", + "integrity": "sha1-VcEJqvbgrv2z3EtxJAxwv1dLGOs=", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=", + "dev": true + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8=", + "dev": true + }, + "async-foreach": { + "version": "0.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha1-3TeelPDbgxCwgpH51kwyCXZmF/0=", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/atob/-/atob-2.1.2.tgz", + "integrity": "sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha1-1h9G2DslGSUOJ4Ta9bCUeai0HFk=", + "dev": true + }, + "axios": { + "version": "0.20.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/axios/-/axios-0.20.0.tgz", + "integrity": "sha1-BXujDwSIRpSZOozQf6OUz/EcUL0=", + "requires": { + "follow-redirects": "^1.10.0" + } + }, + "babel-loader": { + "version": "8.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha1-xhHVESvVIJq+i5+oTD5NolJ18cM=", + "dev": true, + "requires": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/base/-/base-0.11.2.tgz", + "integrity": "sha1-e95c7RRbbVUakNuH+DxVi060io8=", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bfj": { + "version": "6.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bfj/-/bfj-6.1.2.tgz", + "integrity": "sha1-MlyGGoIryzWKQceKM7jm4ght3n8=", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha1-nyKcFb4nJFT/qXOs4NvueaGww28=", + "dev": true + }, + "bn.js": { + "version": "5.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha1-NYhgZ0OWxpl3canQUfzBtX1K4AI=", + "dev": true + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha1-lrJwnlfJxOCab9Zqj9l5hE9p8Io=", + "dev": true, + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/qs/-/qs-6.7.0.tgz", + "integrity": "sha1-QdwaAV49WB8WIXdr4xr7KHapsbw=", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk=", + "dev": true + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/braces/-/braces-3.0.2.tgz", + "integrity": "sha1-NFThpGLujVmeI23zNs2epPiv4Qc=", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha1-OvTx9Zg5QDVy8cZiBDdfen9wPpw=", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha1-sv0Gtbda4pf3zi3GUfkY9b4VjI0=", + "dev": true, + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha1-6vSt1G3VS+O7OzbAzxWrvrp5VsM=", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha1-M3u9o63AcGvT4CRCaihtS0sskZg=", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=", + "dev": true + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.18.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/browserslist/-/browserslist-4.18.1.tgz", + "integrity": "sha1-YNOSDyW2hg65F8bHsYVXb02LAX8=", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001280", + "electron-to-chromium": "^1.3.896", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha1-Iw6tNEACmIZEhBqwJEr4xEu+Pvg=", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha1-Uvq8xqYG0aADAoAmSO9o9jnaJow=", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=", + "dev": true + }, + "cacache": { + "version": "15.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha1-3IU4D7L1Vv492kxxm/oOyHWn8es=", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha1-PrXtYmInVteaXw4qIh3+utdcL34=", + "dev": true + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=", + "dev": true + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=", + "dev": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + } + } + }, + "caniuse-lite": { + "version": "1.0.30001283", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/caniuse-lite/-/caniuse-lite-1.0.30001283.tgz", + "integrity": "sha1-hXNoW9rk1zPvGPeNRLoMpf6eiWs=", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "check-more-types": { + "version": "2.24.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=", + "dev": true + }, + "check-types": { + "version": "8.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/check-types/-/check-types-8.0.3.tgz", + "integrity": "sha1-M1bMoZyIlUTy16le1JzlCKDs9VI=", + "dev": true + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha1-Fb++U9LqtM9w8YqM1o6+Wzyx3s4=", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=", + "dev": true + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y=", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha1-+TNprouafOAv1B+q0MqDAzGQxGM=", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clean-css": { + "version": "4.2.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha1-czv0brpOYHxokepXwkqYk1aDEXg=", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=", + "dev": true + }, + "clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha1-qZ2Ow0wcYopFQVZ6p7RXRGRgxis=", + "requires": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-truncate": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha1-w54ovwXtzeW+O5iZKiLe7Vork8c=", + "dev": true, + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=", + "dev": true + }, + "slice-ansi": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha1-Md3BCTCht+C2ewjJbC9Jt3p4l4c=", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U=", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "colorette": { + "version": "2.0.16", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha1-cTua+E/bAAE58EVGvUqT9ipQhdo=", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/commander/-/commander-4.1.1.tgz", + "integrity": "sha1-n9YCvZNilOnp70aj9NaWQESxgGg=", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "compare-versions": { + "version": "3.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/compare-versions/-/compare-versions-3.6.0.tgz", + "integrity": "sha1-GlaJkTaF5ah2N7jT/8p1UU7EHWI=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A=", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o=", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/compression/-/compression-1.7.4.tgz", + "integrity": "sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "concurrently": { + "version": "5.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/concurrently/-/concurrently-5.3.0.tgz", + "integrity": "sha1-dQDeZBDQQ8kSston3jICy0ibHns=", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "date-fns": "^2.0.1", + "lodash": "^4.17.15", + "read-pkg": "^4.0.1", + "rxjs": "^6.5.2", + "spawn-command": "^0.0.2-1", + "supports-color": "^6.1.0", + "tree-kill": "^1.2.2", + "yargs": "^13.3.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha1-B2Srxpxj1ayELdSGfo0CXogN+PM=", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=", + "dev": true + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha1-ZwY871fOts9Jk6KrOlWECujEkzY=", + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "consolidate": { + "version": "0.15.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/consolidate/-/consolidate-0.15.1.tgz", + "integrity": "sha1-IasEMjXHGgfUXZqtmFk7DbpWurc=", + "dev": true, + "requires": { + "bluebird": "^3.1.1" + } + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha1-4TDK9+cnkIfFYWwgB9BIVpiYT70=", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js=", + "dev": true + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k=", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha1-vrQ35wIrO21JAZ0IhmUwPr6cFLo=", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha1-kilzmMrjSTf8r9bsgTnBgFHwteA=", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "copy-webpack-plugin": { + "version": "6.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/copy-webpack-plugin/-/copy-webpack-plugin-6.1.1.tgz", + "integrity": "sha1-c3o7ohwWzG3cqXL1z43iVWjKBhY=", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^2.7.1", + "serialize-javascript": "^5.0.1", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "array-union": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha1-t5hCCtvrHego2ErNii4j0+/oXo0=", + "dev": true + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha1-swxbbv8HMHMa6pu9nb7L2AJW1ks=", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "globby": { + "version": "11.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globby/-/globby-11.0.4.tgz", + "integrity": "sha1-LLr/d8Lypi5x6bKBOme5ejowAaU=", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8=", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha1-o0KLtwiLOmApL2aRkni3wpetTwc=", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + } + } + }, + "core-js-compat": { + "version": "3.19.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/core-js-compat/-/core-js-compat-3.19.2.tgz", + "integrity": "sha1-GAZqNASjAkM8sKqL6C3T11x25cQ=", + "dev": true, + "requires": { + "browserslist": "^4.18.1", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.0.0.tgz", + "integrity": "sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=", + "dev": true + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "dependencies": { + "parse-json": { + "version": "5.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + } + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha1-1uf0v/pmc2CFoHYv06YyaE2rzE4=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha1-9zqFudXUHQRVUcF34ogtSshXKKY=", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "css-loader": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha1-yIivZLKlsuhUYscsD0qFx+Lggh4=", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "dependencies": { + "camelcase": { + "version": "6.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/camelcase/-/camelcase-6.2.1.tgz", + "integrity": "sha1-JQ/TUM/VVdDSFgsdUVEOr4Mm6G4=", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "css-select": { + "version": "4.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha1-pwRA9wMX8maRGK10/xBeZYSccGc=", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domhandler/-/domhandler-4.3.0.tgz", + "integrity": "sha1-FsZYxibPlmln4wb5ZrQx931KViY=", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + } + } + }, + "css-what": { + "version": "5.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha1-P3tweq32M7r2LCzrhXm1RbtA9/4=", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=", + "dev": true + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", + "dev": true + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "date-fns": { + "version": "2.27.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/date-fns/-/date-fns-2.27.0.tgz", + "integrity": "sha1-4f88Pdu6uKLqrbthBr4pKaWi2Ss=", + "dev": true + }, + "de-indent": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", + "dev": true + }, + "debug": { + "version": "4.3.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-4.3.3.tgz", + "integrity": "sha1-BCZuC3CpjURi5uKI44JZITMytmQ=", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", + "dev": true + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o=", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=", + "dev": true + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha1-FnEEx1AMIRX23WmwpTa7jtcgVSs=", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/execa/-/execa-1.0.0.tgz", + "integrity": "sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg=", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha1-wbJVV189wh1Zv8ec09K0axw6VLU=", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which/-/which-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha1-1Flono1lS6d+AqgX+HENcCyxbp0=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/del/-/del-4.1.1.tgz", + "integrity": "sha1-no8RciLqRKMf86FWwEm5kFKp8LQ=", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, + "depd": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha1-U4IULhvcU/hdhtU+X0qn3rkeCEM=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha1-yccHdaScPQO8LAbZpzvlUPl4+LE=", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=", + "dev": true + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha1-40VQZYJKJQe6iGxVqJljuxB97G8=", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha1-ZyGp2u4uKTaClVtq/kFncWJ7t2g=", + "dev": true, + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domhandler/-/domhandler-4.3.0.tgz", + "integrity": "sha1-FsZYxibPlmln4wb5ZrQx931KViY=", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto=", + "dev": true + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=", + "dev": true + }, + "domhandler": { + "version": "3.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domhandler/-/domhandler-3.3.0.tgz", + "integrity": "sha1-bbfqRuRhfrFc+HXfaLK4UkzgA3o=", + "dev": true, + "requires": { + "domelementtype": "^2.0.1" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": { + "domhandler": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domhandler/-/domhandler-4.3.0.tgz", + "integrity": "sha1-FsZYxibPlmln4wb5ZrQx931KViY=", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + } + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=", + "dev": true + } + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha1-Or5DrvODX4rgd9E23c4PJ2sEAOY=", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha1-Kk31MX9sz9kfhtb9JdjYoQO4gwk=", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha1-SGYSh1c9zFPjZsehrlLDoSDuybo=", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/electron-to-chromium/-/electron-to-chromium-1.4.9.tgz", + "integrity": "sha1-SFT6VflPGPXQrUrEkDT/ZEP/9bk=", + "dev": true + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha1-2jfOvTHnmhNn6UG1ku0fvr1Yq7s=", + "dev": true, + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=", + "dev": true + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha1-VXBmIEatKeLpFucariYKvf9Pang=", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha1-Lzz9hNvjtIfxjy2y7x4GSlccpew=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00=", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/entities/-/entities-2.2.0.tgz", + "integrity": "sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=", + "dev": true + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha1-QgOZ1BbOH76bwKB8Yvpo1n/Q+PI=", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/errno/-/errno-0.1.8.tgz", + "integrity": "sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha1-1IhXlodpFpWd547aoN9FZicRXsM=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "7.18.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint/-/eslint-7.18.0.tgz", + "integrity": "sha1-f9zS83FaQf5ilaFiNL1prtLHXmc=", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@eslint/eslintrc": "^0.3.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "globals": { + "version": "12.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globals/-/globals-12.4.0.tgz", + "integrity": "sha1-oYgTV2pBsAokqX5/gVkYwuGZJfg=", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=", + "dev": true + }, + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "eslint-config-prettier": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz", + "integrity": "sha1-9KS9KDLoEOjMfBQR7IWz6FwMU/k=", + "dev": true + }, + "eslint-plugin-prettier": { + "version": "3.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz", + "integrity": "sha1-cHnPoklweJBQEeb4Lo3YRT0Tcbc=", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-plugin-vue": { + "version": "7.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-plugin-vue/-/eslint-plugin-vue-7.5.0.tgz", + "integrity": "sha1-zG2YPrIngfokQKdXPPOa9Dm7VyU=", + "dev": true, + "requires": { + "eslint-utils": "^2.1.0", + "natural-compare": "^1.4.0", + "semver": "^7.3.2", + "vue-eslint-parser": "^7.4.1" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/espree/-/espree-7.3.1.tgz", + "integrity": "sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha1-LupSkHAvJquP5TcDcP+GyWXSESM=", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha1-eteWTWeauyi+5yzsY3WLHF0smSE=", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha1-LupSkHAvJquP5TcDcP+GyWXSESM=", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "event-stream": { + "version": "3.3.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", + "dev": true, + "requires": { + "duplexer": "~0.1.1", + "from": "~0", + "map-stream": "~0.1.0", + "pause-stream": "0.0.11", + "split": "0.3", + "stream-combiner": "~0.0.4", + "through": "~2.3.1" + } + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha1-Lem2j2Uo1WRO9cWVJqG0oHMGFp8=", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/events/-/events-3.3.0.tgz", + "integrity": "sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=", + "dev": true + }, + "eventsource": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eventsource/-/eventsource-1.1.2.tgz", + "integrity": "sha1-vHWuHGAgnnyxVBIxmARgND6up8I=" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "execa": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/execa/-/execa-4.1.0.tgz", + "integrity": "sha1-TlSRrRVy8vF6d9OIxshXE1sihHo=", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/express/-/express-4.17.1.tgz", + "integrity": "sha1-RJH8OGBc9R+GKdOcK10Cb5ikwTQ=", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/qs/-/qs-6.7.0.tgz", + "integrity": "sha1-QdwaAV49WB8WIXdr4xr7KHapsbw=", + "dev": true + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend/-/extend-3.0.2.tgz", + "integrity": "sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=", + "dev": true + }, + "fast-diff": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha1-c+4RmC2Gyq95WYKNUZz+kn+sXwM=", + "dev": true + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha1-tO7oFIq7Adzx0aw0Nn1Z4S+mHW4=", + "dev": true + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha1-uu98+OGEDfMl5DkLRISHlIDuvk0=", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha1-vHTEtraZXB2I92qLd76nIZ4MgoE=", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=", + "dev": true, + "optional": true + }, + "filesize": { + "version": "3.6.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/filesize/-/filesize-3.6.1.tgz", + "integrity": "sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc=", + "dev": true + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha1-GRmmp8df44ssfHflGYU12prN2kA=", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha1-t+fQAP/RGTjQ/bBTUG9uur6fWH0=", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc=", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "find-versions": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/find-versions/-/find-versions-4.0.0.tgz", + "integrity": "sha1-PFflc7+XdpuMuN8Wk0tieRXaSWU=", + "dev": true, + "requires": { + "semver-regex": "^3.1.2" + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha1-F7EI+e5RLft6XH88iyfqnhqcCNE=", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/braces/-/braces-2.3.2.tgz", + "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "rimraf": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "flatted": { + "version": "3.2.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/flatted/-/flatted-3.2.4.tgz", + "integrity": "sha1-KNmWnqkGYbUTQlnzEqtqp5KaxeI=", + "dev": true + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha1-jdfYc6G6vCB9lOrQwuDkQnbr8ug=", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "follow-redirects": { + "version": "1.14.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/follow-redirects/-/follow-redirects-1.14.8.tgz", + "integrity": "sha1-AWmW+5oRoQBWY5ixxoOTN9e/qPw=" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha1-3M5SwF9kTymManq5Nr1yTO/786Y=", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "from2": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs=", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "gaze": { + "version": "1.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha1-xEFzPhO5J6yMD/C0w7Az8ogSkko=", + "dev": true, + "requires": { + "globule": "^1.0.0" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha1-tf3nfyLL4185C04ImSLFC85u9mQ=", + "dev": true + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha1-SWaheV7lrOZecGxLe+txJX1uItM=", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha1-f9uByQAQH71WTdXxowr1qtweWNY=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/glob/-/glob-7.2.0.tgz", + "integrity": "sha1-0VU1r3cy4C6Uj0xBYovZECk/YCM=", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "dev": true + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + }, + "dependencies": { + "global-prefix": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which/-/which-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which/-/which-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globals/-/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=", + "dev": true + }, + "globby": { + "version": "6.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "globule": { + "version": "1.3.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/globule/-/globule-1.3.3.tgz", + "integrity": "sha1-gRkZ7qwatzROkF8uO+gKE0R5c8I=", + "dev": true, + "requires": { + "glob": "~7.1.1", + "lodash": "~4.17.10", + "minimatch": "~3.0.2" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/glob/-/glob-7.1.7.tgz", + "integrity": "sha1-Oxk+kjPwHULQs/eClLvutBj5SpA=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=", + "dev": true + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha1-y5vuaS+HwGErIyhAqHOQTkwTUnQ=", + "dev": true, + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=", + "dev": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha1-HwgDufjLIMD6E4It8ezds2veHv0=", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has/-/has-1.0.3.tgz", + "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + } + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha1-VcOB2eBuHSmXqIO0o/3f5/DTrzM=", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha1-M3u9o63AcGvT4CRCaihtS0sskZg=", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=", + "dev": true + } + } + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "dev": true + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha1-C6vKU46NTuSg+JiNaIZlN6ADz0I=", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/he/-/he-1.2.0.tgz", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=", + "dev": true + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha1-dDKYzvTlrz4ZQWH7rcwhUdOgWOg=", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha1-YJIH1mEQADOpqUAq096mdzgcGx0=", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k=", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha1-z70bAdKvr5rcobEK59/6uYxx0tw=", + "dev": true + }, + "html-loader": { + "version": "1.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/html-loader/-/html-loader-1.3.1.tgz", + "integrity": "sha1-Fq4ULiPapPDWeirC/Mqgh75dZOI=", + "dev": true, + "requires": { + "html-minifier-terser": "^5.1.1", + "htmlparser2": "^4.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.1" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha1-ki6W8fO7YIMsJjS3mIQJY4mx8FQ=", + "dev": true, + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + } + }, + "html-webpack-plugin": { + "version": "4.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha1-YlCXZQiGuX6l2uMxwyDjI49sEhw=", + "dev": true, + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + } + }, + "htmlparser2": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/htmlparser2/-/htmlparser2-4.1.0.tgz", + "integrity": "sha1-mk7xYfLkYl6/ffvmwKL1LRilnng=", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^3.0.0", + "domutils": "^2.0.0", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha1-T1ApzxMjnzEDblsuVSkrz7zIXI8=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk=", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha1-GDx9xKoUeRUDBkmMIQza+WCApDo=", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/braces/-/braces-2.3.2.tgz", + "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha1-xbHNFPUK6uCatsWf5jujOV/k36M=", + "dev": true + }, + "husky": { + "version": "4.3.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/husky/-/husky-4.3.8.tgz", + "integrity": "sha1-MRRAYL6WP9aFDlzI8Bmh3+GUKW0=", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "compare-versions": "^3.6.0", + "cosmiconfig": "^7.0.0", + "find-versions": "^4.0.0", + "opencollective-postinstall": "^2.0.2", + "pkg-dir": "^5.0.0", + "please-upgrade-node": "^3.2.0", + "slash": "^3.0.0", + "which-pm-runs": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha1-VTIeswn+u8WcSAHZMackUqaB0oY=", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=", + "dev": true + }, + "pkg-dir": { + "version": "5.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha1-oC1q6+a6EzqSj3Suwguv3+a452A=", + "dev": true, + "requires": { + "find-up": "^5.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha1-IRcLU3ie4nRHwvR91oMIFAP5pGc=", + "dev": true, + "requires": { + "postcss": "^7.0.14" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=", + "dev": true + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "ignore": { + "version": "5.1.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha1-nsGly+jhRG7GDUQgBg1Dqm5zgvs=", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha1-NxYsJfy566oublPVtNiM4X2eDCs=", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha1-VQcL44pZk88Y72236WH1vuXFoJ0=", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha1-xM78qo5RBRwqQLos6KPScpWvlGc=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ini/-/ini-1.3.8.tgz", + "integrity": "sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=", + "dev": true + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha1-hFRSuq2dLKO2nGNaE3rLmg2tCQc=", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha1-Zlq4vE2iendKQFhOgS4+D6RbGh4=", + "dev": true + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } + }, + "ip": { + "version": "1.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=", + "dev": true + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha1-lsaiK2ojkpsR6gr7GDbDatSl1pg=", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha1-FbP4j9oB8ql/7ITKdhpWDxI++ps=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4=", + "dev": true + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=", + "dev": true + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha1-AyEzbD0JJeSX/Zf12VyxFKXM1Ug=", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0=", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha1-kEE1x3+0LAZB1qobzbxNqo2ggvM=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha1-PedGwY3aIxkkGlNnWQjY92bxHCQ=", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=", + "dev": true + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha1-anqvg4x/BoalC0VT9+VKlklOifA=", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s=" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha1-v+Lcomxp85cmWkAJljYCk1oFOss=", + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha1-fJgQWH1lmkDSe8201WFuqwWUlLI=", + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "dev": true + }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha1-l7DIX72stZycRG/mU7gs8rW3z+Y=", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha1-+sHj1TuXrVqdCunO8jifWBClwHc=", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha1-ptrJO2NbBjymhyI23oiRClevE5w=", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha1-PybHaoCVk7Ur+i7LVxDtJ3m1Iqc=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "is-weakref": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha1-hC26TsF/qayYUN8tbvvBc3J08qI=", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "joi": { + "version": "17.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/joi/-/joi-17.5.0.tgz", + "integrity": "sha1-fmbQAEtQRdlxz0FqVfth0zrG4BE=", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha1-9OaGxd4eofhn28rT1G2WlCjfmMQ=", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=", + "dev": true + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha1-995M9u+rg4666zI2R0y7paGTCrU=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json3": { + "version": "3.3.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json3/-/json3-3.3.3.tgz", + "integrity": "sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E=", + "dev": true + }, + "json5": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json5/-/json5-2.2.0.tgz", + "integrity": "sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha1-cSxlUzoVyHi6WentXw4m1bd8X+s=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/killable/-/killable-1.0.1.tgz", + "integrity": "sha1-TIzkQRh6Bhx0dPuHygjipjgZSJI=", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", + "dev": true + }, + "klona": { + "version": "2.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/klona/-/klona-2.0.5.tgz", + "integrity": "sha1-0WZXTZAHY5XZljqnqSj6u412r7w=", + "dev": true + }, + "lazy-ass": { + "version": "1.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=", + "dev": true + }, + "leven": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/leven/-/leven-3.1.0.tgz", + "integrity": "sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=", + "dev": true + }, + "levenary": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/levenary/-/levenary-1.1.1.tgz", + "integrity": "sha1-hCqe6Y0gdap/ru2+MmeekgX0b3c=", + "dev": true, + "requires": { + "leven": "^3.1.0" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/levn/-/levn-0.4.1.tgz", + "integrity": "sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha1-7KKE910pZQeTCdwK2SVauy68FjI=", + "dev": true + }, + "lint-staged": { + "version": "10.5.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lint-staged/-/lint-staged-10.5.3.tgz", + "integrity": "sha1-xoKDiz6t1Mhk0QItoF2qCRL7HaU=", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "cli-truncate": "^2.1.0", + "commander": "^6.2.0", + "cosmiconfig": "^7.0.0", + "debug": "^4.2.0", + "dedent": "^0.7.0", + "enquirer": "^2.3.6", + "execa": "^4.1.0", + "listr2": "^3.2.2", + "log-symbols": "^4.0.0", + "micromatch": "^4.0.2", + "normalize-path": "^3.0.0", + "please-upgrade-node": "^3.2.0", + "string-argv": "0.3.1", + "stringify-object": "^3.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "commander": { + "version": "6.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/commander/-/commander-6.2.1.tgz", + "integrity": "sha1-B5LraC37wyWZm7K4T93duhEKxzw=", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "listr2": { + "version": "3.13.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/listr2/-/listr2-3.13.5.tgz", + "integrity": "sha1-EFqBPy6yMpxKric3OigdYQ7kmF8=", + "dev": true, + "requires": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.4.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=", + "dev": true + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "rxjs": { + "version": "7.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rxjs/-/rxjs-7.4.0.tgz", + "integrity": "sha1-oSpE1+6/AW9f8kQbh/KMmlHOvGg=", + "dev": true, + "requires": { + "tslib": "~2.1.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "tslib": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha1-2mCGDxwuyqVwOrfTm8Bba/mIuXo=", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "parse-json": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha1-7UcGa/5TTX6ExMe5mYwqdWB9k1c=", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha1-xXm140yzSxp07cbB+za/o3HVphM=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json5/-/json5-1.0.1.tgz", + "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=", + "dev": true + }, + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha1-P727lbRoOsn8eFER55LlWNSr1QM=", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "log-update": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE=", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "loglevel": { + "version": "1.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha1-5+xzpX4ee0GctsasBr8FC2c1YRQ=", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha1-b6I3xj29xKgsoP2ILkci3F5jTig=", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=", + "dev": true + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "map-stream": { + "version": "0.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha1-tdB7jjIW4+J81yjXL3DR5qNCAF8=", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "memory-fs": { + "version": "0.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha1-MkwBKIuIZSlm0WHbd4OHIIRajjw=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "meow": { + "version": "3.7.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha1-L93n5gIJOfcJBqaPLXrmheTIxkY=", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=", + "dev": true + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mime/-/mime-1.6.0.tgz", + "integrity": "sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=", + "dev": true + }, + "mime-db": { + "version": "1.51.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha1-2f9iRRhZsYNC2WCFDcPPt35j+ww=", + "dev": true + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha1-WnEvnsFQNRGpRYA2QPr+CdN5PCQ=", + "dev": true, + "requires": { + "mime-db": "1.51.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=", + "dev": true + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc=", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "minipass": { + "version": "3.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minipass/-/minipass-3.1.5.tgz", + "integrity": "sha1-cfYlGwozpJwBs8+X/3ftoDDf9zI=", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha1-IrgTv3Rdxu26JXa5QAIq1u3Ixhc=", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha1-gucTXX6JpQ/+ZGEKeHlTxMTLs3M=", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha1-aEcveXEcCEZXwGfFxq2Tzd6oIUw=", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha1-6Q00Zrogm5MkUVCKEc49NjIUWTE=", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha1-6goykfl+C16HdrNj1fChLZTGcCI=", + "dev": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha1-ESC0PcNZp4Xc5ltVuC4lfM9HlWY=", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8=", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.1.2.tgz", + "integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=", + "dev": true + }, + "msal": { + "version": "1.4.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/msal/-/msal-1.4.4.tgz", + "integrity": "sha1-P5taREKqcRwSq46IuO2JspP5lxE=", + "requires": { + "tslib": "^1.9.3" + } + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha1-oOx72QVcQoL3kMPIL04o2zsxsik=", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "nan": { + "version": "2.15.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/nan/-/nan-2.15.0.tgz", + "integrity": "sha1-PzSkc/8Y4VwbVia2KQO1rW5mX+4=", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs=", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha1-tKr7k+OustgXTKU88WOrfXMIMF8=", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=", + "dev": true + } + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha1-Mt6ir7Ppkm8C7lzoeUkCaRpna/M=", + "dev": true + }, + "node-gyp": { + "version": "7.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha1-IagQrrsYcSAlHDvOyXmvFYexiK4=", + "dev": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "dependencies": { + "rimraf": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha1-tk9RPRgzhiX5A0bSew0jXmMfZCU=", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } + } + }, + "node-releases": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha1-PR05XyBPHy8ppUNYuftnh2WtL8U=", + "dev": true + }, + "node-sass": { + "version": "5.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/node-sass/-/node-sass-5.0.0.tgz", + "integrity": "sha1-To85++87rI0txy6+O1OXEYg6eNI=", + "dev": true, + "requires": { + "async-foreach": "^0.1.3", + "chalk": "^1.1.1", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "meow": "^3.7.0", + "mkdirp": "^0.5.1", + "nan": "^2.13.2", + "node-gyp": "^7.1.0", + "npmlog": "^4.0.0", + "request": "^2.88.0", + "sass-graph": "2.2.5", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha1-UwlCu1ilEvzK/lP+IQ8TolNV3Ig=", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha1-t+zR5e1T2o43pV4cImnguX7XSOo=", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha1-CKfyqL9zRgR3mp76StXMcXq7lUs=", + "dev": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "nth-check": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha1-Lv4WL1w9oGoolZ+9PbddvuqfD8I=", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha1-R6ewFrqmi1+g7PPe4IqFxnmsZFU=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha1-nc6xRs7dQUig2eUauI00z1CZIrE=", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha1-ud7qpfx/GEag+uzc7sE45XePU6w=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha1-HEfyct8nfzsdrwYWd9nILiMixg4=", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha1-siPPOOF/77l6Y8EMkd9yzLOG354=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opencollective-postinstall": { + "version": "2.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", + "integrity": "sha1-eg//l49tv6TQBiOPusmO1BmMMlk=", + "dev": true + }, + "opener": { + "version": "1.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/opener/-/opener-1.5.2.tgz", + "integrity": "sha1-XTfh81B3udysQwE3InGv3rKhNZg=", + "dev": true + }, + "opn": { + "version": "5.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/opn/-/opn-5.5.0.tgz", + "integrity": "sha1-/HFk+rVtI1kExRw7J9pnWMo7m/w=", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk=", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "p-each-series": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "dev": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-finally": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-finally/-/p-finally-2.0.1.tgz", + "integrity": "sha1-vW/KqcVZoJa2gIBvTWV7Pw8kBWE=", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha1-MQko/u+cnsxltosXaTAYpmXOoXU=" + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "dev": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha1-MWtMiJPiyNwc+okfQGxLQivr8yg=", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=", + "dev": true + }, + "pako": { + "version": "1.0.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pako/-/pako-1.0.11.tgz", + "integrity": "sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8=", + "dev": true + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha1-kEnKN9bLIYLDsdLHIL6U0UpYFPw=", + "dev": true, + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=", + "dev": true + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha1-OFCAo+wTy2KmLTlAnLPoiETNrtQ=", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=", + "dev": true + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=", + "dev": true + } + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha1-5sTd1+06onxoogzE5Q4aTug7vEo=", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=", + "dev": true + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "dev": true, + "requires": { + "through": "~2.3" + } + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha1-3YIqoIh1gOUvGgOdw+2hCO+uMHU=", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=", + "dev": true + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pify/-/pify-4.0.1.tgz", + "integrity": "sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha1-J0kCDyOe2ZCIGx9xIQ1R62UjvqM=", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha1-rt3T+ZTJM+StmLmdmlVu+g4v6UI=", + "dev": true, + "requires": { + "semver-compare": "^1.0.0" + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha1-Z8RiKFK9U3TdHdkA93n1NGL6x3g=", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha1-liQ3XZZWMOLh8sAqk1yCpZy0gwk=", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha1-VwZw95NkaFHRuhNZlpYqutWHhZ8=", + "dev": true + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha1-gYcZoa4doyX5gyRGsBE27rSTzX4=", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha1-uxTgzHgnnVBNvcv9fgyiiZP/u7A=", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha1-OFyuATzHdD9afXYC0Qc6iequYu4=", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha1-W1AA1uuuKbQlUwG0o6VFdEI+fxA=", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha1-cjwJkgg2um0+WvAZ+SvAlxwC5RQ=", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=", + "dev": true + }, + "prettier": { + "version": "2.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/prettier/-/prettier-2.2.1.tgz", + "integrity": "sha1-eVoaeN1S8HPaDNQrIfnJE4GSP/U=", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha1-0j1B/hN1ZG3i0BBNNFSjAIgCz3s=", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha1-von4LYGxyG7I/fvDhQRYgnJ/k7Y=", + "dev": true, + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "process": { + "version": "0.11.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha1-eCDZsWEgzFXKmud5JoCufbptf+I=", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/progress/-/progress-2.0.3.tgz", + "integrity": "sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "ps-tree": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ps-tree/-/ps-tree-1.2.0.tgz", + "integrity": "sha1-XnQluJUIc2zdTyIk0Cj3uz9yLr0=", + "dev": true, + "requires": { + "event-stream": "=3.3.4" + } + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/psl/-/psl-1.8.0.tgz", + "integrity": "sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha1-T8ydd6B+SLp1J+fL4N4z0HATMeA=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=", + "dev": true + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pump/-/pump-3.0.0.tgz", + "integrity": "sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4=", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pump/-/pump-2.0.1.tgz", + "integrity": "sha1-Ejma3W5M91Jtlzy8i1zi4pCLOQk=", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/qs/-/qs-6.5.2.tgz", + "integrity": "sha1-yzroBuh0BERYTvFUzo7pjUA/PjY=", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha1-M0WUG0FTy50ILY7uTNogFqmu9/Y=", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha1-SSkii7xyTfrEPg77BYyve2z7YkM=", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=", + "dev": true + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha1-oc5vucm8NWylLoklarWQWeE9AzI=", + "dev": true, + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "read-pkg": { + "version": "4.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/read-pkg/-/read-pkg-4.0.1.tgz", + "integrity": "sha1-ljYlN48+HE1IyFhytabsfV0JMjc=", + "dev": true, + "requires": { + "normalize-package-data": "^2.3.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + }, + "dependencies": { + "indent-string": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + } + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha1-VNCccRXh9T3CMUqXSzLBw0Tv4yY=", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=", + "dev": true + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ=", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=", + "dev": true + }, + "regexpu-core": { + "version": "4.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regexpu-core/-/regexpu-core-4.8.0.tgz", + "integrity": "sha1-5WBbo2G2excYR4UBMnUC9EeamPA=", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM=", + "dev": true + }, + "regjsparser": { + "version": "0.7.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/regjsparser/-/regjsparser-0.7.0.tgz", + "integrity": "sha1-prZntUyIXhi1JVTLSWDvcRh+mWg=", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "renderkid": { + "version": "2.0.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha1-Rk8namvc7mBvShWZP5sp/HTKhgk=", + "dev": true, + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "domhandler": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/domhandler/-/domhandler-4.3.0.tgz", + "integrity": "sha1-FsZYxibPlmln4wb5ZrQx931KViY=", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha1-vmgVIIR6tYx1aKx1+/rSjtQtOek=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "^1.0.0" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/request/-/request-2.88.2.tgz", + "integrity": "sha1-1zyRhzHLWofaBH4gcjQUb2ZNErM=", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha1-0LMp7MfMD2Fkn2IhW+aa9UqomJs=", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha1-bXcPDrUjrHgWTXK15xqIdyZcw+o=", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ret/-/ret-0.1.15.tgz", + "integrity": "sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w=", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=", + "dev": true + }, + "rfdc": { + "version": "1.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha1-0LfEQasnINBdxM8m4ByJYx2doIs=", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w=", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha1-kKwBisq/SRv2UEQjXVhjxNq4BMk=", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=", + "dev": true + }, + "sass": { + "version": "1.29.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sass/-/sass-1.29.0.tgz", + "integrity": "sha1-7E4YQsFG2OqSWMKMFBuMK3xqt/E=", + "dev": true, + "requires": { + "chokidar": ">=2.0.0 <4.0.0" + } + }, + "sass-graph": { + "version": "2.2.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sass-graph/-/sass-graph-2.2.5.tgz", + "integrity": "sha1-qYHIdEa4MZ2W3OBnHkh4eb0kwug=", + "dev": true, + "requires": { + "glob": "^7.0.0", + "lodash": "^4.0.0", + "scss-tokenizer": "^0.2.3", + "yargs": "^13.3.2" + } + }, + "sass-loader": { + "version": "10.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sass-loader/-/sass-loader-10.1.0.tgz", + "integrity": "sha1-Fyf8wMMqs+sZfNph14rfTpF0pLM=", + "dev": true, + "requires": { + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0", + "semver": "^7.3.2" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha1-vHTEtraZXB2I92qLd76nIZ4MgoE=", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-7.3.5.tgz", + "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha1-HKTzLRskxZDCA7jnpQvw6kzTlNc=", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "scss-tokenizer": { + "version": "0.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", + "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", + "dev": true, + "requires": { + "js-base64": "^2.1.8", + "source-map": "^0.4.2" + }, + "dependencies": { + "source-map": { + "version": "0.4.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, + "requires": { + "amdefine": ">=0.0.4" + } + } + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha1-JJKc2Qb+D0S20B+yOZmnOVN6y+k=", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-5.7.1.tgz", + "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", + "dev": true + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true + }, + "semver-regex": { + "version": "3.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver-regex/-/semver-regex-3.1.4.tgz", + "integrity": "sha1-EwU8DUqhHQcKLyhytrHjrh4ZcbQ=" + }, + "send": { + "version": "0.17.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/send/-/send-0.17.1.tgz", + "integrity": "sha1-wdiwWfeQD3Rm3Uk4vcROEd2zdsg=", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.1.1.tgz", + "integrity": "sha1-MKWGTrPrsKZvLr5tcnrwagnYbgo=", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha1-eIbshIBJpGJGepfT2Rjrsqr5NPQ=", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha1-Zm5jbcTwEPfvKZcKiKZ0MgiYsvk=", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha1-oY1AUw5vB95CKMfe/kInr4ytAFs=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha1-fpWsskqpL1iF4KvvW6ExMw1K5oM=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha1-785cj9wQTudRslxY1CkAEfpeos8=", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha1-JOYwxLDwP+pEaivSmeYrSmyo0K8=", + "dev": true + }, + "single-spa": { + "version": "5.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/single-spa/-/single-spa-5.8.0.tgz", + "integrity": "sha1-7foKsE4fr7xOGkahEOGmkqbxr4g=" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/slash/-/slash-3.0.0.tgz", + "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=", + "dev": true + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.20", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sockjs/-/sockjs-0.3.20.tgz", + "integrity": "sha1-smooPsVi74smh7RAM6Tuzqx12FU=", + "dev": true, + "requires": { + "faye-websocket": "^0.10.0", + "uuid": "^3.4.0", + "websocket-driver": "0.6.5" + } + }, + "sockjs-client": { + "version": "1.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sockjs-client/-/sockjs-client-1.4.0.tgz", + "integrity": "sha1-yfJWjhnI/YFztJl+o0IOC7MGx9U=", + "dev": true, + "requires": { + "debug": "^3.2.5", + "eventsource": "^1.0.7", + "faye-websocket": "~0.11.1", + "inherits": "^2.0.3", + "json3": "^3.3.2", + "url-parse": "^1.4.3" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + } + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ=", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha1-GQhmvs51U+H48mei7oLGBrVQmho=", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha1-BP58f54e0tZiIzwoyys1ufY/bk8=", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha1-CvZmBadFpaL5HPG7+KevvCg97FY=", + "dev": true + }, + "spawn-command": { + "version": "0.0.2-1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/spawn-command/-/spawn-command-0.0.2-1.tgz", + "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha1-3s6BrJweZxPl99G28X1Gj6U9iak=", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha1-UMDYxAoU7Bv0Sbrmmg6kaFqdn5U=", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha1-M3u9o63AcGvT4CRCaihtS0sskZg=", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "split": { + "version": "0.3.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/split/-/split-0.3.3.tgz", + "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "dev": true, + "requires": { + "through": "2" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha1-+2YcC+8ps520B2nuOfpwCT1vaHc=", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha1-Y45OQ54v+9LNKJd21cpFfE9Roq8=", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "start-server-and-test": { + "version": "1.11.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/start-server-and-test/-/start-server-and-test-1.11.3.tgz", + "integrity": "sha1-0pPSz/LC+gpGu89rKScW28gELQE=", + "dev": true, + "requires": { + "bluebird": "3.7.2", + "check-more-types": "2.24.0", + "debug": "4.1.1", + "execa": "3.4.0", + "lazy-ass": "1.6.0", + "ps-tree": "1.2.0", + "wait-on": "5.2.0" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-4.1.1.tgz", + "integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "execa": { + "version": "3.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/execa/-/execa-3.4.0.tgz", + "integrity": "sha1-wI7UVQ72XYWPrCaf/IVyRG8364k=", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + } + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "stdout-stream": { + "version": "1.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha1-WsF0zdXNcmEEqgwLK9g4FdjVNd4=", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha1-h1IdOKRKp+6RzhzSpH3wy0ndZgs=", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-combiner": { + "version": "0.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "dev": true, + "requires": { + "duplexer": "~0.1.1" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha1-6+J6DDibBPvMIzZClS4Qcxr6m64=", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw=", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha1-1wiCgVWasneEJCebCHfaPDktWj0=", + "dev": true + }, + "string-argv": { + "version": "0.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha1-leL77AQnrhkYSTX4FtdKqkxcGdo=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha1-cDBlrvyhkwDTzoivT1s5VtdVZik=", + "dev": true, + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=", + "dev": true + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=", + "dev": true + }, + "style-loader": { + "version": "1.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/style-loader/-/style-loader-1.2.1.tgz", + "integrity": "sha1-xcu/vxFw0HbP3YbgEJxbuhFLqho=", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.6.6" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha1-1uO0+4GHByGuTghoqxHdY4NowSk=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "table": { + "version": "6.7.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/table/-/table-6.7.5.tgz", + "integrity": "sha1-8ER4w1HvPYx5BPDovpChtiQX0jg=", + "dev": true, + "requires": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha1-AbT+8gB6KL918Lf8AJ9iZ53kq7s=", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha1-ofzMBrWNth/XpF2i2kT186Pme6I=", + "dev": true + }, + "tar": { + "version": "6.1.11", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tar/-/tar-6.1.11.tgz", + "integrity": "sha1-Z2CjjwA6+hsv/Q/+npq70Oqz1iE=", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha1-PrXtYmInVteaXw4qIh3+utdcL34=", + "dev": true + } + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/terser/-/terser-4.8.0.tgz", + "integrity": "sha1-YwVjQ9fHC7KfOvZlhlpG/gOg3xc=", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/commander/-/commander-2.20.3.tgz", + "integrity": "sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha1-oheu+uozDnNP+sthIOwfoxLWBAs=", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha1-ZovL0QWutfHZL+JVcOyVJcj6pAw=", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs=", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A=", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha1-tSXhI4SJpez8Qq+sw/6Z5mb0sao=", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha1-FXk5E08gRk5zAd26PpD/qPdyisU=", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=", + "dev": true + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "2.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/through2/-/through2-2.0.5.tgz", + "integrity": "sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=", + "dev": true + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha1-RKRcEfv0B/NPl7zNFXfGUjYbAO4=", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha1-fhvjRw8ed5SLxD2Uo8j013UrpVM=", + "dev": true + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha1-zZ+yoKodWhK0c72fuW+j3P9lreI=", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha1-TKCakJLIi3OnzcXooBtQeweQoMw=", + "dev": true + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + }, + "true-case-path": { + "version": "1.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/true-case-path/-/true-case-path-1.0.3.tgz", + "integrity": "sha1-+BO1qMhrQNpZYGcisUTjIleZ9H0=", + "dev": true, + "requires": { + "glob": "^7.1.2" + } + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha1-8shUBoALmw90yfdGW4HqrSQSUvg=", + "dev": true + }, + "ts-loader": { + "version": "8.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ts-loader/-/ts-loader-8.0.3.tgz", + "integrity": "sha1-VoWPQpbt8e1V4B+FIFUphNPwkRw=", + "dev": true, + "requires": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^4.0.0", + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + } + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typescript": { + "version": "4.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/typescript/-/typescript-4.0.2.tgz", + "integrity": "sha1-fqfIh3fHI8aB4zv3mIvl0AjQWsI=", + "dev": true + }, + "typescript-plugin-styled-components": { + "version": "1.4.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/typescript-plugin-styled-components/-/typescript-plugin-styled-components-1.4.4.tgz", + "integrity": "sha1-//JtUW/yE9/+GlYn/nbyOuPuato=", + "dev": true + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha1-CF4hViXsMWJXTciFmr7nilmxRHE=", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha1-GgGqVyR8FMVouJd1pUk4eIGJpxQ=", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha1-CjbLmlhcT2q9Ua0d7dsoXBZSl8g=", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha1-C2/nuDWuzaYcbqTU8CwUIh4QmEc=", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha1-HWl2k2mtoFgxA6HmrodoG1ZXMjA=", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha1-uqvOkQg/xk6UWw861hPiZPfNTmw=", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/upath/-/upath-1.2.0.tgz", + "integrity": "sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ=", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/use/-/use-3.1.1.tgz", + "integrity": "sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8=", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/util/-/util-0.11.1.tgz", + "integrity": "sha1-MjZzNyDsZLsn9uJvQhqqLhtYjWE=", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA=", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha1-sj5DWK+oogL+ehAK8fX4g/AgB+4=", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4=", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha1-/JH2uce6FchX9MssXe/uw51PQQo=", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + } + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha1-eGQcSIuObKkadfUR56OzKobl3aA=", + "dev": true + }, + "vue-eslint-parser": { + "version": "7.11.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz", + "integrity": "sha1-IUtd6pYQB/z/su5luJEjB2KNDa8=", + "dev": true, + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.2.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^6.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=", + "dev": true + }, + "espree": { + "version": "6.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/espree/-/espree-6.2.1.tgz", + "integrity": "sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o=", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + } + } + }, + "vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha1-UylVzB6yCKPZkLOp+acFdGV+CPI=", + "dev": true + }, + "vue-loader": { + "version": "15.9.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vue-loader/-/vue-loader-15.9.5.tgz", + "integrity": "sha1-epYNxCCjQ53qrN2gOP3Nv3xDJwY=", + "dev": true, + "requires": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + } + }, + "vue-style-loader": { + "version": "4.1.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha1-bVWGOlH6dXqyTonZNxRlByqnvDU=", + "dev": true, + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "vue-template-compiler": { + "version": "2.6.12", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz", + "integrity": "sha1-lH7XGWdEyKUoXr4SM/6WBDf8xX4=", + "dev": true, + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", + "integrity": "sha1-HuO8mhbsv1EYvjNLsV+cRvgvWCU=", + "dev": true + }, + "wait-on": { + "version": "5.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/wait-on/-/wait-on-5.2.0.tgz", + "integrity": "sha1-ZxHnRCJSMnlxSjbVLPSftHydlZc=", + "dev": true, + "requires": { + "axios": "^0.19.2", + "joi": "^17.1.1", + "lodash": "^4.17.19", + "minimist": "^1.2.5", + "rxjs": "^6.5.5" + }, + "dependencies": { + "axios": { + "version": "0.19.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/axios/-/axios-0.19.2.tgz", + "integrity": "sha1-PqNsXYgY0NX4qKl6bTa4bNwAyyc=", + "dev": true, + "requires": { + "follow-redirects": "1.5.10" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/debug/-/debug-3.1.0.tgz", + "integrity": "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "follow-redirects": { + "version": "1.5.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha1-e3qfmuov3/NnhqlP9kPtB/T/Xio=", + "dev": true, + "requires": { + "debug": "=3.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha1-EmfmxV4Lm1vkTCAjrtVDeiwmxFM=", + "dev": true, + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha1-OFAAcu5uzmbzdpk2lQ6hdxvhyVc=", + "dev": true, + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha1-vLJLTzeTTZqnrBe0ra+J58du8us=", + "dev": true, + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U=", + "dev": true, + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/braces/-/braces-2.3.2.tgz", + "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=", + "dev": true, + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc=", + "dev": true, + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg=", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "optional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=", + "dev": true, + "optional": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha1-DodiKjMlqjPokihcr4tOhGUppSU=", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha1-a/4rCvBVyLLR6Q7SzZNj+EEma3I=", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha1-NYZv1xBSjpLeEM8GAWSY5H454eY=", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/braces/-/braces-2.3.2.tgz", + "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha1-ygODMxD2iJoyZHgaqC5j65z+eEg=", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A=", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-bundle-analyzer": { + "version": "3.8.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.8.0.tgz", + "integrity": "sha1-zms/kI2vBp/R9yZvaSy7O97ZuhY=", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "bfj": "^6.1.1", + "chalk": "^2.4.1", + "commander": "^2.18.0", + "ejs": "^2.6.1", + "express": "^4.16.3", + "filesize": "^3.6.1", + "gzip-size": "^5.0.0", + "lodash": "^4.17.15", + "mkdirp": "^0.5.1", + "opener": "^1.5.1", + "ws": "^6.0.0" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/commander/-/commander-2.20.3.tgz", + "integrity": "sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=", + "dev": true + } + } + }, + "webpack-cli": { + "version": "3.3.12", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha1-lOmtoIFFPNCqYJyZ5QABL9OtLUo=", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha1-B2Srxpxj1ayELdSGfo0CXogN+PM=", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which/-/which-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha1-Bjk3KxQyYuK4SrldO5GnWXBhwsU=", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.4.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "mime": { + "version": "2.6.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/mime/-/mime-2.6.0.tgz", + "integrity": "sha1-oqaCqVzU0MsdYlfij4PafjWAA2c=", + "dev": true + } + } + }, + "webpack-dev-server": { + "version": "3.11.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", + "integrity": "sha1-jxVKO84bz9HMYY705wMniFXn/4w=", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.7", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "0.3.20", + "sockjs-client": "1.4.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha1-vLJLTzeTTZqnrBe0ra+J58du8us=", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U=", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/braces/-/braces-2.3.2.tgz", + "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc=", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg=", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha1-DodiKjMlqjPokihcr4tOhGUppSU=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A=", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver/-/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha1-B2Srxpxj1ayELdSGfo0CXogN+PM=", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha1-W3ko4GN1k/EZ0y9iJ8HgrDHhtH8=", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha1-46PaS/uubIapwoViXeEkojQCb78=", + "dev": true + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha1-7t2OwLko+/HL/plOItLYkPMwqTM=", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "websocket-driver": { + "version": "0.6.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/websocket-driver/-/websocket-driver-0.6.5.tgz", + "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "dev": true, + "requires": { + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha1-f4RzvIOd/YdgituV1+sHUhFXikI=", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which/-/which-2.0.2.tgz", + "integrity": "sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "which-pm-runs": { + "version": "1.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/which-pm-runs/-/which-pm-runs-1.0.0.tgz", + "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=", + "dev": true + }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha1-3x1MIGhUNp7PPJpImPGyP72dFdM=", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=", + "dev": true + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha1-JqlMU5G7ypJhUgAvabhKS/dy5ag=", + "dev": true, + "requires": { + "errno": "~0.1.7" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha1-H9H2cjXVttD+54EFYAG/tpTAOwk=", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "ws": { + "version": "6.2.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/ws/-/ws-6.2.2.tgz", + "integrity": "sha1-3Vzb1XqZeZFgl2UtePHMX66gwy4=", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=", + "dev": true + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha1-tfJZyCzW4zaSHv17/Yv1YN6e7t8=", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=", + "dev": true + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha1-IwHF/78StGfejaIzOkWeKeeSDks=", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha1-rX/+/sGqWVZayRX4Lcyzipwxot0=", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha1-Ew8JcC667vJlDVTObj5XBvek+zg=", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=", + "dev": true + } + } +} diff --git a/src/package.json b/src/package.json new file mode 100644 index 0000000..9777d46 --- /dev/null +++ b/src/package.json @@ -0,0 +1,77 @@ +{ + "name": "presentation", + "version": "0.0.1", + "description": "Destination ", + "main": "index.js", + "scripts": { + "start": "webpack-dev-server --open && npm run start:config", + "start:config": "webpack-dev-server --config ./webpack.config.js --port 3001", + "start:carrier-release": "cd ./services/carrier-release/ && webpack-dev-server", + "start:navbar": "cd ./services/navbar/ && webpack-dev-server", + "start:customs": "cd ./services/customs/ && webpack-dev-server", + "start:exception-management": "cd ./services/exception-management/ && webpack-dev-server", + "start:monitor-delivery": "cd ./services/monitor-delivery/ && webpack-dev-server", + "start:common": "cd ./services/common/ && webpack-dev-server", + "build": "npm run build:config", + "build:config": "webpack --config ./webpack.config.prod.js", + "build:carrier-release": "cd ./services/carrier-release/ && webpack --config ./webpack.config.prod.js", + "build:navbar": "cd ./services/navbar/ && webpack --config ./webpack.config.prod.js", + "build:customs": "cd ./services/customs/ && webpack --config ./webpack.config.prod.js", + "build:exception-management": "cd ./services/exception-management/ && webpack --config ./webpack.config.prod.js", + "build:monintor-delivery": "cd ./services/monintor-delivery/ && webpack --config ./webpack.config.prod.js", + "build:common": "cd ./services/common/ && webpack --config ./webpack.config.prod.js", + "cy": "cypress open", + "cy:run": "cypress run", + "ci:tests": "start-server-and-test start http://localhost:8080 cy:run", + "lint": "eslint '**/*.vue' --cache", + "lint:fix": "eslint '**/*.vue' --cache --fix" + }, + "author": "Destination UI team", + "license": "ISC", + "devDependencies": { + "@babel/core": "^7.11.6", + "@babel/plugin-proposal-object-rest-spread": "^7.11.0", + "@babel/preset-env": "^7.11.5", + "@babel/preset-react": "^7.10.4", + "@types/axios": "^0.14.0", + "@types/node": "^14.10.1", + "@typescript-eslint/eslint-plugin": "^4.14.1", + "@typescript-eslint/parser": "^4.14.1", + "add-asset-html-webpack-plugin": "^3.1.3", + "babel-loader": "^8.1.0", + "concurrently": "^5.3.0", + "copy-webpack-plugin": "^6.1.1", + "css-loader": "^4.3.0", + "eslint": "^7.18.0", + "eslint-config-prettier": "^7.2.0", + "eslint-plugin-prettier": "^3.3.1", + "eslint-plugin-vue": "^7.5.0", + "file-loader": "^6.2.0", + "html-loader": "^1.3.1", + "html-webpack-plugin": "^4.5.0", + "husky": "^4.3.8", + "lint-staged": "^10.5.3", + "node-sass": "^5.0.0", + "prettier": "2.2.1", + "sass": "^1.29.0", + "sass-loader": "^10.1.0", + "start-server-and-test": "^1.11.3", + "style-loader": "^1.2.1", + "ts-loader": "^8.0.3", + "typescript": "^4.0.2", + "typescript-plugin-styled-components": "^1.4.4", + "vue-loader": "^15.9.5", + "vue-template-compiler": "^2.6.12", + "webpack": "^4.44.2", + "webpack-bundle-analyzer": "^3.8.0", + "webpack-cli": "^3.3.12", + "webpack-dev-server": "^3.11.0" + }, + "dependencies": { + "@datadog/browser-rum": "^1.21.0", + "axios": "^0.20.0", + "clean-webpack-plugin": "^3.0.0", + "msal": "^1.4.4", + "single-spa": "^5.8.0" + } +} From ac8d7323941988ebb9def91702677abe183d0c6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Aug 2022 12:48:26 +0000 Subject: [PATCH 17/17] Bump terser from 4.8.0 to 4.8.1 in /src Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v4.8.0...v4.8.1) --- updated-dependencies: - dependency-name: terser dependency-type: indirect ... Signed-off-by: dependabot[bot] --- src/package-lock.json | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/package-lock.json b/src/package-lock.json index cbf4780..1c5aa04 100644 --- a/src/package-lock.json +++ b/src/package-lock.json @@ -4596,7 +4596,8 @@ "eventsource": { "version": "1.1.2", "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/eventsource/-/eventsource-1.1.2.tgz", - "integrity": "sha1-vHWuHGAgnnyxVBIxmARgND6up8I=" + "integrity": "sha1-vHWuHGAgnnyxVBIxmARgND6up8I=", + "dev": true }, "evp_bytestokey": { "version": "1.0.3", @@ -9361,7 +9362,8 @@ "semver-regex": { "version": "3.1.4", "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/semver-regex/-/semver-regex-3.1.4.tgz", - "integrity": "sha1-EwU8DUqhHQcKLyhytrHjrh4ZcbQ=" + "integrity": "sha1-EwU8DUqhHQcKLyhytrHjrh4ZcbQ=", + "dev": true }, "send": { "version": "0.17.1", @@ -10326,9 +10328,9 @@ } }, "terser": { - "version": "4.8.0", - "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/terser/-/terser-4.8.0.tgz", - "integrity": "sha1-YwVjQ9fHC7KfOvZlhlpG/gOg3xc=", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", "dev": true, "requires": { "commander": "^2.20.0", @@ -10338,8 +10340,8 @@ "dependencies": { "commander": { "version": "2.20.3", - "resolved": "https://pkgs.dev.azure.com/SCMPlatform/6776e2e2-bbdf-4e0e-92c9-dd933aee8d93/_packaging/destination/npm/registry/commander/-/commander-2.20.3.tgz", - "integrity": "sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true } }