yarn.lock 174 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605
  1. # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
  2. # yarn lockfile v1
  3. "@babel/[email protected]":
  4. version "7.12.11"
  5. resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
  6. integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
  7. dependencies:
  8. "@babel/highlight" "^7.10.4"
  9. "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3":
  10. version "7.8.3"
  11. resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz"
  12. integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
  13. dependencies:
  14. "@babel/highlight" "^7.8.3"
  15. "@babel/code-frame@^7.12.13":
  16. version "7.12.13"
  17. resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"
  18. integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
  19. dependencies:
  20. "@babel/highlight" "^7.12.13"
  21. "@babel/compat-data@^7.13.12":
  22. version "7.13.12"
  23. resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz"
  24. integrity sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ==
  25. "@babel/core@^7.12.16":
  26. version "7.13.13"
  27. resolved "https://registry.npmjs.org/@babel/core/-/core-7.13.13.tgz"
  28. integrity sha512-1xEs9jZAyKIouOoCmpsgk/I26PoKyvzQ2ixdRpRzfbcp1fL+ozw7TUgdDgwonbTovqRaTfRh50IXuw4QrWO0GA==
  29. dependencies:
  30. "@babel/code-frame" "^7.12.13"
  31. "@babel/generator" "^7.13.9"
  32. "@babel/helper-compilation-targets" "^7.13.13"
  33. "@babel/helper-module-transforms" "^7.13.12"
  34. "@babel/helpers" "^7.13.10"
  35. "@babel/parser" "^7.13.13"
  36. "@babel/template" "^7.12.13"
  37. "@babel/traverse" "^7.13.13"
  38. "@babel/types" "^7.13.13"
  39. convert-source-map "^1.7.0"
  40. debug "^4.1.0"
  41. gensync "^1.0.0-beta.2"
  42. json5 "^2.1.2"
  43. lodash "^4.17.19"
  44. semver "^6.3.0"
  45. source-map "^0.5.0"
  46. "@babel/core@^7.7.5":
  47. version "7.9.0"
  48. resolved "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz"
  49. integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==
  50. dependencies:
  51. "@babel/code-frame" "^7.8.3"
  52. "@babel/generator" "^7.9.0"
  53. "@babel/helper-module-transforms" "^7.9.0"
  54. "@babel/helpers" "^7.9.0"
  55. "@babel/parser" "^7.9.0"
  56. "@babel/template" "^7.8.6"
  57. "@babel/traverse" "^7.9.0"
  58. "@babel/types" "^7.9.0"
  59. convert-source-map "^1.7.0"
  60. debug "^4.1.0"
  61. gensync "^1.0.0-beta.1"
  62. json5 "^2.1.2"
  63. lodash "^4.17.13"
  64. resolve "^1.3.2"
  65. semver "^5.4.1"
  66. source-map "^0.5.0"
  67. "@babel/eslint-parser@^7.12.16":
  68. version "7.13.10"
  69. resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.13.10.tgz"
  70. integrity sha512-/I1HQ3jGPhIpeBFeI3wO9WwWOnBYpuR0pX0KlkdGcRQAVX9prB/FCS2HBpL7BiFbzhny1YCiBH8MTZD2jJa7Hg==
  71. dependencies:
  72. eslint-scope "5.1.0"
  73. eslint-visitor-keys "^1.3.0"
  74. semver "^6.3.0"
  75. "@babel/generator@^7.13.9":
  76. version "7.13.9"
  77. resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz"
  78. integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==
  79. dependencies:
  80. "@babel/types" "^7.13.0"
  81. jsesc "^2.5.1"
  82. source-map "^0.5.0"
  83. "@babel/generator@^7.9.0":
  84. version "7.9.3"
  85. resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.9.3.tgz"
  86. integrity sha512-RpxM252EYsz9qLUIq6F7YJyK1sv0wWDBFuztfDGWaQKzHjqDHysxSiRUpA/X9jmfqo+WzkAVKFaUily5h+gDCQ==
  87. dependencies:
  88. "@babel/types" "^7.9.0"
  89. jsesc "^2.5.1"
  90. lodash "^4.17.13"
  91. source-map "^0.5.0"
  92. "@babel/helper-compilation-targets@^7.13.13":
  93. version "7.13.13"
  94. resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz"
  95. integrity sha512-q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ==
  96. dependencies:
  97. "@babel/compat-data" "^7.13.12"
  98. "@babel/helper-validator-option" "^7.12.17"
  99. browserslist "^4.14.5"
  100. semver "^6.3.0"
  101. "@babel/helper-function-name@^7.12.13":
  102. version "7.12.13"
  103. resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"
  104. integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
  105. dependencies:
  106. "@babel/helper-get-function-arity" "^7.12.13"
  107. "@babel/template" "^7.12.13"
  108. "@babel/types" "^7.12.13"
  109. "@babel/helper-function-name@^7.8.3":
  110. version "7.8.3"
  111. resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz"
  112. integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==
  113. dependencies:
  114. "@babel/helper-get-function-arity" "^7.8.3"
  115. "@babel/template" "^7.8.3"
  116. "@babel/types" "^7.8.3"
  117. "@babel/helper-get-function-arity@^7.12.13":
  118. version "7.12.13"
  119. resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"
  120. integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
  121. dependencies:
  122. "@babel/types" "^7.12.13"
  123. "@babel/helper-get-function-arity@^7.8.3":
  124. version "7.8.3"
  125. resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz"
  126. integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
  127. dependencies:
  128. "@babel/types" "^7.8.3"
  129. "@babel/helper-member-expression-to-functions@^7.13.12":
  130. version "7.13.12"
  131. resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"
  132. integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
  133. dependencies:
  134. "@babel/types" "^7.13.12"
  135. "@babel/helper-member-expression-to-functions@^7.8.3":
  136. version "7.8.3"
  137. resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz"
  138. integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
  139. dependencies:
  140. "@babel/types" "^7.8.3"
  141. "@babel/helper-module-imports@^7.13.12":
  142. version "7.13.12"
  143. resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"
  144. integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
  145. dependencies:
  146. "@babel/types" "^7.13.12"
  147. "@babel/helper-module-imports@^7.8.3":
  148. version "7.8.3"
  149. resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz"
  150. integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
  151. dependencies:
  152. "@babel/types" "^7.8.3"
  153. "@babel/helper-module-transforms@^7.13.12":
  154. version "7.13.12"
  155. resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.12.tgz"
  156. integrity sha512-7zVQqMO3V+K4JOOj40kxiCrMf6xlQAkewBB0eu2b03OO/Q21ZutOzjpfD79A5gtE/2OWi1nv625MrDlGlkbknQ==
  157. dependencies:
  158. "@babel/helper-module-imports" "^7.13.12"
  159. "@babel/helper-replace-supers" "^7.13.12"
  160. "@babel/helper-simple-access" "^7.13.12"
  161. "@babel/helper-split-export-declaration" "^7.12.13"
  162. "@babel/helper-validator-identifier" "^7.12.11"
  163. "@babel/template" "^7.12.13"
  164. "@babel/traverse" "^7.13.0"
  165. "@babel/types" "^7.13.12"
  166. "@babel/helper-module-transforms@^7.9.0":
  167. version "7.9.0"
  168. resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz"
  169. integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==
  170. dependencies:
  171. "@babel/helper-module-imports" "^7.8.3"
  172. "@babel/helper-replace-supers" "^7.8.6"
  173. "@babel/helper-simple-access" "^7.8.3"
  174. "@babel/helper-split-export-declaration" "^7.8.3"
  175. "@babel/template" "^7.8.6"
  176. "@babel/types" "^7.9.0"
  177. lodash "^4.17.13"
  178. "@babel/helper-optimise-call-expression@^7.12.13":
  179. version "7.12.13"
  180. resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"
  181. integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
  182. dependencies:
  183. "@babel/types" "^7.12.13"
  184. "@babel/helper-optimise-call-expression@^7.8.3":
  185. version "7.8.3"
  186. resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz"
  187. integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
  188. dependencies:
  189. "@babel/types" "^7.8.3"
  190. "@babel/helper-replace-supers@^7.13.12":
  191. version "7.13.12"
  192. resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"
  193. integrity sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==
  194. dependencies:
  195. "@babel/helper-member-expression-to-functions" "^7.13.12"
  196. "@babel/helper-optimise-call-expression" "^7.12.13"
  197. "@babel/traverse" "^7.13.0"
  198. "@babel/types" "^7.13.12"
  199. "@babel/helper-replace-supers@^7.8.6":
  200. version "7.8.6"
  201. resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz"
  202. integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==
  203. dependencies:
  204. "@babel/helper-member-expression-to-functions" "^7.8.3"
  205. "@babel/helper-optimise-call-expression" "^7.8.3"
  206. "@babel/traverse" "^7.8.6"
  207. "@babel/types" "^7.8.6"
  208. "@babel/helper-simple-access@^7.13.12":
  209. version "7.13.12"
  210. resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"
  211. integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
  212. dependencies:
  213. "@babel/types" "^7.13.12"
  214. "@babel/helper-simple-access@^7.8.3":
  215. version "7.8.3"
  216. resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz"
  217. integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
  218. dependencies:
  219. "@babel/template" "^7.8.3"
  220. "@babel/types" "^7.8.3"
  221. "@babel/helper-split-export-declaration@^7.12.13":
  222. version "7.12.13"
  223. resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"
  224. integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
  225. dependencies:
  226. "@babel/types" "^7.12.13"
  227. "@babel/helper-split-export-declaration@^7.8.3":
  228. version "7.8.3"
  229. resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz"
  230. integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
  231. dependencies:
  232. "@babel/types" "^7.8.3"
  233. "@babel/helper-validator-identifier@^7.10.4":
  234. version "7.10.4"
  235. resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"
  236. integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
  237. "@babel/helper-validator-identifier@^7.12.11":
  238. version "7.12.11"
  239. resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"
  240. integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
  241. "@babel/helper-validator-identifier@^7.9.0":
  242. version "7.9.0"
  243. resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz"
  244. integrity sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw==
  245. "@babel/helper-validator-option@^7.12.17":
  246. version "7.12.17"
  247. resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"
  248. integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
  249. "@babel/helpers@^7.13.10":
  250. version "7.13.10"
  251. resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz"
  252. integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==
  253. dependencies:
  254. "@babel/template" "^7.12.13"
  255. "@babel/traverse" "^7.13.0"
  256. "@babel/types" "^7.13.0"
  257. "@babel/helpers@^7.9.0":
  258. version "7.9.2"
  259. resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.2.tgz"
  260. integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA==
  261. dependencies:
  262. "@babel/template" "^7.8.3"
  263. "@babel/traverse" "^7.9.0"
  264. "@babel/types" "^7.9.0"
  265. "@babel/highlight@^7.10.4":
  266. version "7.10.4"
  267. resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"
  268. integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
  269. dependencies:
  270. "@babel/helper-validator-identifier" "^7.10.4"
  271. chalk "^2.0.0"
  272. js-tokens "^4.0.0"
  273. "@babel/highlight@^7.12.13":
  274. version "7.13.10"
  275. resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz"
  276. integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==
  277. dependencies:
  278. "@babel/helper-validator-identifier" "^7.12.11"
  279. chalk "^2.0.0"
  280. js-tokens "^4.0.0"
  281. "@babel/highlight@^7.8.3":
  282. version "7.9.0"
  283. resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz"
  284. integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==
  285. dependencies:
  286. "@babel/helper-validator-identifier" "^7.9.0"
  287. chalk "^2.0.0"
  288. js-tokens "^4.0.0"
  289. "@babel/parser@^7.12.13", "@babel/parser@^7.13.13":
  290. version "7.13.13"
  291. resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz"
  292. integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==
  293. "@babel/parser@^7.7.5", "@babel/parser@^7.8.6", "@babel/parser@^7.9.0":
  294. version "7.9.3"
  295. resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.9.3.tgz"
  296. integrity sha512-E6SpIDJZ0cZAKoCNk+qSDd0ChfTnpiJN9FfNf3RZ20dzwA2vL2oq5IX1XTVT+4vDmRlta2nGk5HGMMskJAR+4A==
  297. "@babel/template@^7.12.13":
  298. version "7.12.13"
  299. resolved "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"
  300. integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
  301. dependencies:
  302. "@babel/code-frame" "^7.12.13"
  303. "@babel/parser" "^7.12.13"
  304. "@babel/types" "^7.12.13"
  305. "@babel/template@^7.7.4", "@babel/template@^7.8.3", "@babel/template@^7.8.6":
  306. version "7.8.6"
  307. resolved "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz"
  308. integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==
  309. dependencies:
  310. "@babel/code-frame" "^7.8.3"
  311. "@babel/parser" "^7.8.6"
  312. "@babel/types" "^7.8.6"
  313. "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.13":
  314. version "7.13.13"
  315. resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz"
  316. integrity sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg==
  317. dependencies:
  318. "@babel/code-frame" "^7.12.13"
  319. "@babel/generator" "^7.13.9"
  320. "@babel/helper-function-name" "^7.12.13"
  321. "@babel/helper-split-export-declaration" "^7.12.13"
  322. "@babel/parser" "^7.13.13"
  323. "@babel/types" "^7.13.13"
  324. debug "^4.1.0"
  325. globals "^11.1.0"
  326. "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0":
  327. version "7.9.0"
  328. resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.0.tgz"
  329. integrity sha512-jAZQj0+kn4WTHO5dUZkZKhbFrqZE7K5LAQ5JysMnmvGij+wOdr+8lWqPeW0BcF4wFwrEXXtdGO7wcV6YPJcf3w==
  330. dependencies:
  331. "@babel/code-frame" "^7.8.3"
  332. "@babel/generator" "^7.9.0"
  333. "@babel/helper-function-name" "^7.8.3"
  334. "@babel/helper-split-export-declaration" "^7.8.3"
  335. "@babel/parser" "^7.9.0"
  336. "@babel/types" "^7.9.0"
  337. debug "^4.1.0"
  338. globals "^11.1.0"
  339. lodash "^4.17.13"
  340. "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.13":
  341. version "7.13.13"
  342. resolved "https://registry.npmjs.org/@babel/types/-/types-7.13.13.tgz"
  343. integrity sha512-kt+EpC6qDfIaqlP+DIbIJOclYy/A1YXs9dAf/ljbi+39Bcbc073H6jKVpXEr/EoIh5anGn5xq/yRVzKl+uIc9w==
  344. dependencies:
  345. "@babel/helper-validator-identifier" "^7.12.11"
  346. lodash "^4.17.19"
  347. to-fast-properties "^2.0.0"
  348. "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0":
  349. version "7.9.0"
  350. resolved "https://registry.npmjs.org/@babel/types/-/types-7.9.0.tgz"
  351. integrity sha512-BS9JKfXkzzJl8RluW4JGknzpiUV7ZrvTayM6yfqLTVBEnFtyowVIOu6rqxRd5cVO6yGoWf4T8u8dgK9oB+GCng==
  352. dependencies:
  353. "@babel/helper-validator-identifier" "^7.9.0"
  354. lodash "^4.17.13"
  355. to-fast-properties "^2.0.0"
  356. "@discoveryjs/json-ext@^0.5.0":
  357. version "0.5.2"
  358. resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz"
  359. integrity sha512-HyYEUDeIj5rRQU2Hk5HTB2uHsbRQpF70nvMhVzi+VJR0X+xNEhjPui4/kBf3VeH/wqD28PT4sVOm8qqLjBrSZg==
  360. "@eslint/eslintrc@^0.4.0":
  361. version "0.4.0"
  362. resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"
  363. integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==
  364. dependencies:
  365. ajv "^6.12.4"
  366. debug "^4.1.1"
  367. espree "^7.3.0"
  368. globals "^12.1.0"
  369. ignore "^4.0.6"
  370. import-fresh "^3.2.1"
  371. js-yaml "^3.13.1"
  372. minimatch "^3.0.4"
  373. strip-json-comments "^3.1.1"
  374. "@istanbuljs/load-nyc-config@^1.0.0":
  375. version "1.0.0"
  376. resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.0.0.tgz"
  377. integrity sha512-ZR0rq/f/E4f4XcgnDvtMWXCUJpi8eO0rssVhmztsZqLIEFA9UUP9zmpE0VxlM+kv/E1ul2I876Fwil2ayptDVg==
  378. dependencies:
  379. camelcase "^5.3.1"
  380. find-up "^4.1.0"
  381. js-yaml "^3.13.1"
  382. resolve-from "^5.0.0"
  383. "@istanbuljs/[email protected]":
  384. version "1.0.1"
  385. resolved "https://registry.npmjs.org/@istanbuljs/nyc-config-typescript/-/nyc-config-typescript-1.0.1.tgz"
  386. integrity sha512-/gz6LgVpky205LuoOfwEZmnUtaSmdk0QIMcNFj9OvxhiMhPpKftMgZmGN7jNj7jR+lr8IB1Yks3QSSSNSxfoaQ==
  387. dependencies:
  388. "@istanbuljs/schema" "^0.1.2"
  389. "@istanbuljs/schema@^0.1.2":
  390. version "0.1.2"
  391. resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz"
  392. integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
  393. "@javascript-obfuscator/[email protected]":
  394. version "2.1.1"
  395. resolved "https://registry.npmjs.org/@javascript-obfuscator/escodegen/-/escodegen-2.1.1.tgz"
  396. integrity sha512-d5TIrhngNyqphUPgjWRVcepw55+aIrN2YX6BHy+4XOTq3/6AZCFj18Ym0tYSDm8T7+hLN6Culif18cepF/NpDQ==
  397. dependencies:
  398. esprima "^4.0.1"
  399. estraverse "^5.2.0"
  400. esutils "^2.0.2"
  401. optionator "^0.8.1"
  402. optionalDependencies:
  403. source-map "~0.6.1"
  404. "@nodelib/[email protected]":
  405. version "2.1.4"
  406. resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"
  407. integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==
  408. dependencies:
  409. "@nodelib/fs.stat" "2.0.4"
  410. run-parallel "^1.1.9"
  411. "@nodelib/[email protected]", "@nodelib/fs.stat@^2.0.2":
  412. version "2.0.4"
  413. resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"
  414. integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==
  415. "@nodelib/fs.walk@^1.2.3":
  416. version "1.2.6"
  417. resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"
  418. integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==
  419. dependencies:
  420. "@nodelib/fs.scandir" "2.1.4"
  421. fastq "^1.6.0"
  422. "@nuxtjs/[email protected]":
  423. version "0.3.2"
  424. resolved "https://registry.npmjs.org/@nuxtjs/opencollective/-/opencollective-0.3.2.tgz"
  425. integrity sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA==
  426. dependencies:
  427. chalk "^4.1.0"
  428. consola "^2.15.0"
  429. node-fetch "^2.6.1"
  430. "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0":
  431. version "1.7.1"
  432. resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.7.1.tgz"
  433. integrity sha512-Debi3Baff1Qu1Unc3mjJ96MgpbwTn43S1+9yJ0llWygPwDNu2aaWBD6yc9y/Z8XDRNhx7U+u2UDg2OGQXkclUQ==
  434. dependencies:
  435. type-detect "4.0.8"
  436. "@sinonjs/commons@^1.8.1":
  437. version "1.8.1"
  438. resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz"
  439. integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==
  440. dependencies:
  441. type-detect "4.0.8"
  442. "@sinonjs/fake-timers@^6.0.0":
  443. version "6.0.0"
  444. resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.0.tgz"
  445. integrity sha512-atR1J/jRXvQAb47gfzSK8zavXy7BcpnYq21ALon0U99etu99vsir0trzIO3wpeLtW+LLVY6X7EkfVTbjGSH8Ww==
  446. dependencies:
  447. "@sinonjs/commons" "^1.7.0"
  448. "@sinonjs/fake-timers@^6.0.1":
  449. version "6.0.1"
  450. resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz"
  451. integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
  452. dependencies:
  453. "@sinonjs/commons" "^1.7.0"
  454. "@sinonjs/samsam@^5.3.1":
  455. version "5.3.1"
  456. resolved "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.1.tgz"
  457. integrity sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==
  458. dependencies:
  459. "@sinonjs/commons" "^1.6.0"
  460. lodash.get "^4.4.2"
  461. type-detect "^4.0.8"
  462. "@sinonjs/text-encoding@^0.7.1":
  463. version "0.7.1"
  464. resolved "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz"
  465. integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==
  466. "@types/[email protected]":
  467. version "4.2.16"
  468. resolved "https://registry.npmjs.org/@types/chai/-/chai-4.2.16.tgz"
  469. integrity sha512-vI5iOAsez9+roLS3M3+Xx7w+WRuDtSmF8bQkrbcIJ2sC1PcDgVoA0WGpa+bIrJ+y8zqY2oi//fUctkxtIcXJCw==
  470. "@types/[email protected]":
  471. version "1.1.1"
  472. resolved "https://registry.npmjs.org/@types/chance/-/chance-1.1.1.tgz"
  473. integrity sha512-Ze94JMnM33+dj/tQCWxXWaQ80uYmV9HwydTyrbHAiBa91ETQuI+3iF5OFPicDpQx+md+/6rDpTp9I2VKOGOtpw==
  474. "@types/color-name@^1.1.1":
  475. version "1.1.1"
  476. resolved "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz"
  477. integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
  478. "@types/[email protected]":
  479. version "0.0.6"
  480. resolved "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz"
  481. integrity sha1-UjCpznluBCzabwhtvxnyLqMwZZw=
  482. "@types/[email protected]", "@types/eslint-scope@^3.7.0":
  483. version "3.7.0"
  484. resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz"
  485. integrity sha512-O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw==
  486. dependencies:
  487. "@types/eslint" "*"
  488. "@types/estree" "*"
  489. "@types/eslint@*":
  490. version "7.2.2"
  491. resolved "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.2.tgz"
  492. integrity sha512-psWuwNXuKR2e6vMU5d2qH0Kqzrb2Zxwk+uBCF2LsyEph+Nex3lFIPMJXwxfGesdtJM2qtjKoCYsyh76K3x9wLg==
  493. dependencies:
  494. "@types/estree" "*"
  495. "@types/json-schema" "*"
  496. "@types/[email protected]":
  497. version "5.1.0"
  498. resolved "https://registry.npmjs.org/@types/estraverse/-/estraverse-5.1.0.tgz"
  499. integrity sha512-vH2ItsZq47KprWHdv8OMjlfpygPHp1P7X4zuJuTghXldyezatpaotNSujld/HNsxh9TUS7+JRB0HEldkv67qaw==
  500. dependencies:
  501. "@types/estree" "*"
  502. "@types/estree@*", "@types/[email protected]":
  503. version "0.0.47"
  504. resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz"
  505. integrity sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==
  506. "@types/estree@^0.0.46":
  507. version "0.0.46"
  508. resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz"
  509. integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==
  510. "@types/events@*":
  511. version "3.0.0"
  512. resolved "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz"
  513. integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==
  514. "@types/glob@*":
  515. version "7.1.1"
  516. resolved "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz"
  517. integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==
  518. dependencies:
  519. "@types/events" "*"
  520. "@types/minimatch" "*"
  521. "@types/node" "*"
  522. "@types/[email protected]":
  523. version "1.0.0"
  524. resolved "https://registry.npmjs.org/@types/js-string-escape/-/js-string-escape-1.0.0.tgz"
  525. integrity sha512-UANTN9S09hivqbeR4unjVS7DrtgjYUFNK4UCmHGPuwMrHyMFeU3z9KMg0wja/fTflXo7fVl0BsAohlgRO4QowQ==
  526. "@types/json-schema@*", "@types/json-schema@^7.0.3":
  527. version "7.0.4"
  528. resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.4.tgz"
  529. integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==
  530. "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5":
  531. version "7.0.5"
  532. resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.5.tgz"
  533. integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==
  534. "@types/json-schema@^7.0.6":
  535. version "7.0.6"
  536. resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"
  537. integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==
  538. "@types/json5@^0.0.29":
  539. version "0.0.29"
  540. resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
  541. integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
  542. "@types/[email protected]":
  543. version "2.3.0"
  544. resolved "https://registry.npmjs.org/@types/md5/-/md5-2.3.0.tgz"
  545. integrity sha512-556YJ7ejzxIqSSxzyGGpctuZOarNZJt/zlEkhmmDc1f/slOEANHuwu2ZX7YaZ40rMiWoxt8GvAhoDpW1cmSy6A==
  546. dependencies:
  547. "@types/node" "*"
  548. "@types/minimatch@*", "@types/minimatch@^3.0.3":
  549. version "3.0.3"
  550. resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz"
  551. integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
  552. "@types/[email protected]":
  553. version "1.0.1"
  554. resolved "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-1.0.1.tgz"
  555. integrity sha512-HkGSK7CGAXncr8Qn/0VqNtExEE+PHMWb+qlR1faHMao7ng6P3tAaoWWBMdva0gL5h4zprjIO89GJOLXsMcDm1Q==
  556. dependencies:
  557. "@types/node" "*"
  558. "@types/[email protected]":
  559. version "8.2.2"
  560. resolved "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.2.tgz"
  561. integrity sha512-Lwh0lzzqT5Pqh6z61P3c3P5nm6fzQK/MMHl9UKeneAeInVflBSz1O2EkX6gM6xfJd7FBXBY5purtLx7fUiZ7Hw==
  562. "@types/[email protected]":
  563. version "4.0.0"
  564. resolved "https://registry.npmjs.org/@types/multimatch/-/multimatch-4.0.0.tgz"
  565. integrity sha512-xS26gtqY5QASmfU/6jb5vj7F0D0SctgRGtwXsKSNng1knk/OewjISlkMwGonkMCbZCqSoW3s6nL0sAtTlzbL/g==
  566. dependencies:
  567. multimatch "*"
  568. "@types/node@*":
  569. version "13.9.3"
  570. resolved "https://registry.npmjs.org/@types/node/-/node-13.9.3.tgz"
  571. integrity sha512-01s+ac4qerwd6RHD+mVbOEsraDHSgUaefQlEdBbUolnQFjKwCr7luvAlEwW1RFojh67u0z4OUTjPn9LEl4zIkA==
  572. "@types/[email protected]":
  573. version "14.14.37"
  574. resolved "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz"
  575. integrity sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==
  576. "@types/normalize-package-data@^2.4.0":
  577. version "2.4.0"
  578. resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"
  579. integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
  580. "@types/parse-json@^4.0.0":
  581. version "4.0.0"
  582. resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"
  583. integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
  584. "@types/[email protected]":
  585. version "3.0.0"
  586. resolved "https://registry.npmjs.org/@types/rimraf/-/rimraf-3.0.0.tgz"
  587. integrity sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==
  588. dependencies:
  589. "@types/glob" "*"
  590. "@types/node" "*"
  591. "@types/[email protected]":
  592. version "9.0.11"
  593. resolved "https://registry.npmjs.org/@types/sinon/-/sinon-9.0.11.tgz"
  594. integrity sha512-PwP4UY33SeeVKodNE37ZlOsR9cReypbMJOhZ7BVE0lB+Hix3efCOxiJWiE5Ia+yL9Cn2Ch72EjFTRze8RZsNtg==
  595. dependencies:
  596. "@types/sinonjs__fake-timers" "*"
  597. "@types/sinonjs__fake-timers@*":
  598. version "6.0.1"
  599. resolved "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.1.tgz"
  600. integrity sha512-yYezQwGWty8ziyYLdZjwxyMb0CZR49h8JALHGrxjQHWlqGgc8kLdHEgWrgL0uZ29DMvEVBDnHU2Wg36zKSIUtA==
  601. "@types/[email protected]":
  602. version "1.0.2"
  603. resolved "https://registry.npmjs.org/@types/string-template/-/string-template-1.0.2.tgz"
  604. integrity sha1-NjsnPJtFZwXjER41cekkj2R066Q=
  605. "@types/validator@^13.1.3":
  606. version "13.1.3"
  607. resolved "https://registry.npmjs.org/@types/validator/-/validator-13.1.3.tgz"
  608. integrity sha512-DaOWN1zf7j+8nHhqXhIgNmS+ltAC53NXqGxYuBhWqWgqolRhddKzfZU814lkHQSTG0IUfQxU7Cg0gb8fFWo2mA==
  609. "@types/[email protected]":
  610. version "1.16.0"
  611. resolved "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.0.tgz"
  612. integrity sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==
  613. "@typescript-eslint/[email protected]":
  614. version "4.21.0"
  615. resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.21.0.tgz#3fce2bfa76d95c00ac4f33dff369cb593aab8878"
  616. integrity sha512-FPUyCPKZbVGexmbCFI3EQHzCZdy2/5f+jv6k2EDljGdXSRc0cKvbndd2nHZkSLqCNOPk0jB6lGzwIkglXcYVsQ==
  617. dependencies:
  618. "@typescript-eslint/experimental-utils" "4.21.0"
  619. "@typescript-eslint/scope-manager" "4.21.0"
  620. debug "^4.1.1"
  621. functional-red-black-tree "^1.0.1"
  622. lodash "^4.17.15"
  623. regexpp "^3.0.0"
  624. semver "^7.3.2"
  625. tsutils "^3.17.1"
  626. "@typescript-eslint/[email protected]":
  627. version "4.21.0"
  628. resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.21.0.tgz#0b0bb7c15d379140a660c003bdbafa71ae9134b6"
  629. integrity sha512-cEbgosW/tUFvKmkg3cU7LBoZhvUs+ZPVM9alb25XvR0dal4qHL3SiUqHNrzoWSxaXA9gsifrYrS1xdDV6w/gIA==
  630. dependencies:
  631. "@types/json-schema" "^7.0.3"
  632. "@typescript-eslint/scope-manager" "4.21.0"
  633. "@typescript-eslint/types" "4.21.0"
  634. "@typescript-eslint/typescript-estree" "4.21.0"
  635. eslint-scope "^5.0.0"
  636. eslint-utils "^2.0.0"
  637. "@typescript-eslint/[email protected]":
  638. version "4.21.0"
  639. resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.21.0.tgz#a227fc2af4001668c3e3f7415d4feee5093894c1"
  640. integrity sha512-eyNf7QmE5O/l1smaQgN0Lj2M/1jOuNg2NrBm1dqqQN0sVngTLyw8tdCbih96ixlhbF1oINoN8fDCyEH9SjLeIA==
  641. dependencies:
  642. "@typescript-eslint/scope-manager" "4.21.0"
  643. "@typescript-eslint/types" "4.21.0"
  644. "@typescript-eslint/typescript-estree" "4.21.0"
  645. debug "^4.1.1"
  646. "@typescript-eslint/[email protected]":
  647. version "4.21.0"
  648. resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.21.0.tgz#c81b661c4b8af1ec0c010d847a8f9ab76ab95b4d"
  649. integrity sha512-kfOjF0w1Ix7+a5T1knOw00f7uAP9Gx44+OEsNQi0PvvTPLYeXJlsCJ4tYnDj5PQEYfpcgOH5yBlw7K+UEI9Agw==
  650. dependencies:
  651. "@typescript-eslint/types" "4.21.0"
  652. "@typescript-eslint/visitor-keys" "4.21.0"
  653. "@typescript-eslint/[email protected]":
  654. version "4.21.0"
  655. resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.21.0.tgz#abdc3463bda5d31156984fa5bc316789c960edef"
  656. integrity sha512-+OQaupjGVVc8iXbt6M1oZMwyKQNehAfLYJJ3SdvnofK2qcjfor9pEM62rVjBknhowTkh+2HF+/KdRAc/wGBN2w==
  657. "@typescript-eslint/[email protected]":
  658. version "4.21.0"
  659. resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.21.0.tgz#3817bd91857beeaeff90f69f1f112ea58d350b0a"
  660. integrity sha512-ZD3M7yLaVGVYLw4nkkoGKumb7Rog7QID9YOWobFDMQKNl+vPxqVIW/uDk+MDeGc+OHcoG2nJ2HphwiPNajKw3w==
  661. dependencies:
  662. "@typescript-eslint/types" "4.21.0"
  663. "@typescript-eslint/visitor-keys" "4.21.0"
  664. debug "^4.1.1"
  665. globby "^11.0.1"
  666. is-glob "^4.0.1"
  667. semver "^7.3.2"
  668. tsutils "^3.17.1"
  669. "@typescript-eslint/[email protected]":
  670. version "4.21.0"
  671. resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.21.0.tgz#990a9acdc124331f5863c2cf21c88ba65233cd8d"
  672. integrity sha512-dH22dROWGi5Z6p+Igc8bLVLmwy7vEe8r+8c+raPQU0LxgogPUrRAtRGtvBWmlr9waTu3n+QLt/qrS/hWzk1x5w==
  673. dependencies:
  674. "@typescript-eslint/types" "4.21.0"
  675. eslint-visitor-keys "^2.0.0"
  676. "@ungap/[email protected]":
  677. version "1.1.2"
  678. resolved "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"
  679. integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
  680. "@webassemblyjs/[email protected]":
  681. version "1.11.0"
  682. resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz"
  683. integrity sha512-kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg==
  684. dependencies:
  685. "@webassemblyjs/helper-numbers" "1.11.0"
  686. "@webassemblyjs/helper-wasm-bytecode" "1.11.0"
  687. "@webassemblyjs/[email protected]":
  688. version "1.11.0"
  689. resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz"
  690. integrity sha512-Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA==
  691. "@webassemblyjs/[email protected]":
  692. version "1.11.0"
  693. resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz"
  694. integrity sha512-baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w==
  695. "@webassemblyjs/[email protected]":
  696. version "1.11.0"
  697. resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz"
  698. integrity sha512-u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA==
  699. "@webassemblyjs/[email protected]":
  700. version "1.11.0"
  701. resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz"
  702. integrity sha512-DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ==
  703. dependencies:
  704. "@webassemblyjs/floating-point-hex-parser" "1.11.0"
  705. "@webassemblyjs/helper-api-error" "1.11.0"
  706. "@xtuc/long" "4.2.2"
  707. "@webassemblyjs/[email protected]":
  708. version "1.11.0"
  709. resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz"
  710. integrity sha512-MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA==
  711. "@webassemblyjs/[email protected]":
  712. version "1.11.0"
  713. resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz"
  714. integrity sha512-3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew==
  715. dependencies:
  716. "@webassemblyjs/ast" "1.11.0"
  717. "@webassemblyjs/helper-buffer" "1.11.0"
  718. "@webassemblyjs/helper-wasm-bytecode" "1.11.0"
  719. "@webassemblyjs/wasm-gen" "1.11.0"
  720. "@webassemblyjs/[email protected]":
  721. version "1.11.0"
  722. resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz"
  723. integrity sha512-KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA==
  724. dependencies:
  725. "@xtuc/ieee754" "^1.2.0"
  726. "@webassemblyjs/[email protected]":
  727. version "1.11.0"
  728. resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz"
  729. integrity sha512-aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g==
  730. dependencies:
  731. "@xtuc/long" "4.2.2"
  732. "@webassemblyjs/[email protected]":
  733. version "1.11.0"
  734. resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz"
  735. integrity sha512-A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw==
  736. "@webassemblyjs/[email protected]":
  737. version "1.11.0"
  738. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz"
  739. integrity sha512-JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ==
  740. dependencies:
  741. "@webassemblyjs/ast" "1.11.0"
  742. "@webassemblyjs/helper-buffer" "1.11.0"
  743. "@webassemblyjs/helper-wasm-bytecode" "1.11.0"
  744. "@webassemblyjs/helper-wasm-section" "1.11.0"
  745. "@webassemblyjs/wasm-gen" "1.11.0"
  746. "@webassemblyjs/wasm-opt" "1.11.0"
  747. "@webassemblyjs/wasm-parser" "1.11.0"
  748. "@webassemblyjs/wast-printer" "1.11.0"
  749. "@webassemblyjs/[email protected]":
  750. version "1.11.0"
  751. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz"
  752. integrity sha512-BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ==
  753. dependencies:
  754. "@webassemblyjs/ast" "1.11.0"
  755. "@webassemblyjs/helper-wasm-bytecode" "1.11.0"
  756. "@webassemblyjs/ieee754" "1.11.0"
  757. "@webassemblyjs/leb128" "1.11.0"
  758. "@webassemblyjs/utf8" "1.11.0"
  759. "@webassemblyjs/[email protected]":
  760. version "1.11.0"
  761. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz"
  762. integrity sha512-tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg==
  763. dependencies:
  764. "@webassemblyjs/ast" "1.11.0"
  765. "@webassemblyjs/helper-buffer" "1.11.0"
  766. "@webassemblyjs/wasm-gen" "1.11.0"
  767. "@webassemblyjs/wasm-parser" "1.11.0"
  768. "@webassemblyjs/[email protected]":
  769. version "1.11.0"
  770. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz"
  771. integrity sha512-6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw==
  772. dependencies:
  773. "@webassemblyjs/ast" "1.11.0"
  774. "@webassemblyjs/helper-api-error" "1.11.0"
  775. "@webassemblyjs/helper-wasm-bytecode" "1.11.0"
  776. "@webassemblyjs/ieee754" "1.11.0"
  777. "@webassemblyjs/leb128" "1.11.0"
  778. "@webassemblyjs/utf8" "1.11.0"
  779. "@webassemblyjs/[email protected]":
  780. version "1.11.0"
  781. resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz"
  782. integrity sha512-Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ==
  783. dependencies:
  784. "@webassemblyjs/ast" "1.11.0"
  785. "@xtuc/long" "4.2.2"
  786. "@webpack-cli/configtest@^1.0.2":
  787. version "1.0.2"
  788. resolved "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.2.tgz"
  789. integrity sha512-3OBzV2fBGZ5TBfdW50cha1lHDVf9vlvRXnjpVbJBa20pSZQaSkMJZiwA8V2vD9ogyeXn8nU5s5A6mHyf5jhMzA==
  790. "@webpack-cli/info@^1.2.3":
  791. version "1.2.3"
  792. resolved "https://registry.npmjs.org/@webpack-cli/info/-/info-1.2.3.tgz"
  793. integrity sha512-lLek3/T7u40lTqzCGpC6CAbY6+vXhdhmwFRxZLMnRm6/sIF/7qMpT8MocXCRQfz0JAh63wpbXLMnsQ5162WS7Q==
  794. dependencies:
  795. envinfo "^7.7.3"
  796. "@webpack-cli/serve@^1.3.1":
  797. version "1.3.1"
  798. resolved "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.3.1.tgz"
  799. integrity sha512-0qXvpeYO6vaNoRBI52/UsbcaBydJCggoBBnIo/ovQQdn6fug0BgwsjorV1hVS7fMqGVTZGcVxv8334gjmbj5hw==
  800. "@xtuc/ieee754@^1.2.0":
  801. version "1.2.0"
  802. resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz"
  803. integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
  804. "@xtuc/[email protected]":
  805. version "4.2.2"
  806. resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz"
  807. integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
  808. acorn-jsx@^5.2.0:
  809. version "5.2.0"
  810. resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz"
  811. integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==
  812. acorn-jsx@^5.3.1:
  813. version "5.3.1"
  814. resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"
  815. integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
  816. [email protected]:
  817. version "8.1.0"
  818. resolved "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz"
  819. integrity sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==
  820. acorn@^7.4.0:
  821. version "7.4.0"
  822. resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.0.tgz"
  823. integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w==
  824. acorn@^8.0.4:
  825. version "8.0.4"
  826. resolved "https://registry.npmjs.org/acorn/-/acorn-8.0.4.tgz"
  827. integrity sha512-XNP0PqF1XD19ZlLKvB7cMmnZswW4C/03pRHgirB30uSJTaS3A3V1/P4sS3HPvFmjoriPCJQs+JDSbm4bL1TxGQ==
  828. aggregate-error@^3.0.0:
  829. version "3.0.1"
  830. resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz"
  831. integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==
  832. dependencies:
  833. clean-stack "^2.0.0"
  834. indent-string "^4.0.0"
  835. ajv-keywords@^3.4.1:
  836. version "3.4.1"
  837. resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz"
  838. integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
  839. ajv-keywords@^3.5.2:
  840. version "3.5.2"
  841. resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
  842. integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
  843. ajv@^6.10.0:
  844. version "6.12.0"
  845. resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz"
  846. integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==
  847. dependencies:
  848. fast-deep-equal "^3.1.1"
  849. fast-json-stable-stringify "^2.0.0"
  850. json-schema-traverse "^0.4.1"
  851. uri-js "^4.2.2"
  852. ajv@^6.12.2:
  853. version "6.12.3"
  854. resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz"
  855. integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==
  856. dependencies:
  857. fast-deep-equal "^3.1.1"
  858. fast-json-stable-stringify "^2.0.0"
  859. json-schema-traverse "^0.4.1"
  860. uri-js "^4.2.2"
  861. ajv@^6.12.4:
  862. version "6.12.4"
  863. resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz"
  864. integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==
  865. dependencies:
  866. fast-deep-equal "^3.1.1"
  867. fast-json-stable-stringify "^2.0.0"
  868. json-schema-traverse "^0.4.1"
  869. uri-js "^4.2.2"
  870. ajv@^6.12.5:
  871. version "6.12.6"
  872. resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
  873. integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
  874. dependencies:
  875. fast-deep-equal "^3.1.1"
  876. fast-json-stable-stringify "^2.0.0"
  877. json-schema-traverse "^0.4.1"
  878. uri-js "^4.2.2"
  879. [email protected], ansi-colors@^4.1.1:
  880. version "4.1.1"
  881. resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"
  882. integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
  883. ansi-colors@^3.2.1:
  884. version "3.2.4"
  885. resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz"
  886. integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
  887. ansi-regex@^3.0.0:
  888. version "3.0.0"
  889. resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"
  890. integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
  891. ansi-regex@^5.0.0:
  892. version "5.0.0"
  893. resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
  894. integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
  895. ansi-styles@^3.2.1:
  896. version "3.2.1"
  897. resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
  898. integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
  899. dependencies:
  900. color-convert "^1.9.0"
  901. ansi-styles@^4.0.0, ansi-styles@^4.1.0:
  902. version "4.2.1"
  903. resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz"
  904. integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
  905. dependencies:
  906. "@types/color-name" "^1.1.1"
  907. color-convert "^2.0.1"
  908. anymatch@~3.1.1:
  909. version "3.1.1"
  910. resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz"
  911. integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
  912. dependencies:
  913. normalize-path "^3.0.0"
  914. picomatch "^2.0.4"
  915. append-transform@^2.0.0:
  916. version "2.0.0"
  917. resolved "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz"
  918. integrity sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==
  919. dependencies:
  920. default-require-extensions "^3.0.0"
  921. archy@^1.0.0:
  922. version "1.0.0"
  923. resolved "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"
  924. integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=
  925. arg@^4.1.0:
  926. version "4.1.3"
  927. resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz"
  928. integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
  929. argparse@^1.0.7:
  930. version "1.0.10"
  931. resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
  932. integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
  933. dependencies:
  934. sprintf-js "~1.0.2"
  935. argparse@^2.0.1:
  936. version "2.0.1"
  937. resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
  938. integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
  939. array-differ@^3.0.0:
  940. version "3.0.0"
  941. resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz"
  942. integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==
  943. array-filter@^1.0.0:
  944. version "1.0.0"
  945. resolved "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz"
  946. integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=
  947. array-includes@^3.1.1:
  948. version "3.1.1"
  949. resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz"
  950. integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
  951. dependencies:
  952. define-properties "^1.1.3"
  953. es-abstract "^1.17.0"
  954. is-string "^1.0.5"
  955. array-union@^2.1.0:
  956. version "2.1.0"
  957. resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
  958. integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
  959. array.prototype.flat@^1.2.3:
  960. version "1.2.3"
  961. resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz"
  962. integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
  963. dependencies:
  964. define-properties "^1.1.3"
  965. es-abstract "^1.17.0-next.1"
  966. arrify@^2.0.1:
  967. version "2.0.1"
  968. resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz"
  969. integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
  970. [email protected]:
  971. version "2.0.0"
  972. resolved "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz"
  973. integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==
  974. dependencies:
  975. es6-object-assign "^1.1.0"
  976. is-nan "^1.2.1"
  977. object-is "^1.0.1"
  978. util "^0.12.0"
  979. assertion-error@^1.1.0:
  980. version "1.1.0"
  981. resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"
  982. integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==
  983. astral-regex@^2.0.0:
  984. version "2.0.0"
  985. resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"
  986. integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
  987. at-least-node@^1.0.0:
  988. version "1.0.0"
  989. resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz"
  990. integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
  991. available-typed-arrays@^1.0.0, available-typed-arrays@^1.0.2:
  992. version "1.0.2"
  993. resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz"
  994. integrity sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==
  995. dependencies:
  996. array-filter "^1.0.0"
  997. balanced-match@^1.0.0:
  998. version "1.0.0"
  999. resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"
  1000. integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
  1001. big.js@^5.2.2:
  1002. version "5.2.2"
  1003. resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
  1004. integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
  1005. binary-extensions@^2.0.0:
  1006. version "2.0.0"
  1007. resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz"
  1008. integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==
  1009. brace-expansion@^1.1.7:
  1010. version "1.1.11"
  1011. resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
  1012. integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
  1013. dependencies:
  1014. balanced-match "^1.0.0"
  1015. concat-map "0.0.1"
  1016. braces@^3.0.1, braces@~3.0.2:
  1017. version "3.0.2"
  1018. resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
  1019. integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
  1020. dependencies:
  1021. fill-range "^7.0.1"
  1022. [email protected]:
  1023. version "1.3.1"
  1024. resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz"
  1025. integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
  1026. browserslist@^4.14.5:
  1027. version "4.14.5"
  1028. resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.14.5.tgz"
  1029. integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA==
  1030. dependencies:
  1031. caniuse-lite "^1.0.30001135"
  1032. electron-to-chromium "^1.3.571"
  1033. escalade "^3.1.0"
  1034. node-releases "^1.1.61"
  1035. buffer-from@^1.0.0:
  1036. version "1.1.1"
  1037. resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"
  1038. integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
  1039. caching-transform@^4.0.0:
  1040. version "4.0.0"
  1041. resolved "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz"
  1042. integrity sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==
  1043. dependencies:
  1044. hasha "^5.0.0"
  1045. make-dir "^3.0.0"
  1046. package-hash "^4.0.0"
  1047. write-file-atomic "^3.0.0"
  1048. callsites@^3.0.0, callsites@^3.1.0:
  1049. version "3.1.0"
  1050. resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
  1051. integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
  1052. camelcase@^5.0.0, camelcase@^5.3.1:
  1053. version "5.3.1"
  1054. resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
  1055. integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
  1056. camelcase@^6.0.0:
  1057. version "6.1.0"
  1058. resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.1.0.tgz"
  1059. integrity sha512-WCMml9ivU60+8rEJgELlFp1gxFcEGxwYleE3bziHEDeqsqAWGHdimB7beBFGjLzVNgPGyDsfgXLQEYMpmIFnVQ==
  1060. caniuse-lite@^1.0.30001135:
  1061. version "1.0.30001147"
  1062. resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001147.tgz"
  1063. integrity sha512-CPyN875geYk46eIqPl5jlmotCr5YZC2KxIVfb4z0FrNfLxPM+MyodWD2irJGDG8vUUE1fmg3De9vt8uaC6Nf6w==
  1064. [email protected]:
  1065. version "2.0.3"
  1066. resolved "https://registry.yarnpkg.com/chai-exclude/-/chai-exclude-2.0.3.tgz#38c159a5e098971b795cafd492d48ae58d651a23"
  1067. integrity sha512-6VuTQX25rsh4hKPdLzsOtL20k9+tszksLQrLtsu6szTmSVJP9+gUkqYUsyM+xqCeGZKeRJCsamCMRUQJhWsQ+g==
  1068. dependencies:
  1069. fclone "^1.0.11"
  1070. [email protected]:
  1071. version "4.3.4"
  1072. resolved "https://registry.npmjs.org/chai/-/chai-4.3.4.tgz"
  1073. integrity sha512-yS5H68VYOCtN1cjfwumDSuzn/9c+yza4f3reKXlE5rUg7SFcCEy90gJvydNgOYtblyf4Zi6jIWRnXOgErta0KA==
  1074. dependencies:
  1075. assertion-error "^1.1.0"
  1076. check-error "^1.0.2"
  1077. deep-eql "^3.0.1"
  1078. get-func-name "^2.0.0"
  1079. pathval "^1.1.1"
  1080. type-detect "^4.0.5"
  1081. [email protected], chalk@^4.1.0:
  1082. version "4.1.0"
  1083. resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"
  1084. integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
  1085. dependencies:
  1086. ansi-styles "^4.1.0"
  1087. supports-color "^7.1.0"
  1088. chalk@^2.0.0:
  1089. version "2.4.2"
  1090. resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
  1091. integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
  1092. dependencies:
  1093. ansi-styles "^3.2.1"
  1094. escape-string-regexp "^1.0.5"
  1095. supports-color "^5.3.0"
  1096. chalk@^4.0.0:
  1097. version "4.0.0"
  1098. resolved "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz"
  1099. integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==
  1100. dependencies:
  1101. ansi-styles "^4.1.0"
  1102. supports-color "^7.1.0"
  1103. [email protected]:
  1104. version "1.1.7"
  1105. resolved "https://registry.npmjs.org/chance/-/chance-1.1.7.tgz"
  1106. integrity sha512-bua/2cZEfzS6qPm0vi3JEvGNbriDLcMj9lKxCQOjUcCJRcyjA7umP0zZm6bKWWlBN04vA0L99QGH/CZQawr0eg==
  1107. char-regex@^1.0.2:
  1108. version "1.0.2"
  1109. resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"
  1110. integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
  1111. [email protected]:
  1112. version "0.0.2"
  1113. resolved "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz"
  1114. integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=
  1115. check-error@^1.0.2:
  1116. version "1.0.2"
  1117. resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz"
  1118. integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=
  1119. [email protected]:
  1120. version "3.5.1"
  1121. resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"
  1122. integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
  1123. dependencies:
  1124. anymatch "~3.1.1"
  1125. braces "~3.0.2"
  1126. glob-parent "~5.1.0"
  1127. is-binary-path "~2.1.0"
  1128. is-glob "~4.0.1"
  1129. normalize-path "~3.0.0"
  1130. readdirp "~3.5.0"
  1131. optionalDependencies:
  1132. fsevents "~2.3.1"
  1133. chokidar@^3.4.2:
  1134. version "3.4.3"
  1135. resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"
  1136. integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==
  1137. dependencies:
  1138. anymatch "~3.1.1"
  1139. braces "~3.0.2"
  1140. glob-parent "~5.1.0"
  1141. is-binary-path "~2.1.0"
  1142. is-glob "~4.0.1"
  1143. normalize-path "~3.0.0"
  1144. readdirp "~3.5.0"
  1145. optionalDependencies:
  1146. fsevents "~2.1.2"
  1147. chrome-trace-event@^1.0.2:
  1148. version "1.0.2"
  1149. resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz"
  1150. integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
  1151. dependencies:
  1152. tslib "^1.9.0"
  1153. ci-info@^3.1.1:
  1154. version "3.1.1"
  1155. resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.1.1.tgz"
  1156. integrity sha512-kdRWLBIJwdsYJWYJFtAFFYxybguqeF91qpZaggjG5Nf8QKdizFG2hjqvaTXbxFIcYbSaD74KpAXv6BSm17DHEQ==
  1157. [email protected]:
  1158. version "0.13.1"
  1159. resolved "https://registry.npmjs.org/class-validator/-/class-validator-0.13.1.tgz"
  1160. integrity sha512-zWIeYFhUitvAHBwNhDdCRK09hWx+P0HUwFE8US8/CxFpMVzkUK8RJl7yOIE+BVu2lxyPNgeOaFv78tLE47jBIg==
  1161. dependencies:
  1162. "@types/validator" "^13.1.3"
  1163. libphonenumber-js "^1.9.7"
  1164. validator "^13.5.2"
  1165. clean-regexp@^1.0.0:
  1166. version "1.0.0"
  1167. resolved "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz"
  1168. integrity sha1-jffHquUf02h06PjQW5GAvBGj/tc=
  1169. dependencies:
  1170. escape-string-regexp "^1.0.5"
  1171. clean-stack@^2.0.0:
  1172. version "2.2.0"
  1173. resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"
  1174. integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
  1175. cliui@^6.0.0:
  1176. version "6.0.0"
  1177. resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"
  1178. integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
  1179. dependencies:
  1180. string-width "^4.2.0"
  1181. strip-ansi "^6.0.0"
  1182. wrap-ansi "^6.2.0"
  1183. cliui@^7.0.2:
  1184. version "7.0.4"
  1185. resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"
  1186. integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
  1187. dependencies:
  1188. string-width "^4.2.0"
  1189. strip-ansi "^6.0.0"
  1190. wrap-ansi "^7.0.0"
  1191. clone-deep@^4.0.1:
  1192. version "4.0.1"
  1193. resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz"
  1194. integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
  1195. dependencies:
  1196. is-plain-object "^2.0.4"
  1197. kind-of "^6.0.2"
  1198. shallow-clone "^3.0.0"
  1199. color-convert@^1.9.0:
  1200. version "1.9.3"
  1201. resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
  1202. integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
  1203. dependencies:
  1204. color-name "1.1.3"
  1205. color-convert@^2.0.1:
  1206. version "2.0.1"
  1207. resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
  1208. integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
  1209. dependencies:
  1210. color-name "~1.1.4"
  1211. [email protected]:
  1212. version "1.1.3"
  1213. resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
  1214. integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
  1215. color-name@~1.1.4:
  1216. version "1.1.4"
  1217. resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
  1218. integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
  1219. colorette@^1.2.1:
  1220. version "1.2.1"
  1221. resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz"
  1222. integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
  1223. [email protected]:
  1224. version "7.2.0"
  1225. resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"
  1226. integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
  1227. commander@^2.20.0:
  1228. version "2.20.3"
  1229. resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"
  1230. integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
  1231. commander@^7.0.0:
  1232. version "7.0.0"
  1233. resolved "https://registry.npmjs.org/commander/-/commander-7.0.0.tgz"
  1234. integrity sha512-ovx/7NkTrnPuIV8sqk/GjUIIM1+iUQeqA3ye2VNpq9sVoiZsooObWlQy+OPWGI17GDaEoybuAGJm6U8yC077BA==
  1235. [email protected]:
  1236. version "1.1.2"
  1237. resolved "https://registry.npmjs.org/comment-parser/-/comment-parser-1.1.2.tgz"
  1238. integrity sha512-AOdq0i8ghZudnYv8RUnHrhTgafUGs61Rdz9jemU5x2lnZwAWyOq7vySo626K59e1fVKH1xSRorJwPVRLSWOoAQ==
  1239. commondir@^1.0.1:
  1240. version "1.0.1"
  1241. resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
  1242. integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
  1243. [email protected]:
  1244. version "0.0.1"
  1245. resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
  1246. integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
  1247. concat-stream@^1.4.7:
  1248. version "1.6.2"
  1249. resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"
  1250. integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
  1251. dependencies:
  1252. buffer-from "^1.0.0"
  1253. inherits "^2.0.3"
  1254. readable-stream "^2.2.2"
  1255. typedarray "^0.0.6"
  1256. consola@^2.15.0:
  1257. version "2.15.0"
  1258. resolved "https://registry.npmjs.org/consola/-/consola-2.15.0.tgz"
  1259. integrity sha512-vlcSGgdYS26mPf7qNi+dCisbhiyDnrN1zaRbw3CSuc2wGOMEGGPsp46PdRG5gqXwgtJfjxDkxRNAgRPr1B77vQ==
  1260. contains-path@^0.1.0:
  1261. version "0.1.0"
  1262. resolved "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz"
  1263. integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
  1264. convert-source-map@^1.7.0:
  1265. version "1.7.0"
  1266. resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz"
  1267. integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
  1268. dependencies:
  1269. safe-buffer "~5.1.1"
  1270. core-util-is@~1.0.0:
  1271. version "1.0.2"
  1272. resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
  1273. integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
  1274. cosmiconfig@^6.0.0:
  1275. version "6.0.0"
  1276. resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz"
  1277. integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
  1278. dependencies:
  1279. "@types/parse-json" "^4.0.0"
  1280. import-fresh "^3.1.0"
  1281. parse-json "^5.0.0"
  1282. path-type "^4.0.0"
  1283. yaml "^1.7.2"
  1284. create-require@^1.1.0:
  1285. version "1.1.1"
  1286. resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz"
  1287. integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
  1288. [email protected]:
  1289. version "7.0.3"
  1290. resolved "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz"
  1291. integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==
  1292. dependencies:
  1293. cross-spawn "^7.0.1"
  1294. cross-spawn@^5.0.1:
  1295. version "5.1.0"
  1296. resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"
  1297. integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
  1298. dependencies:
  1299. lru-cache "^4.0.1"
  1300. shebang-command "^1.2.0"
  1301. which "^1.2.9"
  1302. cross-spawn@^7.0.0:
  1303. version "7.0.1"
  1304. resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz"
  1305. integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==
  1306. dependencies:
  1307. path-key "^3.1.0"
  1308. shebang-command "^2.0.0"
  1309. which "^2.0.1"
  1310. cross-spawn@^7.0.1, cross-spawn@^7.0.3:
  1311. version "7.0.3"
  1312. resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
  1313. integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
  1314. dependencies:
  1315. path-key "^3.1.0"
  1316. shebang-command "^2.0.0"
  1317. which "^2.0.1"
  1318. cross-spawn@^7.0.2:
  1319. version "7.0.2"
  1320. resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.2.tgz"
  1321. integrity sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw==
  1322. dependencies:
  1323. path-key "^3.1.0"
  1324. shebang-command "^2.0.0"
  1325. which "^2.0.1"
  1326. [email protected]:
  1327. version "0.0.2"
  1328. resolved "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz"
  1329. integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
  1330. [email protected], debug@^4.3.1:
  1331. version "4.3.1"
  1332. resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"
  1333. integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
  1334. dependencies:
  1335. ms "2.1.2"
  1336. debug@^2.6.9:
  1337. version "2.6.9"
  1338. resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
  1339. integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
  1340. dependencies:
  1341. ms "2.0.0"
  1342. debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
  1343. version "4.1.1"
  1344. resolved "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"
  1345. integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
  1346. dependencies:
  1347. ms "^2.1.1"
  1348. decamelize@^1.2.0:
  1349. version "1.2.0"
  1350. resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
  1351. integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
  1352. decamelize@^4.0.0:
  1353. version "4.0.0"
  1354. resolved "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz"
  1355. integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
  1356. deep-eql@^3.0.1:
  1357. version "3.0.1"
  1358. resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz"
  1359. integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==
  1360. dependencies:
  1361. type-detect "^4.0.0"
  1362. deep-is@^0.1.3, deep-is@~0.1.3:
  1363. version "0.1.3"
  1364. resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"
  1365. integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
  1366. deepmerge@^4.2.2:
  1367. version "4.2.2"
  1368. resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
  1369. integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
  1370. default-require-extensions@^3.0.0:
  1371. version "3.0.0"
  1372. resolved "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.0.tgz"
  1373. integrity sha512-ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg==
  1374. dependencies:
  1375. strip-bom "^4.0.0"
  1376. define-properties@^1.1.2, define-properties@^1.1.3:
  1377. version "1.1.3"
  1378. resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"
  1379. integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
  1380. dependencies:
  1381. object-keys "^1.0.12"
  1382. [email protected]:
  1383. version "5.0.0"
  1384. resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz"
  1385. integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
  1386. diff@^4.0.1, diff@^4.0.2:
  1387. version "4.0.2"
  1388. resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"
  1389. integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
  1390. dir-glob@^3.0.1:
  1391. version "3.0.1"
  1392. resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
  1393. integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
  1394. dependencies:
  1395. path-type "^4.0.0"
  1396. [email protected]:
  1397. version "1.5.0"
  1398. resolved "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz"
  1399. integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=
  1400. dependencies:
  1401. esutils "^2.0.2"
  1402. isarray "^1.0.0"
  1403. doctrine@^3.0.0:
  1404. version "3.0.0"
  1405. resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
  1406. integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
  1407. dependencies:
  1408. esutils "^2.0.2"
  1409. electron-to-chromium@^1.3.571:
  1410. version "1.3.578"
  1411. resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.578.tgz"
  1412. integrity sha512-z4gU6dA1CbBJsAErW5swTGAaU2TBzc2mPAonJb00zqW1rOraDo2zfBMDRvaz9cVic+0JEZiYbHWPw/fTaZlG2Q==
  1413. emoji-regex@^8.0.0:
  1414. version "8.0.0"
  1415. resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
  1416. integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
  1417. emojis-list@^3.0.0:
  1418. version "3.0.0"
  1419. resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz"
  1420. integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
  1421. enhanced-resolve@^4.0.0:
  1422. version "4.1.1"
  1423. resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz"
  1424. integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==
  1425. dependencies:
  1426. graceful-fs "^4.1.2"
  1427. memory-fs "^0.5.0"
  1428. tapable "^1.0.0"
  1429. enhanced-resolve@^5.7.0:
  1430. version "5.7.0"
  1431. resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.7.0.tgz"
  1432. integrity sha512-6njwt/NsZFUKhM6j9U8hzVyD4E4r0x7NQzhTCbcWOJ0IQjNSAoalWmb0AE51Wn+fwan5qVESWi7t2ToBxs9vrw==
  1433. dependencies:
  1434. graceful-fs "^4.2.4"
  1435. tapable "^2.2.0"
  1436. enquirer@^2.3.5:
  1437. version "2.3.5"
  1438. resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.5.tgz"
  1439. integrity sha512-BNT1C08P9XD0vNg3J475yIUG+mVdp9T6towYFHUv897X0KoHBjB1shyrNmhmtHWKP17iSWgo7Gqh7BBuzLZMSA==
  1440. dependencies:
  1441. ansi-colors "^3.2.1"
  1442. enquirer@^2.3.6:
  1443. version "2.3.6"
  1444. resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"
  1445. integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
  1446. dependencies:
  1447. ansi-colors "^4.1.1"
  1448. envinfo@^7.7.3:
  1449. version "7.7.4"
  1450. resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.7.4.tgz"
  1451. integrity sha512-TQXTYFVVwwluWSFis6K2XKxgrD22jEv0FTuLCQI+OjH7rn93+iY0fSSFM5lrSxFY+H1+B0/cvvlamr3UsBivdQ==
  1452. errno@^0.1.3:
  1453. version "0.1.7"
  1454. resolved "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz"
  1455. integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==
  1456. dependencies:
  1457. prr "~1.0.1"
  1458. error-ex@^1.2.0, error-ex@^1.3.1:
  1459. version "1.3.2"
  1460. resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
  1461. integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
  1462. dependencies:
  1463. is-arrayish "^0.2.1"
  1464. es-abstract@^1.17.0, es-abstract@^1.17.0-next.1:
  1465. version "1.17.4"
  1466. resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz"
  1467. integrity sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==
  1468. dependencies:
  1469. es-to-primitive "^1.2.1"
  1470. function-bind "^1.1.1"
  1471. has "^1.0.3"
  1472. has-symbols "^1.0.1"
  1473. is-callable "^1.1.5"
  1474. is-regex "^1.0.5"
  1475. object-inspect "^1.7.0"
  1476. object-keys "^1.1.1"
  1477. object.assign "^4.1.0"
  1478. string.prototype.trimleft "^2.1.1"
  1479. string.prototype.trimright "^2.1.1"
  1480. es-abstract@^1.17.4:
  1481. version "1.17.5"
  1482. resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz"
  1483. integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==
  1484. dependencies:
  1485. es-to-primitive "^1.2.1"
  1486. function-bind "^1.1.1"
  1487. has "^1.0.3"
  1488. has-symbols "^1.0.1"
  1489. is-callable "^1.1.5"
  1490. is-regex "^1.0.5"
  1491. object-inspect "^1.7.0"
  1492. object-keys "^1.1.1"
  1493. object.assign "^4.1.0"
  1494. string.prototype.trimleft "^2.1.1"
  1495. string.prototype.trimright "^2.1.1"
  1496. es-abstract@^1.17.5:
  1497. version "1.17.7"
  1498. resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz"
  1499. integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==
  1500. dependencies:
  1501. es-to-primitive "^1.2.1"
  1502. function-bind "^1.1.1"
  1503. has "^1.0.3"
  1504. has-symbols "^1.0.1"
  1505. is-callable "^1.2.2"
  1506. is-regex "^1.1.1"
  1507. object-inspect "^1.8.0"
  1508. object-keys "^1.1.1"
  1509. object.assign "^4.1.1"
  1510. string.prototype.trimend "^1.0.1"
  1511. string.prototype.trimstart "^1.0.1"
  1512. es-abstract@^1.18.0-next.0, es-abstract@^1.18.0-next.1:
  1513. version "1.18.0-next.1"
  1514. resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz"
  1515. integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==
  1516. dependencies:
  1517. es-to-primitive "^1.2.1"
  1518. function-bind "^1.1.1"
  1519. has "^1.0.3"
  1520. has-symbols "^1.0.1"
  1521. is-callable "^1.2.2"
  1522. is-negative-zero "^2.0.0"
  1523. is-regex "^1.1.1"
  1524. object-inspect "^1.8.0"
  1525. object-keys "^1.1.1"
  1526. object.assign "^4.1.1"
  1527. string.prototype.trimend "^1.0.1"
  1528. string.prototype.trimstart "^1.0.1"
  1529. es-module-lexer@^0.4.0:
  1530. version "0.4.0"
  1531. resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.4.0.tgz"
  1532. integrity sha512-iuEGihqqhKWFgh72Q/Jtch7V2t/ft8w8IPP2aEN8ArYKO+IWyo6hsi96hCdgyeEDQIV3InhYQ9BlwUFPGXrbEQ==
  1533. es-to-primitive@^1.2.1:
  1534. version "1.2.1"
  1535. resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
  1536. integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
  1537. dependencies:
  1538. is-callable "^1.1.4"
  1539. is-date-object "^1.0.1"
  1540. is-symbol "^1.0.2"
  1541. es6-error@^4.0.1:
  1542. version "4.1.1"
  1543. resolved "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz"
  1544. integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==
  1545. es6-object-assign@^1.1.0:
  1546. version "1.1.0"
  1547. resolved "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz"
  1548. integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=
  1549. escalade@^3.1.0:
  1550. version "3.1.0"
  1551. resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.0.tgz"
  1552. integrity sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig==
  1553. escalade@^3.1.1:
  1554. version "3.1.1"
  1555. resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
  1556. integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
  1557. [email protected]:
  1558. version "4.0.0"
  1559. resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
  1560. integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
  1561. escape-string-regexp@^1.0.5:
  1562. version "1.0.5"
  1563. resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
  1564. integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
  1565. eslint-import-resolver-node@^0.3.4:
  1566. version "0.3.4"
  1567. resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz"
  1568. integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==
  1569. dependencies:
  1570. debug "^2.6.9"
  1571. resolve "^1.13.1"
  1572. eslint-module-utils@^2.6.0:
  1573. version "2.6.0"
  1574. resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz"
  1575. integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==
  1576. dependencies:
  1577. debug "^2.6.9"
  1578. pkg-dir "^2.0.0"
  1579. [email protected]:
  1580. version "2.22.1"
  1581. resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz"
  1582. integrity sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==
  1583. dependencies:
  1584. array-includes "^3.1.1"
  1585. array.prototype.flat "^1.2.3"
  1586. contains-path "^0.1.0"
  1587. debug "^2.6.9"
  1588. doctrine "1.5.0"
  1589. eslint-import-resolver-node "^0.3.4"
  1590. eslint-module-utils "^2.6.0"
  1591. has "^1.0.3"
  1592. minimatch "^3.0.4"
  1593. object.values "^1.1.1"
  1594. read-pkg-up "^2.0.0"
  1595. resolve "^1.17.0"
  1596. tsconfig-paths "^3.9.0"
  1597. [email protected]:
  1598. version "32.3.0"
  1599. resolved "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.0.tgz"
  1600. integrity sha512-zyx7kajDK+tqS1bHuY5sapkad8P8KT0vdd/lE55j47VPG2MeenSYuIY/M/Pvmzq5g0+3JB+P3BJGUXmHxtuKPQ==
  1601. dependencies:
  1602. comment-parser "1.1.2"
  1603. debug "^4.3.1"
  1604. jsdoctypeparser "^9.0.0"
  1605. lodash "^4.17.20"
  1606. regextras "^0.7.1"
  1607. semver "^7.3.4"
  1608. spdx-expression-parse "^3.0.1"
  1609. [email protected]:
  1610. version "1.0.2"
  1611. resolved "https://registry.npmjs.org/eslint-plugin-no-null/-/eslint-plugin-no-null-1.0.2.tgz"
  1612. integrity sha1-EjaoEjkTkKGHetQAfCbnRTQclR8=
  1613. [email protected]:
  1614. version "1.2.3"
  1615. resolved "https://registry.npmjs.org/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.3.tgz"
  1616. integrity sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==
  1617. [email protected]:
  1618. version "29.0.0"
  1619. resolved "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-29.0.0.tgz"
  1620. integrity sha512-R9jGLKb2p6LuOixviByGlH2mkfY72EBELXAPeUufveebN0M2Woa7B7dUO3gN2xPn/+eGjrIm4I2u7dDtr9G4iA==
  1621. dependencies:
  1622. ci-info "^3.1.1"
  1623. clean-regexp "^1.0.0"
  1624. eslint-template-visitor "^2.3.2"
  1625. eslint-utils "^2.1.0"
  1626. eslint-visitor-keys "^2.0.0"
  1627. import-modules "^2.1.0"
  1628. lodash "^4.17.20"
  1629. pluralize "^8.0.0"
  1630. read-pkg-up "^7.0.1"
  1631. regexp-tree "^0.1.23"
  1632. reserved-words "^0.1.2"
  1633. safe-regex "^2.1.1"
  1634. semver "^7.3.4"
  1635. [email protected]:
  1636. version "5.1.0"
  1637. resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.0.tgz"
  1638. integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w==
  1639. dependencies:
  1640. esrecurse "^4.1.0"
  1641. estraverse "^4.1.1"
  1642. [email protected], eslint-scope@^5.0.0, eslint-scope@^5.1.1:
  1643. version "5.1.1"
  1644. resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
  1645. integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
  1646. dependencies:
  1647. esrecurse "^4.3.0"
  1648. estraverse "^4.1.1"
  1649. eslint-template-visitor@^2.3.2:
  1650. version "2.3.2"
  1651. resolved "https://registry.npmjs.org/eslint-template-visitor/-/eslint-template-visitor-2.3.2.tgz"
  1652. integrity sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA==
  1653. dependencies:
  1654. "@babel/core" "^7.12.16"
  1655. "@babel/eslint-parser" "^7.12.16"
  1656. eslint-visitor-keys "^2.0.0"
  1657. esquery "^1.3.1"
  1658. multimap "^1.1.0"
  1659. eslint-utils@^2.0.0, eslint-utils@^2.1.0:
  1660. version "2.1.0"
  1661. resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"
  1662. integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
  1663. dependencies:
  1664. eslint-visitor-keys "^1.1.0"
  1665. eslint-visitor-keys@^1.1.0:
  1666. version "1.1.0"
  1667. resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz"
  1668. integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
  1669. eslint-visitor-keys@^1.3.0:
  1670. version "1.3.0"
  1671. resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
  1672. integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
  1673. eslint-visitor-keys@^2.0.0:
  1674. version "2.0.0"
  1675. resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz"
  1676. integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
  1677. [email protected]:
  1678. version "7.23.0"
  1679. resolved "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz"
  1680. integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==
  1681. dependencies:
  1682. "@babel/code-frame" "7.12.11"
  1683. "@eslint/eslintrc" "^0.4.0"
  1684. ajv "^6.10.0"
  1685. chalk "^4.0.0"
  1686. cross-spawn "^7.0.2"
  1687. debug "^4.0.1"
  1688. doctrine "^3.0.0"
  1689. enquirer "^2.3.5"
  1690. eslint-scope "^5.1.1"
  1691. eslint-utils "^2.1.0"
  1692. eslint-visitor-keys "^2.0.0"
  1693. espree "^7.3.1"
  1694. esquery "^1.4.0"
  1695. esutils "^2.0.2"
  1696. file-entry-cache "^6.0.1"
  1697. functional-red-black-tree "^1.0.1"
  1698. glob-parent "^5.0.0"
  1699. globals "^13.6.0"
  1700. ignore "^4.0.6"
  1701. import-fresh "^3.0.0"
  1702. imurmurhash "^0.1.4"
  1703. is-glob "^4.0.0"
  1704. js-yaml "^3.13.1"
  1705. json-stable-stringify-without-jsonify "^1.0.1"
  1706. levn "^0.4.1"
  1707. lodash "^4.17.21"
  1708. minimatch "^3.0.4"
  1709. natural-compare "^1.4.0"
  1710. optionator "^0.9.1"
  1711. progress "^2.0.0"
  1712. regexpp "^3.1.0"
  1713. semver "^7.2.1"
  1714. strip-ansi "^6.0.0"
  1715. strip-json-comments "^3.1.0"
  1716. table "^6.0.4"
  1717. text-table "^0.2.0"
  1718. v8-compile-cache "^2.0.3"
  1719. esm@^3.2.25:
  1720. version "3.2.25"
  1721. resolved "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz"
  1722. integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
  1723. espree@^7.3.0:
  1724. version "7.3.0"
  1725. resolved "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz"
  1726. integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
  1727. dependencies:
  1728. acorn "^7.4.0"
  1729. acorn-jsx "^5.2.0"
  1730. eslint-visitor-keys "^1.3.0"
  1731. espree@^7.3.1:
  1732. version "7.3.1"
  1733. resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"
  1734. integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
  1735. dependencies:
  1736. acorn "^7.4.0"
  1737. acorn-jsx "^5.3.1"
  1738. eslint-visitor-keys "^1.3.0"
  1739. esprima@^4.0.0, esprima@^4.0.1:
  1740. version "4.0.1"
  1741. resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
  1742. integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
  1743. esquery@^1.3.1:
  1744. version "1.3.1"
  1745. resolved "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz"
  1746. integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
  1747. dependencies:
  1748. estraverse "^5.1.0"
  1749. esquery@^1.4.0:
  1750. version "1.4.0"
  1751. resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
  1752. integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
  1753. dependencies:
  1754. estraverse "^5.1.0"
  1755. esrecurse@^4.1.0, esrecurse@^4.3.0:
  1756. version "4.3.0"
  1757. resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
  1758. integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
  1759. dependencies:
  1760. estraverse "^5.2.0"
  1761. [email protected], estraverse@^5.2.0:
  1762. version "5.2.0"
  1763. resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"
  1764. integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
  1765. estraverse@^4.1.1:
  1766. version "4.3.0"
  1767. resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
  1768. integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
  1769. estraverse@^5.1.0:
  1770. version "5.1.0"
  1771. resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.1.0.tgz"
  1772. integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw==
  1773. esutils@^2.0.2:
  1774. version "2.0.3"
  1775. resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
  1776. integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
  1777. events@^3.2.0:
  1778. version "3.2.0"
  1779. resolved "https://registry.npmjs.org/events/-/events-3.2.0.tgz"
  1780. integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==
  1781. execa@^5.0.0:
  1782. version "5.0.0"
  1783. resolved "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz"
  1784. integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==
  1785. dependencies:
  1786. cross-spawn "^7.0.3"
  1787. get-stream "^6.0.0"
  1788. human-signals "^2.1.0"
  1789. is-stream "^2.0.0"
  1790. merge-stream "^2.0.0"
  1791. npm-run-path "^4.0.1"
  1792. onetime "^5.1.2"
  1793. signal-exit "^3.0.3"
  1794. strip-final-newline "^2.0.0"
  1795. [email protected]:
  1796. version "3.1.3"
  1797. resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
  1798. integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
  1799. fast-deep-equal@^3.1.1:
  1800. version "3.1.1"
  1801. resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"
  1802. integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
  1803. fast-glob@^3.1.1:
  1804. version "3.2.5"
  1805. resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz"
  1806. integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==
  1807. dependencies:
  1808. "@nodelib/fs.stat" "^2.0.2"
  1809. "@nodelib/fs.walk" "^1.2.3"
  1810. glob-parent "^5.1.0"
  1811. merge2 "^1.3.0"
  1812. micromatch "^4.0.2"
  1813. picomatch "^2.2.1"
  1814. fast-json-stable-stringify@^2.0.0:
  1815. version "2.1.0"
  1816. resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
  1817. integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
  1818. fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
  1819. version "2.0.6"
  1820. resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
  1821. integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
  1822. fastest-levenshtein@^1.0.12:
  1823. version "1.0.12"
  1824. resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz"
  1825. integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==
  1826. fastq@^1.6.0:
  1827. version "1.11.0"
  1828. resolved "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"
  1829. integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
  1830. dependencies:
  1831. reusify "^1.0.4"
  1832. fclone@^1.0.11:
  1833. version "1.0.11"
  1834. resolved "https://registry.npmjs.org/fclone/-/fclone-1.0.11.tgz"
  1835. integrity sha1-EOhdo4v+p/xZk0HClu4ddyZu5kA=
  1836. file-entry-cache@^6.0.1:
  1837. version "6.0.1"
  1838. resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
  1839. integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
  1840. dependencies:
  1841. flat-cache "^3.0.4"
  1842. fill-range@^7.0.1:
  1843. version "7.0.1"
  1844. resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
  1845. integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
  1846. dependencies:
  1847. to-regex-range "^5.0.1"
  1848. find-cache-dir@^3.2.0:
  1849. version "3.3.1"
  1850. resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz"
  1851. integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
  1852. dependencies:
  1853. commondir "^1.0.1"
  1854. make-dir "^3.0.2"
  1855. pkg-dir "^4.1.0"
  1856. [email protected]:
  1857. version "5.0.0"
  1858. resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
  1859. integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
  1860. dependencies:
  1861. locate-path "^6.0.0"
  1862. path-exists "^4.0.0"
  1863. find-up@^2.0.0, find-up@^2.1.0:
  1864. version "2.1.0"
  1865. resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"
  1866. integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
  1867. dependencies:
  1868. locate-path "^2.0.0"
  1869. find-up@^4.0.0, find-up@^4.1.0:
  1870. version "4.1.0"
  1871. resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
  1872. integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
  1873. dependencies:
  1874. locate-path "^5.0.0"
  1875. path-exists "^4.0.0"
  1876. flat-cache@^3.0.4:
  1877. version "3.0.4"
  1878. resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"
  1879. integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
  1880. dependencies:
  1881. flatted "^3.1.0"
  1882. rimraf "^3.0.2"
  1883. flat@^5.0.2:
  1884. version "5.0.2"
  1885. resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"
  1886. integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
  1887. flatted@^3.1.0:
  1888. version "3.1.0"
  1889. resolved "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz"
  1890. integrity sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==
  1891. foreach@^2.0.5:
  1892. version "2.0.5"
  1893. resolved "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"
  1894. integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k=
  1895. foreground-child@^2.0.0:
  1896. version "2.0.0"
  1897. resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz"
  1898. integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==
  1899. dependencies:
  1900. cross-spawn "^7.0.0"
  1901. signal-exit "^3.0.2"
  1902. [email protected]:
  1903. version "3.0.0"
  1904. resolved "https://registry.npmjs.org/fork-ts-checker-notifier-webpack-plugin/-/fork-ts-checker-notifier-webpack-plugin-3.0.0.tgz"
  1905. integrity sha512-jTO+/Dz+7zK/2Cu+ujeBMKx01657+BkefH2b+i1c4iH/tByT0+MrcSzj56975XQQ3zaMiBvNH9sRXe7Vi53weA==
  1906. dependencies:
  1907. node-notifier "^6.0.0"
  1908. [email protected]:
  1909. version "6.2.0"
  1910. resolved "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.2.0.tgz"
  1911. integrity sha512-DTNbOhq6lRdjYprukX54JMeYJgQ0zMow+R5BMLwWxEX2NAXthIkwnV8DBmsWjwNLSUItKZM4TCCJbtgrtKBu2Q==
  1912. dependencies:
  1913. "@babel/code-frame" "^7.8.3"
  1914. "@types/json-schema" "^7.0.5"
  1915. chalk "^4.1.0"
  1916. chokidar "^3.4.2"
  1917. cosmiconfig "^6.0.0"
  1918. deepmerge "^4.2.2"
  1919. fs-extra "^9.0.0"
  1920. memfs "^3.1.2"
  1921. minimatch "^3.0.4"
  1922. schema-utils "2.7.0"
  1923. semver "^7.3.2"
  1924. tapable "^1.0.0"
  1925. fromentries@^1.2.0:
  1926. version "1.2.0"
  1927. resolved "https://registry.npmjs.org/fromentries/-/fromentries-1.2.0.tgz"
  1928. integrity sha512-33X7H/wdfO99GdRLLgkjUrD4geAFdq/Uv0kl3HD4da6HDixd2GUg8Mw7dahLCV9r/EARkmtYBB6Tch4EEokFTQ==
  1929. fs-extra@^9.0.0:
  1930. version "9.0.1"
  1931. resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz"
  1932. integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==
  1933. dependencies:
  1934. at-least-node "^1.0.0"
  1935. graceful-fs "^4.2.0"
  1936. jsonfile "^6.0.1"
  1937. universalify "^1.0.0"
  1938. [email protected]:
  1939. version "1.0.1"
  1940. resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.1.tgz"
  1941. integrity sha512-fcSa+wyTqZa46iWweI7/ZiUfegOZl0SG8+dltIwFXo7+zYU9J9kpS3NB6pZcSlJdhvIwp81Adx2XhZorncxiaA==
  1942. fs.realpath@^1.0.0:
  1943. version "1.0.0"
  1944. resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
  1945. integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
  1946. fsevents@~2.1.2:
  1947. version "2.1.3"
  1948. resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz"
  1949. integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
  1950. fsevents@~2.3.1:
  1951. version "2.3.2"
  1952. resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
  1953. integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
  1954. function-bind@^1.1.1:
  1955. version "1.1.1"
  1956. resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
  1957. integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
  1958. functional-red-black-tree@^1.0.1:
  1959. version "1.0.1"
  1960. resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
  1961. integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
  1962. gensync@^1.0.0-beta.1:
  1963. version "1.0.0-beta.1"
  1964. resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz"
  1965. integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
  1966. gensync@^1.0.0-beta.2:
  1967. version "1.0.0-beta.2"
  1968. resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
  1969. integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
  1970. get-caller-file@^2.0.1, get-caller-file@^2.0.5:
  1971. version "2.0.5"
  1972. resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
  1973. integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
  1974. get-func-name@^2.0.0:
  1975. version "2.0.0"
  1976. resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz"
  1977. integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=
  1978. get-package-type@^0.1.0:
  1979. version "0.1.0"
  1980. resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"
  1981. integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
  1982. get-stream@^6.0.0:
  1983. version "6.0.0"
  1984. resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz"
  1985. integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==
  1986. glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
  1987. version "5.1.1"
  1988. resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"
  1989. integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
  1990. dependencies:
  1991. is-glob "^4.0.1"
  1992. glob-to-regexp@^0.4.1:
  1993. version "0.4.1"
  1994. resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"
  1995. integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
  1996. [email protected], glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
  1997. version "7.1.6"
  1998. resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"
  1999. integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
  2000. dependencies:
  2001. fs.realpath "^1.0.0"
  2002. inflight "^1.0.4"
  2003. inherits "2"
  2004. minimatch "^3.0.4"
  2005. once "^1.3.0"
  2006. path-is-absolute "^1.0.0"
  2007. globals@^11.1.0:
  2008. version "11.12.0"
  2009. resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
  2010. integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
  2011. globals@^12.1.0:
  2012. version "12.4.0"
  2013. resolved "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"
  2014. integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
  2015. dependencies:
  2016. type-fest "^0.8.1"
  2017. globals@^13.6.0:
  2018. version "13.6.0"
  2019. resolved "https://registry.npmjs.org/globals/-/globals-13.6.0.tgz"
  2020. integrity sha512-YFKCX0SiPg7l5oKYCJ2zZGxcXprVXHcSnVuvzrT3oSENQonVLqM5pf9fN5dLGZGyCjhw8TN8Btwe/jKnZ0pjvQ==
  2021. dependencies:
  2022. type-fest "^0.20.2"
  2023. globby@^11.0.1:
  2024. version "11.0.3"
  2025. resolved "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"
  2026. integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
  2027. dependencies:
  2028. array-union "^2.1.0"
  2029. dir-glob "^3.0.1"
  2030. fast-glob "^3.1.1"
  2031. ignore "^5.1.4"
  2032. merge2 "^1.3.0"
  2033. slash "^3.0.0"
  2034. graceful-fs@^4.1.15, graceful-fs@^4.1.2:
  2035. version "4.2.3"
  2036. resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz"
  2037. integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
  2038. graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4:
  2039. version "4.2.4"
  2040. resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"
  2041. integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
  2042. [email protected]:
  2043. version "1.10.5"
  2044. resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"
  2045. integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
  2046. growly@^1.3.0:
  2047. version "1.3.0"
  2048. resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz"
  2049. integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
  2050. has-flag@^3.0.0:
  2051. version "3.0.0"
  2052. resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
  2053. integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
  2054. has-flag@^4.0.0:
  2055. version "4.0.0"
  2056. resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
  2057. integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
  2058. has-symbols@^1.0.0, has-symbols@^1.0.1:
  2059. version "1.0.1"
  2060. resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz"
  2061. integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
  2062. has@^1.0.3:
  2063. version "1.0.3"
  2064. resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
  2065. integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
  2066. dependencies:
  2067. function-bind "^1.1.1"
  2068. hasha@^5.0.0:
  2069. version "5.2.0"
  2070. resolved "https://registry.npmjs.org/hasha/-/hasha-5.2.0.tgz"
  2071. integrity sha512-2W+jKdQbAdSIrggA8Q35Br8qKadTrqCTC8+XZvBWepKDK6m9XkX6Iz1a2yh2KP01kzAR/dpuMeUnocoLYDcskw==
  2072. dependencies:
  2073. is-stream "^2.0.0"
  2074. type-fest "^0.8.0"
  2075. [email protected]:
  2076. version "1.2.0"
  2077. resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz"
  2078. integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
  2079. hosted-git-info@^2.1.4:
  2080. version "2.8.8"
  2081. resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz"
  2082. integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
  2083. html-escaper@^2.0.0:
  2084. version "2.0.1"
  2085. resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.1.tgz"
  2086. integrity sha512-hNX23TjWwD3q56HpWjUHOKj1+4KKlnjv9PcmBUYKVpga+2cnb9nDx/B1o0yO4n+RZXZdiNxzx6B24C9aNMTkkQ==
  2087. human-signals@^2.1.0:
  2088. version "2.1.0"
  2089. resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"
  2090. integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
  2091. ignore@^4.0.6:
  2092. version "4.0.6"
  2093. resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"
  2094. integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
  2095. ignore@^5.1.4:
  2096. version "5.1.8"
  2097. resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz"
  2098. integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
  2099. import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
  2100. version "3.2.1"
  2101. resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz"
  2102. integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
  2103. dependencies:
  2104. parent-module "^1.0.0"
  2105. resolve-from "^4.0.0"
  2106. import-local@^3.0.2:
  2107. version "3.0.2"
  2108. resolved "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz"
  2109. integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
  2110. dependencies:
  2111. pkg-dir "^4.2.0"
  2112. resolve-cwd "^3.0.0"
  2113. import-modules@^2.1.0:
  2114. version "2.1.0"
  2115. resolved "https://registry.npmjs.org/import-modules/-/import-modules-2.1.0.tgz"
  2116. integrity sha512-8HEWcnkbGpovH9yInoisxaSoIg9Brbul+Ju3Kqe2UsYDUBJD/iQjSgEj0zPcTDPKfPp2fs5xlv1i+JSye/m1/A==
  2117. imurmurhash@^0.1.4:
  2118. version "0.1.4"
  2119. resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
  2120. integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
  2121. indent-string@^4.0.0:
  2122. version "4.0.0"
  2123. resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"
  2124. integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
  2125. inflight@^1.0.4:
  2126. version "1.0.6"
  2127. resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
  2128. integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
  2129. dependencies:
  2130. once "^1.3.0"
  2131. wrappy "1"
  2132. inherits@2, inherits@^2.0.3, inherits@~2.0.3:
  2133. version "2.0.4"
  2134. resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
  2135. integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
  2136. interpret@^2.2.0:
  2137. version "2.2.0"
  2138. resolved "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz"
  2139. integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
  2140. [email protected]:
  2141. version "5.0.5"
  2142. resolved "https://registry.npmjs.org/inversify/-/inversify-5.0.5.tgz"
  2143. integrity sha512-60QsfPz8NAU/GZqXu8hJ+BhNf/C/c+Hp0eDc6XMIJTxBiP36AQyyQKpBkOVTLWBFDQWYVHpbbEuIsHu9dLuJDA==
  2144. is-arguments@^1.0.4:
  2145. version "1.0.4"
  2146. resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz"
  2147. integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==
  2148. is-arrayish@^0.2.1:
  2149. version "0.2.1"
  2150. resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
  2151. integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
  2152. is-binary-path@~2.1.0:
  2153. version "2.1.0"
  2154. resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
  2155. integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
  2156. dependencies:
  2157. binary-extensions "^2.0.0"
  2158. is-buffer@~1.1.6:
  2159. version "1.1.6"
  2160. resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
  2161. integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
  2162. is-callable@^1.1.4, is-callable@^1.1.5:
  2163. version "1.1.5"
  2164. resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz"
  2165. integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
  2166. is-callable@^1.2.2:
  2167. version "1.2.2"
  2168. resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz"
  2169. integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==
  2170. is-date-object@^1.0.1:
  2171. version "1.0.2"
  2172. resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz"
  2173. integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
  2174. is-extglob@^2.1.1:
  2175. version "2.1.1"
  2176. resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
  2177. integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
  2178. is-fullwidth-code-point@^2.0.0:
  2179. version "2.0.0"
  2180. resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
  2181. integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
  2182. is-fullwidth-code-point@^3.0.0:
  2183. version "3.0.0"
  2184. resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
  2185. integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
  2186. is-generator-function@^1.0.7:
  2187. version "1.0.7"
  2188. resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.7.tgz"
  2189. integrity sha512-YZc5EwyO4f2kWCax7oegfuSr9mFz1ZvieNYBEjmukLxgXfBUbxAWGVF7GZf0zidYtoBl3WvC07YK0wT76a+Rtw==
  2190. is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
  2191. version "4.0.1"
  2192. resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"
  2193. integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
  2194. dependencies:
  2195. is-extglob "^2.1.1"
  2196. is-nan@^1.2.1:
  2197. version "1.3.0"
  2198. resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.0.tgz"
  2199. integrity sha512-z7bbREymOqt2CCaZVly8aC4ML3Xhfi0ekuOnjO2L8vKdl+CttdVoGZQhd4adMFAsxQ5VeRVwORs4tU8RH+HFtQ==
  2200. dependencies:
  2201. define-properties "^1.1.3"
  2202. is-negative-zero@^2.0.0:
  2203. version "2.0.0"
  2204. resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz"
  2205. integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=
  2206. is-number@^7.0.0:
  2207. version "7.0.0"
  2208. resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
  2209. integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
  2210. is-observable@^1.1.0:
  2211. version "1.1.0"
  2212. resolved "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz"
  2213. integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==
  2214. dependencies:
  2215. symbol-observable "^1.1.0"
  2216. is-plain-obj@^2.1.0:
  2217. version "2.1.0"
  2218. resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz"
  2219. integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
  2220. is-plain-object@^2.0.4:
  2221. version "2.0.4"
  2222. resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
  2223. integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
  2224. dependencies:
  2225. isobject "^3.0.1"
  2226. is-regex@^1.0.5:
  2227. version "1.0.5"
  2228. resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz"
  2229. integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
  2230. dependencies:
  2231. has "^1.0.3"
  2232. is-regex@^1.1.1:
  2233. version "1.1.1"
  2234. resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz"
  2235. integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
  2236. dependencies:
  2237. has-symbols "^1.0.1"
  2238. is-stream@^2.0.0:
  2239. version "2.0.0"
  2240. resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"
  2241. integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
  2242. is-string@^1.0.5:
  2243. version "1.0.5"
  2244. resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz"
  2245. integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
  2246. is-symbol@^1.0.2:
  2247. version "1.0.3"
  2248. resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz"
  2249. integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
  2250. dependencies:
  2251. has-symbols "^1.0.1"
  2252. is-typed-array@^1.1.3:
  2253. version "1.1.3"
  2254. resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.3.tgz"
  2255. integrity sha512-BSYUBOK/HJibQ30wWkWold5txYwMUXQct9YHAQJr8fSwvZoiglcqB0pd7vEN23+Tsi9IUEjztdOSzl4qLVYGTQ==
  2256. dependencies:
  2257. available-typed-arrays "^1.0.0"
  2258. es-abstract "^1.17.4"
  2259. foreach "^2.0.5"
  2260. has-symbols "^1.0.1"
  2261. is-typedarray@^1.0.0:
  2262. version "1.0.0"
  2263. resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
  2264. integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
  2265. is-windows@^1.0.2:
  2266. version "1.0.2"
  2267. resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
  2268. integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
  2269. is-wsl@^2.1.1:
  2270. version "2.1.1"
  2271. resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.1.1.tgz"
  2272. integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==
  2273. [email protected]:
  2274. version "0.0.1"
  2275. resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
  2276. integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
  2277. isarray@^1.0.0, isarray@~1.0.0:
  2278. version "1.0.0"
  2279. resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
  2280. integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
  2281. isexe@^2.0.0:
  2282. version "2.0.0"
  2283. resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
  2284. integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
  2285. isobject@^3.0.1:
  2286. version "3.0.1"
  2287. resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
  2288. integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
  2289. istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.0.0-alpha.1:
  2290. version "3.0.0"
  2291. resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz"
  2292. integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
  2293. istanbul-lib-hook@^3.0.0:
  2294. version "3.0.0"
  2295. resolved "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz"
  2296. integrity sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==
  2297. dependencies:
  2298. append-transform "^2.0.0"
  2299. istanbul-lib-instrument@^4.0.0:
  2300. version "4.0.1"
  2301. resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz"
  2302. integrity sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg==
  2303. dependencies:
  2304. "@babel/core" "^7.7.5"
  2305. "@babel/parser" "^7.7.5"
  2306. "@babel/template" "^7.7.4"
  2307. "@babel/traverse" "^7.7.4"
  2308. "@istanbuljs/schema" "^0.1.2"
  2309. istanbul-lib-coverage "^3.0.0"
  2310. semver "^6.3.0"
  2311. istanbul-lib-processinfo@^2.0.2:
  2312. version "2.0.2"
  2313. resolved "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.2.tgz"
  2314. integrity sha512-kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw==
  2315. dependencies:
  2316. archy "^1.0.0"
  2317. cross-spawn "^7.0.0"
  2318. istanbul-lib-coverage "^3.0.0-alpha.1"
  2319. make-dir "^3.0.0"
  2320. p-map "^3.0.0"
  2321. rimraf "^3.0.0"
  2322. uuid "^3.3.3"
  2323. istanbul-lib-report@^3.0.0:
  2324. version "3.0.0"
  2325. resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
  2326. integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
  2327. dependencies:
  2328. istanbul-lib-coverage "^3.0.0"
  2329. make-dir "^3.0.0"
  2330. supports-color "^7.1.0"
  2331. istanbul-lib-source-maps@^4.0.0:
  2332. version "4.0.0"
  2333. resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz"
  2334. integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
  2335. dependencies:
  2336. debug "^4.1.1"
  2337. istanbul-lib-coverage "^3.0.0"
  2338. source-map "^0.6.1"
  2339. istanbul-reports@^3.0.2:
  2340. version "3.0.2"
  2341. resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz"
  2342. integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
  2343. dependencies:
  2344. html-escaper "^2.0.0"
  2345. istanbul-lib-report "^3.0.0"
  2346. jest-worker@^26.6.2:
  2347. version "26.6.2"
  2348. resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"
  2349. integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
  2350. dependencies:
  2351. "@types/node" "*"
  2352. merge-stream "^2.0.0"
  2353. supports-color "^7.0.0"
  2354. [email protected]:
  2355. version "1.0.1"
  2356. resolved "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz"
  2357. integrity sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=
  2358. js-tokens@^4.0.0:
  2359. version "4.0.0"
  2360. resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
  2361. integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
  2362. [email protected]:
  2363. version "4.0.0"
  2364. resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz"
  2365. integrity sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==
  2366. dependencies:
  2367. argparse "^2.0.1"
  2368. js-yaml@^3.13.1:
  2369. version "3.13.1"
  2370. resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"
  2371. integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
  2372. dependencies:
  2373. argparse "^1.0.7"
  2374. esprima "^4.0.0"
  2375. jsdoctypeparser@^9.0.0:
  2376. version "9.0.0"
  2377. resolved "https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz"
  2378. integrity sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==
  2379. jsesc@^2.5.1:
  2380. version "2.5.2"
  2381. resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
  2382. integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
  2383. json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
  2384. version "1.0.2"
  2385. resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
  2386. integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
  2387. json-schema-traverse@^0.4.1:
  2388. version "0.4.1"
  2389. resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
  2390. integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
  2391. json-stable-stringify-without-jsonify@^1.0.1:
  2392. version "1.0.1"
  2393. resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
  2394. integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
  2395. json5@^1.0.1:
  2396. version "1.0.1"
  2397. resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"
  2398. integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
  2399. dependencies:
  2400. minimist "^1.2.0"
  2401. json5@^2.1.2:
  2402. version "2.1.2"
  2403. resolved "https://registry.npmjs.org/json5/-/json5-2.1.2.tgz"
  2404. integrity sha512-MoUOQ4WdiN3yxhm7NEVJSJrieAo5hNSLQ5sj05OTRHPL9HOBy8u4Bu88jsC1jvqAdN+E1bJmsUcZH+1HQxliqQ==
  2405. dependencies:
  2406. minimist "^1.2.5"
  2407. jsonfile@^6.0.1:
  2408. version "6.0.1"
  2409. resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.0.1.tgz"
  2410. integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==
  2411. dependencies:
  2412. universalify "^1.0.0"
  2413. optionalDependencies:
  2414. graceful-fs "^4.1.6"
  2415. just-extend@^4.0.2:
  2416. version "4.1.0"
  2417. resolved "https://registry.npmjs.org/just-extend/-/just-extend-4.1.0.tgz"
  2418. integrity sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA==
  2419. kind-of@^6.0.2:
  2420. version "6.0.3"
  2421. resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
  2422. integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
  2423. levn@^0.4.1:
  2424. version "0.4.1"
  2425. resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
  2426. integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
  2427. dependencies:
  2428. prelude-ls "^1.2.1"
  2429. type-check "~0.4.0"
  2430. levn@~0.3.0:
  2431. version "0.3.0"
  2432. resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"
  2433. integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
  2434. dependencies:
  2435. prelude-ls "~1.1.2"
  2436. type-check "~0.3.2"
  2437. libphonenumber-js@^1.9.7:
  2438. version "1.9.8"
  2439. resolved "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.9.8.tgz"
  2440. integrity sha512-gXzuhvlqdH20MlKAy1jXOVouCYByz43ZGCAeNnNuKQXUM+Wl36gbql0M27QQI3ahYCHJErd2W8ciqWweoQdbrQ==
  2441. lines-and-columns@^1.1.6:
  2442. version "1.1.6"
  2443. resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz"
  2444. integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
  2445. load-json-file@^2.0.0:
  2446. version "2.0.0"
  2447. resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"
  2448. integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
  2449. dependencies:
  2450. graceful-fs "^4.1.2"
  2451. parse-json "^2.2.0"
  2452. pify "^2.0.0"
  2453. strip-bom "^3.0.0"
  2454. loader-runner@^4.2.0:
  2455. version "4.2.0"
  2456. resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz"
  2457. integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==
  2458. loader-utils@^2.0.0:
  2459. version "2.0.0"
  2460. resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz"
  2461. integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
  2462. dependencies:
  2463. big.js "^5.2.2"
  2464. emojis-list "^3.0.0"
  2465. json5 "^2.1.2"
  2466. locate-path@^2.0.0:
  2467. version "2.0.0"
  2468. resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"
  2469. integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
  2470. dependencies:
  2471. p-locate "^2.0.0"
  2472. path-exists "^3.0.0"
  2473. locate-path@^5.0.0:
  2474. version "5.0.0"
  2475. resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
  2476. integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
  2477. dependencies:
  2478. p-locate "^4.1.0"
  2479. locate-path@^6.0.0:
  2480. version "6.0.0"
  2481. resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
  2482. integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
  2483. dependencies:
  2484. p-locate "^5.0.0"
  2485. lodash.flattendeep@^4.4.0:
  2486. version "4.4.0"
  2487. resolved "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"
  2488. integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=
  2489. lodash.get@^4.4.2:
  2490. version "4.4.2"
  2491. resolved "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"
  2492. integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
  2493. lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.19:
  2494. version "4.17.19"
  2495. resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz"
  2496. integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
  2497. lodash@^4.17.20:
  2498. version "4.17.20"
  2499. resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"
  2500. integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
  2501. lodash@^4.17.21:
  2502. version "4.17.21"
  2503. resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
  2504. integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
  2505. [email protected]:
  2506. version "4.0.0"
  2507. resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz"
  2508. integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==
  2509. dependencies:
  2510. chalk "^4.0.0"
  2511. lru-cache@^4.0.1:
  2512. version "4.1.5"
  2513. resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"
  2514. integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
  2515. dependencies:
  2516. pseudomap "^1.0.2"
  2517. yallist "^2.1.2"
  2518. lru-cache@^6.0.0:
  2519. version "6.0.0"
  2520. resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
  2521. integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
  2522. dependencies:
  2523. yallist "^4.0.0"
  2524. make-dir@^3.0.0, make-dir@^3.0.2:
  2525. version "3.0.2"
  2526. resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.0.2.tgz"
  2527. integrity sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w==
  2528. dependencies:
  2529. semver "^6.0.0"
  2530. make-error@^1.1.1:
  2531. version "1.3.6"
  2532. resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz"
  2533. integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
  2534. [email protected]:
  2535. version "2.3.0"
  2536. resolved "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz"
  2537. integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==
  2538. dependencies:
  2539. charenc "0.0.2"
  2540. crypt "0.0.2"
  2541. is-buffer "~1.1.6"
  2542. memfs@^3.1.2:
  2543. version "3.2.0"
  2544. resolved "https://registry.npmjs.org/memfs/-/memfs-3.2.0.tgz"
  2545. integrity sha512-f/xxz2TpdKv6uDn6GtHee8ivFyxwxmPuXatBb1FBwxYNuVpbM3k/Y1Z+vC0mH/dIXXrukYfe3qe5J32Dfjg93A==
  2546. dependencies:
  2547. fs-monkey "1.0.1"
  2548. memory-fs@^0.5.0:
  2549. version "0.5.0"
  2550. resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz"
  2551. integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
  2552. dependencies:
  2553. errno "^0.1.3"
  2554. readable-stream "^2.0.1"
  2555. merge-stream@^2.0.0:
  2556. version "2.0.0"
  2557. resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
  2558. integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
  2559. merge2@^1.3.0:
  2560. version "1.4.1"
  2561. resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
  2562. integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
  2563. micromatch@^4.0.0, micromatch@^4.0.2:
  2564. version "4.0.2"
  2565. resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz"
  2566. integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
  2567. dependencies:
  2568. braces "^3.0.1"
  2569. picomatch "^2.0.5"
  2570. [email protected]:
  2571. version "1.44.0"
  2572. resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"
  2573. integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
  2574. mime-types@^2.1.27:
  2575. version "2.1.27"
  2576. resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"
  2577. integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
  2578. dependencies:
  2579. mime-db "1.44.0"
  2580. mimic-fn@^2.1.0:
  2581. version "2.1.0"
  2582. resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
  2583. integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
  2584. [email protected], minimatch@^3.0.4:
  2585. version "3.0.4"
  2586. resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"
  2587. integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
  2588. dependencies:
  2589. brace-expansion "^1.1.7"
  2590. minimist@^1.2.0, minimist@^1.2.5:
  2591. version "1.2.5"
  2592. resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"
  2593. integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
  2594. [email protected]:
  2595. version "1.0.4"
  2596. resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"
  2597. integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
  2598. [email protected]:
  2599. version "8.3.2"
  2600. resolved "https://registry.npmjs.org/mocha/-/mocha-8.3.2.tgz"
  2601. integrity sha512-UdmISwr/5w+uXLPKspgoV7/RXZwKRTiTjJ2/AC5ZiEztIoOYdfKb19+9jNmEInzx5pBsCyJQzarAxqIGBNYJhg==
  2602. dependencies:
  2603. "@ungap/promise-all-settled" "1.1.2"
  2604. ansi-colors "4.1.1"
  2605. browser-stdout "1.3.1"
  2606. chokidar "3.5.1"
  2607. debug "4.3.1"
  2608. diff "5.0.0"
  2609. escape-string-regexp "4.0.0"
  2610. find-up "5.0.0"
  2611. glob "7.1.6"
  2612. growl "1.10.5"
  2613. he "1.2.0"
  2614. js-yaml "4.0.0"
  2615. log-symbols "4.0.0"
  2616. minimatch "3.0.4"
  2617. ms "2.1.3"
  2618. nanoid "3.1.20"
  2619. serialize-javascript "5.0.1"
  2620. strip-json-comments "3.1.1"
  2621. supports-color "8.1.1"
  2622. which "2.0.2"
  2623. wide-align "1.1.3"
  2624. workerpool "6.1.0"
  2625. yargs "16.2.0"
  2626. yargs-parser "20.2.4"
  2627. yargs-unparser "2.0.0"
  2628. [email protected]:
  2629. version "2.0.0"
  2630. resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
  2631. integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
  2632. [email protected], ms@^2.1.1:
  2633. version "2.1.2"
  2634. resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
  2635. integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
  2636. [email protected]:
  2637. version "2.1.3"
  2638. resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
  2639. integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
  2640. multimap@^1.1.0:
  2641. version "1.1.0"
  2642. resolved "https://registry.npmjs.org/multimap/-/multimap-1.1.0.tgz"
  2643. integrity sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw==
  2644. multimatch@*:
  2645. version "4.0.0"
  2646. resolved "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz"
  2647. integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==
  2648. dependencies:
  2649. "@types/minimatch" "^3.0.3"
  2650. array-differ "^3.0.0"
  2651. array-union "^2.1.0"
  2652. arrify "^2.0.1"
  2653. minimatch "^3.0.4"
  2654. [email protected]:
  2655. version "5.0.0"
  2656. resolved "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz"
  2657. integrity sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==
  2658. dependencies:
  2659. "@types/minimatch" "^3.0.3"
  2660. array-differ "^3.0.0"
  2661. array-union "^2.1.0"
  2662. arrify "^2.0.1"
  2663. minimatch "^3.0.4"
  2664. [email protected]:
  2665. version "3.1.20"
  2666. resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz"
  2667. integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
  2668. natural-compare@^1.4.0:
  2669. version "1.4.0"
  2670. resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
  2671. integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
  2672. neo-async@^2.6.2:
  2673. version "2.6.2"
  2674. resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
  2675. integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
  2676. nise@^4.1.0:
  2677. version "4.1.0"
  2678. resolved "https://registry.npmjs.org/nise/-/nise-4.1.0.tgz"
  2679. integrity sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==
  2680. dependencies:
  2681. "@sinonjs/commons" "^1.7.0"
  2682. "@sinonjs/fake-timers" "^6.0.0"
  2683. "@sinonjs/text-encoding" "^0.7.1"
  2684. just-extend "^4.0.2"
  2685. path-to-regexp "^1.7.0"
  2686. node-fetch@^2.6.1:
  2687. version "2.6.1"
  2688. resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz"
  2689. integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
  2690. node-notifier@^6.0.0:
  2691. version "6.0.0"
  2692. resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz"
  2693. integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==
  2694. dependencies:
  2695. growly "^1.3.0"
  2696. is-wsl "^2.1.1"
  2697. semver "^6.3.0"
  2698. shellwords "^0.1.1"
  2699. which "^1.3.1"
  2700. node-preload@^0.2.1:
  2701. version "0.2.1"
  2702. resolved "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz"
  2703. integrity sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==
  2704. dependencies:
  2705. process-on-spawn "^1.0.0"
  2706. node-releases@^1.1.61:
  2707. version "1.1.61"
  2708. resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.61.tgz"
  2709. integrity sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g==
  2710. normalize-package-data@^2.3.2, normalize-package-data@^2.5.0:
  2711. version "2.5.0"
  2712. resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
  2713. integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
  2714. dependencies:
  2715. hosted-git-info "^2.1.4"
  2716. resolve "^1.10.0"
  2717. semver "2 || 3 || 4 || 5"
  2718. validate-npm-package-license "^3.0.1"
  2719. normalize-path@^3.0.0, normalize-path@~3.0.0:
  2720. version "3.0.0"
  2721. resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
  2722. integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
  2723. npm-run-path@^4.0.1:
  2724. version "4.0.1"
  2725. resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"
  2726. integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
  2727. dependencies:
  2728. path-key "^3.0.0"
  2729. [email protected]:
  2730. version "15.1.0"
  2731. resolved "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz"
  2732. integrity sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==
  2733. dependencies:
  2734. "@istanbuljs/load-nyc-config" "^1.0.0"
  2735. "@istanbuljs/schema" "^0.1.2"
  2736. caching-transform "^4.0.0"
  2737. convert-source-map "^1.7.0"
  2738. decamelize "^1.2.0"
  2739. find-cache-dir "^3.2.0"
  2740. find-up "^4.1.0"
  2741. foreground-child "^2.0.0"
  2742. get-package-type "^0.1.0"
  2743. glob "^7.1.6"
  2744. istanbul-lib-coverage "^3.0.0"
  2745. istanbul-lib-hook "^3.0.0"
  2746. istanbul-lib-instrument "^4.0.0"
  2747. istanbul-lib-processinfo "^2.0.2"
  2748. istanbul-lib-report "^3.0.0"
  2749. istanbul-lib-source-maps "^4.0.0"
  2750. istanbul-reports "^3.0.2"
  2751. make-dir "^3.0.0"
  2752. node-preload "^0.2.1"
  2753. p-map "^3.0.0"
  2754. process-on-spawn "^1.0.0"
  2755. resolve-from "^5.0.0"
  2756. rimraf "^3.0.0"
  2757. signal-exit "^3.0.2"
  2758. spawn-wrap "^2.0.0"
  2759. test-exclude "^6.0.0"
  2760. yargs "^15.0.2"
  2761. object-inspect@^1.7.0:
  2762. version "1.7.0"
  2763. resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz"
  2764. integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
  2765. object-inspect@^1.8.0:
  2766. version "1.8.0"
  2767. resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz"
  2768. integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==
  2769. object-is@^1.0.1:
  2770. version "1.1.3"
  2771. resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.3.tgz"
  2772. integrity sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg==
  2773. dependencies:
  2774. define-properties "^1.1.3"
  2775. es-abstract "^1.18.0-next.1"
  2776. object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
  2777. version "1.1.1"
  2778. resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
  2779. integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
  2780. object.assign@^4.1.0:
  2781. version "4.1.0"
  2782. resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz"
  2783. integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
  2784. dependencies:
  2785. define-properties "^1.1.2"
  2786. function-bind "^1.1.1"
  2787. has-symbols "^1.0.0"
  2788. object-keys "^1.0.11"
  2789. object.assign@^4.1.1:
  2790. version "4.1.1"
  2791. resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.1.tgz"
  2792. integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==
  2793. dependencies:
  2794. define-properties "^1.1.3"
  2795. es-abstract "^1.18.0-next.0"
  2796. has-symbols "^1.0.1"
  2797. object-keys "^1.1.1"
  2798. object.values@^1.1.1:
  2799. version "1.1.1"
  2800. resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz"
  2801. integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
  2802. dependencies:
  2803. define-properties "^1.1.3"
  2804. es-abstract "^1.17.0-next.1"
  2805. function-bind "^1.1.1"
  2806. has "^1.0.3"
  2807. observable-fns@^0.5.1:
  2808. version "0.5.1"
  2809. resolved "https://registry.npmjs.org/observable-fns/-/observable-fns-0.5.1.tgz"
  2810. integrity sha512-wf7g4Jpo1Wt2KIqZKLGeiuLOEMqpaOZ5gJn7DmSdqXgTdxRwSdBhWegQQpPteQ2gZvzCKqNNpwb853wcpA0j7A==
  2811. once@^1.3.0:
  2812. version "1.4.0"
  2813. resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
  2814. integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
  2815. dependencies:
  2816. wrappy "1"
  2817. onetime@^5.1.2:
  2818. version "5.1.2"
  2819. resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
  2820. integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
  2821. dependencies:
  2822. mimic-fn "^2.1.0"
  2823. optionator@^0.8.1:
  2824. version "0.8.3"
  2825. resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz"
  2826. integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
  2827. dependencies:
  2828. deep-is "~0.1.3"
  2829. fast-levenshtein "~2.0.6"
  2830. levn "~0.3.0"
  2831. prelude-ls "~1.1.2"
  2832. type-check "~0.3.2"
  2833. word-wrap "~1.2.3"
  2834. optionator@^0.9.1:
  2835. version "0.9.1"
  2836. resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
  2837. integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
  2838. dependencies:
  2839. deep-is "^0.1.3"
  2840. fast-levenshtein "^2.0.6"
  2841. levn "^0.4.1"
  2842. prelude-ls "^1.2.1"
  2843. type-check "^0.4.0"
  2844. word-wrap "^1.2.3"
  2845. os-shim@^0.1.2:
  2846. version "0.1.3"
  2847. resolved "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz"
  2848. integrity sha1-a2LDeRz3kJ6jXtRuF2WLtBfLORc=
  2849. p-limit@^1.1.0:
  2850. version "1.3.0"
  2851. resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz"
  2852. integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
  2853. dependencies:
  2854. p-try "^1.0.0"
  2855. p-limit@^2.2.0:
  2856. version "2.2.2"
  2857. resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz"
  2858. integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
  2859. dependencies:
  2860. p-try "^2.0.0"
  2861. p-limit@^3.0.2:
  2862. version "3.0.2"
  2863. resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz"
  2864. integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==
  2865. dependencies:
  2866. p-try "^2.0.0"
  2867. p-limit@^3.1.0:
  2868. version "3.1.0"
  2869. resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
  2870. integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
  2871. dependencies:
  2872. yocto-queue "^0.1.0"
  2873. p-locate@^2.0.0:
  2874. version "2.0.0"
  2875. resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"
  2876. integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
  2877. dependencies:
  2878. p-limit "^1.1.0"
  2879. p-locate@^4.1.0:
  2880. version "4.1.0"
  2881. resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
  2882. integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
  2883. dependencies:
  2884. p-limit "^2.2.0"
  2885. p-locate@^5.0.0:
  2886. version "5.0.0"
  2887. resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
  2888. integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
  2889. dependencies:
  2890. p-limit "^3.0.2"
  2891. p-map@^3.0.0:
  2892. version "3.0.0"
  2893. resolved "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz"
  2894. integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
  2895. dependencies:
  2896. aggregate-error "^3.0.0"
  2897. p-try@^1.0.0:
  2898. version "1.0.0"
  2899. resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz"
  2900. integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
  2901. p-try@^2.0.0:
  2902. version "2.2.0"
  2903. resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
  2904. integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
  2905. package-hash@^4.0.0:
  2906. version "4.0.0"
  2907. resolved "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz"
  2908. integrity sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==
  2909. dependencies:
  2910. graceful-fs "^4.1.15"
  2911. hasha "^5.0.0"
  2912. lodash.flattendeep "^4.4.0"
  2913. release-zalgo "^1.0.0"
  2914. parent-module@^1.0.0:
  2915. version "1.0.1"
  2916. resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
  2917. integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
  2918. dependencies:
  2919. callsites "^3.0.0"
  2920. parse-json@^2.2.0:
  2921. version "2.2.0"
  2922. resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"
  2923. integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
  2924. dependencies:
  2925. error-ex "^1.2.0"
  2926. parse-json@^5.0.0:
  2927. version "5.0.0"
  2928. resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz"
  2929. integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
  2930. dependencies:
  2931. "@babel/code-frame" "^7.0.0"
  2932. error-ex "^1.3.1"
  2933. json-parse-better-errors "^1.0.1"
  2934. lines-and-columns "^1.1.6"
  2935. path-exists@^3.0.0:
  2936. version "3.0.0"
  2937. resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
  2938. integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
  2939. path-exists@^4.0.0:
  2940. version "4.0.0"
  2941. resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
  2942. integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
  2943. path-is-absolute@^1.0.0:
  2944. version "1.0.1"
  2945. resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
  2946. integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
  2947. path-key@^3.0.0, path-key@^3.1.0:
  2948. version "3.1.1"
  2949. resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
  2950. integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
  2951. path-parse@^1.0.6:
  2952. version "1.0.6"
  2953. resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"
  2954. integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
  2955. path-to-regexp@^1.7.0:
  2956. version "1.8.0"
  2957. resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz"
  2958. integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==
  2959. dependencies:
  2960. isarray "0.0.1"
  2961. path-type@^2.0.0:
  2962. version "2.0.0"
  2963. resolved "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"
  2964. integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
  2965. dependencies:
  2966. pify "^2.0.0"
  2967. path-type@^4.0.0:
  2968. version "4.0.0"
  2969. resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
  2970. integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
  2971. pathval@^1.1.1:
  2972. version "1.1.1"
  2973. resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz"
  2974. integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==
  2975. picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
  2976. version "2.2.2"
  2977. resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"
  2978. integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
  2979. pify@^2.0.0:
  2980. version "2.3.0"
  2981. resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
  2982. integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
  2983. [email protected]:
  2984. version "1.0.9"
  2985. resolved "https://registry.npmjs.org/pjson/-/pjson-1.0.9.tgz"
  2986. integrity sha512-4hRJH3YzkUpOlShRzhyxAmThSNnAaIlWZCAb27hd0pVUAXNUAHAO7XZbsPPvsCYwBFEScTmCCL6DGE8NyZ8BdQ==
  2987. pkg-dir@^2.0.0:
  2988. version "2.0.0"
  2989. resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz"
  2990. integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
  2991. dependencies:
  2992. find-up "^2.1.0"
  2993. pkg-dir@^4.1.0, pkg-dir@^4.2.0:
  2994. version "4.2.0"
  2995. resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
  2996. integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
  2997. dependencies:
  2998. find-up "^4.0.0"
  2999. pluralize@^8.0.0:
  3000. version "8.0.0"
  3001. resolved "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz"
  3002. integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==
  3003. [email protected]:
  3004. version "1.2.2"
  3005. resolved "https://registry.npmjs.org/pre-commit/-/pre-commit-1.2.2.tgz"
  3006. integrity sha1-287g7p3nI15X95xW186UZBpp7sY=
  3007. dependencies:
  3008. cross-spawn "^5.0.1"
  3009. spawn-sync "^1.0.15"
  3010. which "1.2.x"
  3011. prelude-ls@^1.2.1:
  3012. version "1.2.1"
  3013. resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
  3014. integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
  3015. prelude-ls@~1.1.2:
  3016. version "1.1.2"
  3017. resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"
  3018. integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
  3019. process-nextick-args@~2.0.0:
  3020. version "2.0.1"
  3021. resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
  3022. integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
  3023. process-on-spawn@^1.0.0:
  3024. version "1.0.0"
  3025. resolved "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz"
  3026. integrity sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==
  3027. dependencies:
  3028. fromentries "^1.2.0"
  3029. [email protected]:
  3030. version "0.11.10"
  3031. resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
  3032. integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
  3033. progress@^2.0.0:
  3034. version "2.0.3"
  3035. resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
  3036. integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
  3037. prr@~1.0.1:
  3038. version "1.0.1"
  3039. resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"
  3040. integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
  3041. pseudomap@^1.0.2:
  3042. version "1.0.2"
  3043. resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"
  3044. integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
  3045. punycode@^2.1.0:
  3046. version "2.1.1"
  3047. resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
  3048. integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
  3049. queue-microtask@^1.2.2:
  3050. version "1.2.3"
  3051. resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
  3052. integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
  3053. randombytes@^2.1.0:
  3054. version "2.1.0"
  3055. resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"
  3056. integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
  3057. dependencies:
  3058. safe-buffer "^5.1.0"
  3059. read-pkg-up@^2.0.0:
  3060. version "2.0.0"
  3061. resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"
  3062. integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=
  3063. dependencies:
  3064. find-up "^2.0.0"
  3065. read-pkg "^2.0.0"
  3066. read-pkg-up@^7.0.1:
  3067. version "7.0.1"
  3068. resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"
  3069. integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
  3070. dependencies:
  3071. find-up "^4.1.0"
  3072. read-pkg "^5.2.0"
  3073. type-fest "^0.8.1"
  3074. read-pkg@^2.0.0:
  3075. version "2.0.0"
  3076. resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"
  3077. integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
  3078. dependencies:
  3079. load-json-file "^2.0.0"
  3080. normalize-package-data "^2.3.2"
  3081. path-type "^2.0.0"
  3082. read-pkg@^5.2.0:
  3083. version "5.2.0"
  3084. resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"
  3085. integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
  3086. dependencies:
  3087. "@types/normalize-package-data" "^2.4.0"
  3088. normalize-package-data "^2.5.0"
  3089. parse-json "^5.0.0"
  3090. type-fest "^0.6.0"
  3091. readable-stream@^2.0.1, readable-stream@^2.2.2:
  3092. version "2.3.7"
  3093. resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"
  3094. integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
  3095. dependencies:
  3096. core-util-is "~1.0.0"
  3097. inherits "~2.0.3"
  3098. isarray "~1.0.0"
  3099. process-nextick-args "~2.0.0"
  3100. safe-buffer "~5.1.1"
  3101. string_decoder "~1.1.1"
  3102. util-deprecate "~1.0.1"
  3103. readdirp@~3.5.0:
  3104. version "3.5.0"
  3105. resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"
  3106. integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
  3107. dependencies:
  3108. picomatch "^2.2.1"
  3109. rechoir@^0.7.0:
  3110. version "0.7.0"
  3111. resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.7.0.tgz"
  3112. integrity sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==
  3113. dependencies:
  3114. resolve "^1.9.0"
  3115. [email protected]:
  3116. version "0.1.13"
  3117. resolved "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz"
  3118. integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==
  3119. regexp-tree@^0.1.23:
  3120. version "0.1.23"
  3121. resolved "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.23.tgz"
  3122. integrity sha512-+7HWfb4Bvu8Rs2eQTUIpX9I/PlQkYOuTNbRpKLJlQpSgwSkzFYh+pUj0gtvglnOZLKB6YgnIgRuJ2/IlpL48qw==
  3123. regexp-tree@~0.1.1:
  3124. version "0.1.21"
  3125. resolved "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.21.tgz"
  3126. integrity sha512-kUUXjX4AnqnR8KRTCrayAo9PzYMRKmVoGgaz2tBuz0MF3g1ZbGebmtW0yFHfFK9CmBjQKeYIgoL22pFLBJY7sw==
  3127. regexpp@^3.0.0:
  3128. version "3.0.0"
  3129. resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.0.0.tgz"
  3130. integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g==
  3131. regexpp@^3.1.0:
  3132. version "3.1.0"
  3133. resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz"
  3134. integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
  3135. regextras@^0.7.1:
  3136. version "0.7.1"
  3137. resolved "https://registry.npmjs.org/regextras/-/regextras-0.7.1.tgz"
  3138. integrity sha512-9YXf6xtW+qzQ+hcMQXx95MOvfqXFgsKDZodX3qZB0x2n5Z94ioetIITsBtvJbiOyxa/6s9AtyweBLCdPmPko/w==
  3139. release-zalgo@^1.0.0:
  3140. version "1.0.0"
  3141. resolved "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz"
  3142. integrity sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=
  3143. dependencies:
  3144. es6-error "^4.0.1"
  3145. require-directory@^2.1.1:
  3146. version "2.1.1"
  3147. resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
  3148. integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
  3149. require-main-filename@^2.0.0:
  3150. version "2.0.0"
  3151. resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"
  3152. integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
  3153. reserved-words@^0.1.2:
  3154. version "0.1.2"
  3155. resolved "https://registry.npmjs.org/reserved-words/-/reserved-words-0.1.2.tgz"
  3156. integrity sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=
  3157. resolve-cwd@^3.0.0:
  3158. version "3.0.0"
  3159. resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz"
  3160. integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
  3161. dependencies:
  3162. resolve-from "^5.0.0"
  3163. resolve-from@^4.0.0:
  3164. version "4.0.0"
  3165. resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
  3166. integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
  3167. resolve-from@^5.0.0:
  3168. version "5.0.0"
  3169. resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
  3170. integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
  3171. resolve@^1.10.0, resolve@^1.13.1, resolve@^1.3.2:
  3172. version "1.15.1"
  3173. resolved "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz"
  3174. integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
  3175. dependencies:
  3176. path-parse "^1.0.6"
  3177. resolve@^1.17.0, resolve@^1.9.0:
  3178. version "1.17.0"
  3179. resolved "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz"
  3180. integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
  3181. dependencies:
  3182. path-parse "^1.0.6"
  3183. reusify@^1.0.4:
  3184. version "1.0.4"
  3185. resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
  3186. integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
  3187. [email protected], rimraf@^3.0.0, rimraf@^3.0.2:
  3188. version "3.0.2"
  3189. resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
  3190. integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
  3191. dependencies:
  3192. glob "^7.1.3"
  3193. run-parallel@^1.1.9:
  3194. version "1.2.0"
  3195. resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
  3196. integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
  3197. dependencies:
  3198. queue-microtask "^1.2.2"
  3199. safe-buffer@^5.1.0, safe-buffer@^5.1.2:
  3200. version "5.2.0"
  3201. resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"
  3202. integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
  3203. safe-buffer@~5.1.0, safe-buffer@~5.1.1:
  3204. version "5.1.2"
  3205. resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
  3206. integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
  3207. safe-regex@^2.1.1:
  3208. version "2.1.1"
  3209. resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz"
  3210. integrity sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==
  3211. dependencies:
  3212. regexp-tree "~0.1.1"
  3213. [email protected]:
  3214. version "2.7.0"
  3215. resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz"
  3216. integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==
  3217. dependencies:
  3218. "@types/json-schema" "^7.0.4"
  3219. ajv "^6.12.2"
  3220. ajv-keywords "^3.4.1"
  3221. schema-utils@^3.0.0:
  3222. version "3.0.0"
  3223. resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz"
  3224. integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==
  3225. dependencies:
  3226. "@types/json-schema" "^7.0.6"
  3227. ajv "^6.12.5"
  3228. ajv-keywords "^3.5.2"
  3229. "semver@2 || 3 || 4 || 5", semver@^5.4.1:
  3230. version "5.7.1"
  3231. resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
  3232. integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
  3233. semver@^6.0.0, semver@^6.3.0:
  3234. version "6.3.0"
  3235. resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
  3236. integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
  3237. semver@^7.2.1, semver@^7.3.2:
  3238. version "7.3.2"
  3239. resolved "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"
  3240. integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
  3241. semver@^7.3.4:
  3242. version "7.3.4"
  3243. resolved "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"
  3244. integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==
  3245. dependencies:
  3246. lru-cache "^6.0.0"
  3247. [email protected], serialize-javascript@^5.0.1:
  3248. version "5.0.1"
  3249. resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"
  3250. integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
  3251. dependencies:
  3252. randombytes "^2.1.0"
  3253. set-blocking@^2.0.0:
  3254. version "2.0.0"
  3255. resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
  3256. integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
  3257. shallow-clone@^3.0.0:
  3258. version "3.0.1"
  3259. resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz"
  3260. integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
  3261. dependencies:
  3262. kind-of "^6.0.2"
  3263. shebang-command@^1.2.0:
  3264. version "1.2.0"
  3265. resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
  3266. integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
  3267. dependencies:
  3268. shebang-regex "^1.0.0"
  3269. shebang-command@^2.0.0:
  3270. version "2.0.0"
  3271. resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
  3272. integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
  3273. dependencies:
  3274. shebang-regex "^3.0.0"
  3275. shebang-regex@^1.0.0:
  3276. version "1.0.0"
  3277. resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
  3278. integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
  3279. shebang-regex@^3.0.0:
  3280. version "3.0.0"
  3281. resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
  3282. integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
  3283. shellwords@^0.1.1:
  3284. version "0.1.1"
  3285. resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz"
  3286. integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
  3287. signal-exit@^3.0.2:
  3288. version "3.0.2"
  3289. resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz"
  3290. integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
  3291. signal-exit@^3.0.3:
  3292. version "3.0.3"
  3293. resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"
  3294. integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
  3295. [email protected]:
  3296. version "10.0.0"
  3297. resolved "https://registry.npmjs.org/sinon/-/sinon-10.0.0.tgz"
  3298. integrity sha512-XAn5DxtGVJBlBWYrcYKEhWCz7FLwZGdyvANRyK06419hyEpdT0dMc5A8Vcxg5SCGHc40CsqoKsc1bt1CbJPfNw==
  3299. dependencies:
  3300. "@sinonjs/commons" "^1.8.1"
  3301. "@sinonjs/fake-timers" "^6.0.1"
  3302. "@sinonjs/samsam" "^5.3.1"
  3303. diff "^4.0.2"
  3304. nise "^4.1.0"
  3305. supports-color "^7.1.0"
  3306. slash@^3.0.0:
  3307. version "3.0.0"
  3308. resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
  3309. integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
  3310. slice-ansi@^4.0.0:
  3311. version "4.0.0"
  3312. resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"
  3313. integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
  3314. dependencies:
  3315. ansi-styles "^4.0.0"
  3316. astral-regex "^2.0.0"
  3317. is-fullwidth-code-point "^3.0.0"
  3318. source-list-map@^2.0.1:
  3319. version "2.0.1"
  3320. resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz"
  3321. integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
  3322. [email protected], source-map-support@^0.5.17, source-map-support@~0.5.19:
  3323. version "0.5.19"
  3324. resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz"
  3325. integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
  3326. dependencies:
  3327. buffer-from "^1.0.0"
  3328. source-map "^0.6.0"
  3329. source-map@^0.5.0:
  3330. version "0.5.7"
  3331. resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
  3332. integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
  3333. source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
  3334. version "0.6.1"
  3335. resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
  3336. integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
  3337. source-map@~0.7.2:
  3338. version "0.7.3"
  3339. resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"
  3340. integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
  3341. spawn-sync@^1.0.15:
  3342. version "1.0.15"
  3343. resolved "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz"
  3344. integrity sha1-sAeZVX63+wyDdsKdROih6mfldHY=
  3345. dependencies:
  3346. concat-stream "^1.4.7"
  3347. os-shim "^0.1.2"
  3348. spawn-wrap@^2.0.0:
  3349. version "2.0.0"
  3350. resolved "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz"
  3351. integrity sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==
  3352. dependencies:
  3353. foreground-child "^2.0.0"
  3354. is-windows "^1.0.2"
  3355. make-dir "^3.0.0"
  3356. rimraf "^3.0.0"
  3357. signal-exit "^3.0.2"
  3358. which "^2.0.1"
  3359. spdx-correct@^3.0.0:
  3360. version "3.1.0"
  3361. resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz"
  3362. integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
  3363. dependencies:
  3364. spdx-expression-parse "^3.0.0"
  3365. spdx-license-ids "^3.0.0"
  3366. spdx-exceptions@^2.1.0:
  3367. version "2.2.0"
  3368. resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz"
  3369. integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
  3370. spdx-expression-parse@^3.0.0:
  3371. version "3.0.0"
  3372. resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz"
  3373. integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
  3374. dependencies:
  3375. spdx-exceptions "^2.1.0"
  3376. spdx-license-ids "^3.0.0"
  3377. spdx-expression-parse@^3.0.1:
  3378. version "3.0.1"
  3379. resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"
  3380. integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
  3381. dependencies:
  3382. spdx-exceptions "^2.1.0"
  3383. spdx-license-ids "^3.0.0"
  3384. spdx-license-ids@^3.0.0:
  3385. version "3.0.5"
  3386. resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz"
  3387. integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
  3388. sprintf-js@~1.0.2:
  3389. version "1.0.3"
  3390. resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
  3391. integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
  3392. [email protected]:
  3393. version "1.0.0"
  3394. resolved "https://registry.npmjs.org/string-template/-/string-template-1.0.0.tgz"
  3395. integrity sha1-np8iM9wA8hhxjsN5oopWc+zKi5Y=
  3396. "string-width@^1.0.2 || 2":
  3397. version "2.1.1"
  3398. resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"
  3399. integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
  3400. dependencies:
  3401. is-fullwidth-code-point "^2.0.0"
  3402. strip-ansi "^4.0.0"
  3403. string-width@^4.1.0, string-width@^4.2.0:
  3404. version "4.2.0"
  3405. resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz"
  3406. integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
  3407. dependencies:
  3408. emoji-regex "^8.0.0"
  3409. is-fullwidth-code-point "^3.0.0"
  3410. strip-ansi "^6.0.0"
  3411. string.prototype.trimend@^1.0.1:
  3412. version "1.0.1"
  3413. resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz"
  3414. integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==
  3415. dependencies:
  3416. define-properties "^1.1.3"
  3417. es-abstract "^1.17.5"
  3418. string.prototype.trimleft@^2.1.1:
  3419. version "2.1.1"
  3420. resolved "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz"
  3421. integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
  3422. dependencies:
  3423. define-properties "^1.1.3"
  3424. function-bind "^1.1.1"
  3425. string.prototype.trimright@^2.1.1:
  3426. version "2.1.1"
  3427. resolved "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz"
  3428. integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==
  3429. dependencies:
  3430. define-properties "^1.1.3"
  3431. function-bind "^1.1.1"
  3432. string.prototype.trimstart@^1.0.1:
  3433. version "1.0.1"
  3434. resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz"
  3435. integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==
  3436. dependencies:
  3437. define-properties "^1.1.3"
  3438. es-abstract "^1.17.5"
  3439. string_decoder@~1.1.1:
  3440. version "1.1.1"
  3441. resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
  3442. integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
  3443. dependencies:
  3444. safe-buffer "~5.1.0"
  3445. [email protected]:
  3446. version "2.1.0"
  3447. resolved "https://registry.npmjs.org/stringz/-/stringz-2.1.0.tgz"
  3448. integrity sha512-KlywLT+MZ+v0IRepfMxRtnSvDCMc3nR1qqCs3m/qIbSOWkNZYT8XHQA31rS3TnKp0c5xjZu3M4GY/2aRKSi/6A==
  3449. dependencies:
  3450. char-regex "^1.0.2"
  3451. strip-ansi@^4.0.0:
  3452. version "4.0.0"
  3453. resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"
  3454. integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
  3455. dependencies:
  3456. ansi-regex "^3.0.0"
  3457. strip-ansi@^6.0.0:
  3458. version "6.0.0"
  3459. resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz"
  3460. integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
  3461. dependencies:
  3462. ansi-regex "^5.0.0"
  3463. strip-bom@^3.0.0:
  3464. version "3.0.0"
  3465. resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
  3466. integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
  3467. strip-bom@^4.0.0:
  3468. version "4.0.0"
  3469. resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"
  3470. integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
  3471. strip-final-newline@^2.0.0:
  3472. version "2.0.0"
  3473. resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
  3474. integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
  3475. [email protected], strip-json-comments@^3.1.1:
  3476. version "3.1.1"
  3477. resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
  3478. integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
  3479. strip-json-comments@^3.1.0:
  3480. version "3.1.0"
  3481. resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz"
  3482. integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==
  3483. [email protected]:
  3484. version "8.1.1"
  3485. resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"
  3486. integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
  3487. dependencies:
  3488. has-flag "^4.0.0"
  3489. supports-color@^5.3.0:
  3490. version "5.5.0"
  3491. resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
  3492. integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
  3493. dependencies:
  3494. has-flag "^3.0.0"
  3495. supports-color@^7.0.0:
  3496. version "7.2.0"
  3497. resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
  3498. integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
  3499. dependencies:
  3500. has-flag "^4.0.0"
  3501. supports-color@^7.1.0:
  3502. version "7.1.0"
  3503. resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz"
  3504. integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
  3505. dependencies:
  3506. has-flag "^4.0.0"
  3507. symbol-observable@^1.1.0:
  3508. version "1.2.0"
  3509. resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz"
  3510. integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
  3511. table@^6.0.4:
  3512. version "6.0.4"
  3513. resolved "https://registry.npmjs.org/table/-/table-6.0.4.tgz"
  3514. integrity sha512-sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw==
  3515. dependencies:
  3516. ajv "^6.12.4"
  3517. lodash "^4.17.20"
  3518. slice-ansi "^4.0.0"
  3519. string-width "^4.2.0"
  3520. tapable@^1.0.0:
  3521. version "1.1.3"
  3522. resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz"
  3523. integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
  3524. tapable@^2.1.1:
  3525. version "2.1.1"
  3526. resolved "https://registry.npmjs.org/tapable/-/tapable-2.1.1.tgz"
  3527. integrity sha512-Wib1S8m2wdpLbmQz0RBEVosIyvb/ykfKXf3ZIDqvWoMg/zTNm6G/tDSuUM61J1kNCDXWJrLHGSFeMhAG+gAGpQ==
  3528. tapable@^2.2.0:
  3529. version "2.2.0"
  3530. resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.0.tgz"
  3531. integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw==
  3532. terser-webpack-plugin@^5.1.1:
  3533. version "5.1.1"
  3534. resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.1.tgz"
  3535. integrity sha512-5XNNXZiR8YO6X6KhSGXfY0QrGrCRlSwAEjIIrlRQR4W8nP69TaJUlh3bkuac6zzgspiGPfKEHcY295MMVExl5Q==
  3536. dependencies:
  3537. jest-worker "^26.6.2"
  3538. p-limit "^3.1.0"
  3539. schema-utils "^3.0.0"
  3540. serialize-javascript "^5.0.1"
  3541. source-map "^0.6.1"
  3542. terser "^5.5.1"
  3543. terser@^5.5.1:
  3544. version "5.5.1"
  3545. resolved "https://registry.npmjs.org/terser/-/terser-5.5.1.tgz"
  3546. integrity sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ==
  3547. dependencies:
  3548. commander "^2.20.0"
  3549. source-map "~0.7.2"
  3550. source-map-support "~0.5.19"
  3551. test-exclude@^6.0.0:
  3552. version "6.0.0"
  3553. resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz"
  3554. integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
  3555. dependencies:
  3556. "@istanbuljs/schema" "^0.1.2"
  3557. glob "^7.1.4"
  3558. minimatch "^3.0.4"
  3559. text-table@^0.2.0:
  3560. version "0.2.0"
  3561. resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
  3562. integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
  3563. [email protected]:
  3564. version "1.6.3"
  3565. resolved "https://registry.npmjs.org/threads/-/threads-1.6.3.tgz"
  3566. integrity sha512-tKwFIWRgfAT85KGkrpDt2jWPO8IVH0sLNfB/pXad/VW9eUIY2Zlz+QyeizypXhPHv9IHfqRzvk2t3mPw+imhWw==
  3567. dependencies:
  3568. callsites "^3.1.0"
  3569. debug "^4.1.1"
  3570. is-observable "^1.1.0"
  3571. observable-fns "^0.5.1"
  3572. optionalDependencies:
  3573. tiny-worker ">= 2"
  3574. "tiny-worker@>= 2":
  3575. version "2.3.0"
  3576. resolved "https://registry.npmjs.org/tiny-worker/-/tiny-worker-2.3.0.tgz"
  3577. integrity sha512-pJ70wq5EAqTAEl9IkGzA+fN0836rycEuz2Cn6yeZ6FRzlVS5IDOkFHpIoEsksPRQV34GDqXm65+OlnZqUSyK2g==
  3578. dependencies:
  3579. esm "^3.2.25"
  3580. to-fast-properties@^2.0.0:
  3581. version "2.0.0"
  3582. resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
  3583. integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
  3584. to-regex-range@^5.0.1:
  3585. version "5.0.1"
  3586. resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
  3587. integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
  3588. dependencies:
  3589. is-number "^7.0.0"
  3590. [email protected]:
  3591. version "8.1.0"
  3592. resolved "https://registry.npmjs.org/ts-loader/-/ts-loader-8.1.0.tgz"
  3593. integrity sha512-YiQipGGAFj2zBfqLhp28yUvPP9jUGqHxRzrGYuc82Z2wM27YIHbElXiaZDc93c3x0mz4zvBmS6q/DgExpdj37A==
  3594. dependencies:
  3595. chalk "^4.1.0"
  3596. enhanced-resolve "^4.0.0"
  3597. loader-utils "^2.0.0"
  3598. micromatch "^4.0.0"
  3599. semver "^7.3.4"
  3600. [email protected]:
  3601. version "9.1.1"
  3602. resolved "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz"
  3603. integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
  3604. dependencies:
  3605. arg "^4.1.0"
  3606. create-require "^1.1.0"
  3607. diff "^4.0.1"
  3608. make-error "^1.1.1"
  3609. source-map-support "^0.5.17"
  3610. yn "3.1.1"
  3611. tsconfig-paths@^3.9.0:
  3612. version "3.9.0"
  3613. resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz"
  3614. integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==
  3615. dependencies:
  3616. "@types/json5" "^0.0.29"
  3617. json5 "^1.0.1"
  3618. minimist "^1.2.0"
  3619. strip-bom "^3.0.0"
  3620. [email protected]:
  3621. version "2.2.0"
  3622. resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c"
  3623. integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==
  3624. tslib@^1.8.1, tslib@^1.9.0:
  3625. version "1.11.1"
  3626. resolved "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz"
  3627. integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
  3628. tsutils@^3.17.1:
  3629. version "3.17.1"
  3630. resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz"
  3631. integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==
  3632. dependencies:
  3633. tslib "^1.8.1"
  3634. type-check@^0.4.0, type-check@~0.4.0:
  3635. version "0.4.0"
  3636. resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
  3637. integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
  3638. dependencies:
  3639. prelude-ls "^1.2.1"
  3640. type-check@~0.3.2:
  3641. version "0.3.2"
  3642. resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"
  3643. integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
  3644. dependencies:
  3645. prelude-ls "~1.1.2"
  3646. [email protected], type-detect@^4.0.0, type-detect@^4.0.5, type-detect@^4.0.8:
  3647. version "4.0.8"
  3648. resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"
  3649. integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
  3650. type-fest@^0.20.2:
  3651. version "0.20.2"
  3652. resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
  3653. integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
  3654. type-fest@^0.6.0:
  3655. version "0.6.0"
  3656. resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz"
  3657. integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
  3658. type-fest@^0.8.0, type-fest@^0.8.1:
  3659. version "0.8.1"
  3660. resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"
  3661. integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
  3662. typedarray-to-buffer@^3.1.5:
  3663. version "3.1.5"
  3664. resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"
  3665. integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
  3666. dependencies:
  3667. is-typedarray "^1.0.0"
  3668. typedarray@^0.0.6:
  3669. version "0.0.6"
  3670. resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"
  3671. integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
  3672. typescript@beta:
  3673. version "4.3.0-beta"
  3674. resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.0-beta.tgz#8098e7be29032f09827e94b8e3a6befc9ff70c77"
  3675. integrity sha512-bl3wxSVL6gWLQFa466Vm5Vk3z0BNx+QxWhb9wFiYEHm6H8oqFd8Wo3XjgCVxAa5yiSFFKgo/ngBpXdIwqo5o0A==
  3676. universalify@^1.0.0:
  3677. version "1.0.0"
  3678. resolved "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz"
  3679. integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==
  3680. uri-js@^4.2.2:
  3681. version "4.2.2"
  3682. resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"
  3683. integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
  3684. dependencies:
  3685. punycode "^2.1.0"
  3686. util-deprecate@~1.0.1:
  3687. version "1.0.2"
  3688. resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
  3689. integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
  3690. util@^0.12.0:
  3691. version "0.12.3"
  3692. resolved "https://registry.npmjs.org/util/-/util-0.12.3.tgz"
  3693. integrity sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==
  3694. dependencies:
  3695. inherits "^2.0.3"
  3696. is-arguments "^1.0.4"
  3697. is-generator-function "^1.0.7"
  3698. is-typed-array "^1.1.3"
  3699. safe-buffer "^5.1.2"
  3700. which-typed-array "^1.1.2"
  3701. uuid@^3.3.3:
  3702. version "3.4.0"
  3703. resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
  3704. integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
  3705. v8-compile-cache@^2.0.3:
  3706. version "2.1.0"
  3707. resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz"
  3708. integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
  3709. v8-compile-cache@^2.2.0:
  3710. version "2.2.0"
  3711. resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"
  3712. integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
  3713. validate-npm-package-license@^3.0.1:
  3714. version "3.0.4"
  3715. resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"
  3716. integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
  3717. dependencies:
  3718. spdx-correct "^3.0.0"
  3719. spdx-expression-parse "^3.0.0"
  3720. validator@^13.5.2:
  3721. version "13.5.2"
  3722. resolved "https://registry.npmjs.org/validator/-/validator-13.5.2.tgz"
  3723. integrity sha512-mD45p0rvHVBlY2Zuy3F3ESIe1h5X58GPfAtslBjY7EtTqGquZTj+VX/J4RnHWN8FKq0C9WRVt1oWAcytWRuYLQ==
  3724. watchpack@^2.0.0:
  3725. version "2.0.0"
  3726. resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.0.0.tgz"
  3727. integrity sha512-xSdCxxYZWNk3VK13bZRYhsQpfa8Vg63zXG+3pyU8ouqSLRCv4IGXIp9Kr226q6GBkGRlZrST2wwKtjfKz2m7Cg==
  3728. dependencies:
  3729. glob-to-regexp "^0.4.1"
  3730. graceful-fs "^4.1.2"
  3731. [email protected]:
  3732. version "4.6.0"
  3733. resolved "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.6.0.tgz"
  3734. integrity sha512-9YV+qTcGMjQFiY7Nb1kmnupvb1x40lfpj8pwdO/bom+sQiP4OBMKjHq29YQrlDWDPZO9r/qWaRRywKaRDKqBTA==
  3735. dependencies:
  3736. "@discoveryjs/json-ext" "^0.5.0"
  3737. "@webpack-cli/configtest" "^1.0.2"
  3738. "@webpack-cli/info" "^1.2.3"
  3739. "@webpack-cli/serve" "^1.3.1"
  3740. colorette "^1.2.1"
  3741. commander "^7.0.0"
  3742. enquirer "^2.3.6"
  3743. execa "^5.0.0"
  3744. fastest-levenshtein "^1.0.12"
  3745. import-local "^3.0.2"
  3746. interpret "^2.2.0"
  3747. rechoir "^0.7.0"
  3748. v8-compile-cache "^2.2.0"
  3749. webpack-merge "^5.7.3"
  3750. webpack-merge@^5.7.3:
  3751. version "5.7.3"
  3752. resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz"
  3753. integrity sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==
  3754. dependencies:
  3755. clone-deep "^4.0.1"
  3756. wildcard "^2.0.0"
  3757. [email protected]:
  3758. version "2.5.2"
  3759. resolved "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-2.5.2.tgz"
  3760. integrity sha512-aHdl/y2N7PW2Sx7K+r3AxpJO+aDMcYzMQd60Qxefq3+EwhewSbTBqNumOsCE1JsCUNoyfGj5465N0sSf6hc/5w==
  3761. webpack-sources@^2.1.1:
  3762. version "2.1.1"
  3763. resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.1.1.tgz"
  3764. integrity sha512-hraq9n99K564zuZUsE61iATO3jvzxOmGo20UlOe3zgdHOBp8inTJgv7EY4RgvCv7Ywx0/vpQTyYSjnFpv4gNtQ==
  3765. dependencies:
  3766. source-list-map "^2.0.1"
  3767. source-map "^0.6.1"
  3768. [email protected]:
  3769. version "5.31.0"
  3770. resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.31.0.tgz#fab61d0be896feca4af87bdad5c18815c0d63455"
  3771. integrity sha512-3fUfZT/FUuThWSSyL32Fsh7weUUfYP/Fjc/cGSbla5KiSo0GtI1JMssCRUopJTvmLjrw05R2q7rlLtiKdSzkzQ==
  3772. dependencies:
  3773. "@types/eslint-scope" "^3.7.0"
  3774. "@types/estree" "^0.0.46"
  3775. "@webassemblyjs/ast" "1.11.0"
  3776. "@webassemblyjs/wasm-edit" "1.11.0"
  3777. "@webassemblyjs/wasm-parser" "1.11.0"
  3778. acorn "^8.0.4"
  3779. browserslist "^4.14.5"
  3780. chrome-trace-event "^1.0.2"
  3781. enhanced-resolve "^5.7.0"
  3782. es-module-lexer "^0.4.0"
  3783. eslint-scope "^5.1.1"
  3784. events "^3.2.0"
  3785. glob-to-regexp "^0.4.1"
  3786. graceful-fs "^4.2.4"
  3787. json-parse-better-errors "^1.0.2"
  3788. loader-runner "^4.2.0"
  3789. mime-types "^2.1.27"
  3790. neo-async "^2.6.2"
  3791. schema-utils "^3.0.0"
  3792. tapable "^2.1.1"
  3793. terser-webpack-plugin "^5.1.1"
  3794. watchpack "^2.0.0"
  3795. webpack-sources "^2.1.1"
  3796. which-module@^2.0.0:
  3797. version "2.0.0"
  3798. resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"
  3799. integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
  3800. which-typed-array@^1.1.2:
  3801. version "1.1.2"
  3802. resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.2.tgz"
  3803. integrity sha512-KT6okrd1tE6JdZAy3o2VhMoYPh3+J6EMZLyrxBQsZflI1QCZIxMrIYLkosd8Twf+YfknVIHmYQPgJt238p8dnQ==
  3804. dependencies:
  3805. available-typed-arrays "^1.0.2"
  3806. es-abstract "^1.17.5"
  3807. foreach "^2.0.5"
  3808. function-bind "^1.1.1"
  3809. has-symbols "^1.0.1"
  3810. is-typed-array "^1.1.3"
  3811. [email protected]:
  3812. version "1.2.14"
  3813. resolved "https://registry.npmjs.org/which/-/which-1.2.14.tgz"
  3814. integrity sha1-mofEN48D6CfOyvGs31bHNsAcFOU=
  3815. dependencies:
  3816. isexe "^2.0.0"
  3817. [email protected], which@^2.0.1:
  3818. version "2.0.2"
  3819. resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
  3820. integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
  3821. dependencies:
  3822. isexe "^2.0.0"
  3823. which@^1.2.9, which@^1.3.1:
  3824. version "1.3.1"
  3825. resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
  3826. integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
  3827. dependencies:
  3828. isexe "^2.0.0"
  3829. [email protected]:
  3830. version "1.1.3"
  3831. resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"
  3832. integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
  3833. dependencies:
  3834. string-width "^1.0.2 || 2"
  3835. wildcard@^2.0.0:
  3836. version "2.0.0"
  3837. resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz"
  3838. integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
  3839. word-wrap@^1.2.3, word-wrap@~1.2.3:
  3840. version "1.2.3"
  3841. resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
  3842. integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
  3843. [email protected]:
  3844. version "6.1.0"
  3845. resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz"
  3846. integrity sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==
  3847. wrap-ansi@^6.2.0:
  3848. version "6.2.0"
  3849. resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"
  3850. integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
  3851. dependencies:
  3852. ansi-styles "^4.0.0"
  3853. string-width "^4.1.0"
  3854. strip-ansi "^6.0.0"
  3855. wrap-ansi@^7.0.0:
  3856. version "7.0.0"
  3857. resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
  3858. integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
  3859. dependencies:
  3860. ansi-styles "^4.0.0"
  3861. string-width "^4.1.0"
  3862. strip-ansi "^6.0.0"
  3863. wrappy@1:
  3864. version "1.0.2"
  3865. resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
  3866. integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
  3867. write-file-atomic@^3.0.0:
  3868. version "3.0.3"
  3869. resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz"
  3870. integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
  3871. dependencies:
  3872. imurmurhash "^0.1.4"
  3873. is-typedarray "^1.0.0"
  3874. signal-exit "^3.0.2"
  3875. typedarray-to-buffer "^3.1.5"
  3876. y18n@^4.0.0:
  3877. version "4.0.0"
  3878. resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"
  3879. integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
  3880. y18n@^5.0.5:
  3881. version "5.0.5"
  3882. resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz"
  3883. integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
  3884. yallist@^2.1.2:
  3885. version "2.1.2"
  3886. resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"
  3887. integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
  3888. yallist@^4.0.0:
  3889. version "4.0.0"
  3890. resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
  3891. integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
  3892. yaml@^1.7.2:
  3893. version "1.10.0"
  3894. resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz"
  3895. integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
  3896. [email protected]:
  3897. version "20.2.4"
  3898. resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz"
  3899. integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
  3900. yargs-parser@^18.1.1:
  3901. version "18.1.1"
  3902. resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.1.tgz"
  3903. integrity sha512-KRHEsOM16IX7XuLnMOqImcPNbLVXMNHYAoFc3BKR8Ortl5gzDbtXvvEoGx9imk5E+X1VeNKNlcHr8B8vi+7ipA==
  3904. dependencies:
  3905. camelcase "^5.0.0"
  3906. decamelize "^1.2.0"
  3907. yargs-parser@^20.2.2:
  3908. version "20.2.5"
  3909. resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.5.tgz"
  3910. integrity sha512-jYRGS3zWy20NtDtK2kBgo/TlAoy5YUuhD9/LZ7z7W4j1Fdw2cqD0xEEclf8fxc8xjD6X5Qr+qQQwCEsP8iRiYg==
  3911. [email protected]:
  3912. version "2.0.0"
  3913. resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz"
  3914. integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==
  3915. dependencies:
  3916. camelcase "^6.0.0"
  3917. decamelize "^4.0.0"
  3918. flat "^5.0.2"
  3919. is-plain-obj "^2.1.0"
  3920. [email protected]:
  3921. version "16.2.0"
  3922. resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"
  3923. integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
  3924. dependencies:
  3925. cliui "^7.0.2"
  3926. escalade "^3.1.1"
  3927. get-caller-file "^2.0.5"
  3928. require-directory "^2.1.1"
  3929. string-width "^4.2.0"
  3930. y18n "^5.0.5"
  3931. yargs-parser "^20.2.2"
  3932. yargs@^15.0.2:
  3933. version "15.3.1"
  3934. resolved "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz"
  3935. integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==
  3936. dependencies:
  3937. cliui "^6.0.0"
  3938. decamelize "^1.2.0"
  3939. find-up "^4.1.0"
  3940. get-caller-file "^2.0.1"
  3941. require-directory "^2.1.1"
  3942. require-main-filename "^2.0.0"
  3943. set-blocking "^2.0.0"
  3944. string-width "^4.2.0"
  3945. which-module "^2.0.0"
  3946. y18n "^4.0.0"
  3947. yargs-parser "^18.1.1"
  3948. [email protected]:
  3949. version "3.1.1"
  3950. resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz"
  3951. integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
  3952. yocto-queue@^0.1.0:
  3953. version "0.1.0"
  3954. resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
  3955. integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==