Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pnpm-lock.yaml 153KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437
  1. lockfileVersion: 5.3
  2. specifiers:
  3. '@babel/core': ^7.14.3
  4. '@babel/preset-env': ^7.14.2
  5. '@brettz9/eslint-plugin': ^1.0.3
  6. '@brettz9/node-static': ^0.1.1
  7. '@rollup/plugin-babel': ^5.3.0
  8. chai: ^4.3.4
  9. core-js-bundle: ^3.12.1
  10. eslint: ^7.27.0
  11. eslint-config-ash-nazg: ^29.16.0
  12. eslint-config-standard: ^16.0.2
  13. eslint-plugin-array-func: ^3.1.7
  14. eslint-plugin-chai-expect: ^2.2.0
  15. eslint-plugin-chai-friendly: ^0.7.1
  16. eslint-plugin-compat: ^3.9.0
  17. eslint-plugin-eslint-comments: ^3.2.0
  18. eslint-plugin-html: ^6.1.2
  19. eslint-plugin-import: ^2.23.3
  20. eslint-plugin-jsdoc: ^35.0.0
  21. eslint-plugin-markdown: ^2.1.0
  22. eslint-plugin-no-unsanitized: ^3.1.5
  23. eslint-plugin-no-use-extend-native: ^0.5.0
  24. eslint-plugin-node: ^11.1.0
  25. eslint-plugin-promise: ^5.1.0
  26. eslint-plugin-radar: ^0.2.1
  27. eslint-plugin-standard: ^4.1.0
  28. eslint-plugin-unicorn: ^32.0.1
  29. esm: ^3.2.25
  30. mocha: ^8.4.0
  31. nyc: ^15.1.0
  32. open-cli: ^6.0.1
  33. regenerator-runtime: ^0.13.7
  34. rollup: 2.49.0
  35. rollup-plugin-terser: ^7.0.2
  36. devDependencies:
  37. '@babel/core': 7.14.3
  38. '@babel/preset-env': 7.14.2_@babel+core@7.14.3
  39. '@brettz9/eslint-plugin': 1.0.3_eslint@7.27.0
  40. '@brettz9/node-static': 0.1.1
  41. '@rollup/plugin-babel': 5.3.0_@babel+core@7.14.3+rollup@2.49.0
  42. chai: 4.3.4
  43. core-js-bundle: 3.12.1
  44. eslint: 7.27.0
  45. eslint-config-ash-nazg: 29.16.0_86bc859d2c4079058d807e5716b4b586
  46. eslint-config-standard: 16.0.2_54a118fc6338897394bb0683ed693a07
  47. eslint-plugin-array-func: 3.1.7_eslint@7.27.0
  48. eslint-plugin-chai-expect: 2.2.0_eslint@7.27.0
  49. eslint-plugin-chai-friendly: 0.7.1_eslint@7.27.0
  50. eslint-plugin-compat: 3.9.0_eslint@7.27.0
  51. eslint-plugin-eslint-comments: 3.2.0_eslint@7.27.0
  52. eslint-plugin-html: 6.1.2
  53. eslint-plugin-import: 2.23.3_eslint@7.27.0
  54. eslint-plugin-jsdoc: 35.0.0_eslint@7.27.0
  55. eslint-plugin-markdown: 2.1.0_eslint@7.27.0
  56. eslint-plugin-no-unsanitized: 3.1.5_eslint@7.27.0
  57. eslint-plugin-no-use-extend-native: 0.5.0
  58. eslint-plugin-node: 11.1.0_eslint@7.27.0
  59. eslint-plugin-promise: 5.1.0_eslint@7.27.0
  60. eslint-plugin-radar: 0.2.1_eslint@7.27.0
  61. eslint-plugin-standard: 4.1.0_eslint@7.27.0
  62. eslint-plugin-unicorn: 32.0.1_eslint@7.27.0
  63. esm: 3.2.25
  64. mocha: 8.4.0
  65. nyc: 15.1.0
  66. open-cli: 6.0.1
  67. regenerator-runtime: 0.13.7
  68. rollup: 2.49.0
  69. rollup-plugin-terser: 7.0.2_rollup@2.49.0
  70. packages:
  71. /@babel/code-frame/7.12.11:
  72. resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
  73. dependencies:
  74. '@babel/highlight': 7.14.0
  75. dev: true
  76. /@babel/code-frame/7.12.13:
  77. resolution: {integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==}
  78. dependencies:
  79. '@babel/highlight': 7.14.0
  80. dev: true
  81. /@babel/compat-data/7.14.0:
  82. resolution: {integrity: sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==}
  83. dev: true
  84. /@babel/core/7.14.3:
  85. resolution: {integrity: sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==}
  86. engines: {node: '>=6.9.0'}
  87. dependencies:
  88. '@babel/code-frame': 7.12.13
  89. '@babel/generator': 7.14.3
  90. '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3
  91. '@babel/helper-module-transforms': 7.14.2
  92. '@babel/helpers': 7.14.0
  93. '@babel/parser': 7.14.3
  94. '@babel/template': 7.12.13
  95. '@babel/traverse': 7.14.2
  96. '@babel/types': 7.14.2
  97. convert-source-map: 1.7.0
  98. debug: 4.3.1
  99. gensync: 1.0.0-beta.2
  100. json5: 2.2.0
  101. semver: 6.3.0
  102. source-map: 0.5.7
  103. transitivePeerDependencies:
  104. - supports-color
  105. dev: true
  106. /@babel/eslint-parser/7.14.3_@babel+core@7.14.3+eslint@7.27.0:
  107. resolution: {integrity: sha512-IfJXKEVRV/Gisvgmih/+05gkBzzg4Dy0gcxkZ84iFiLK8+O+fI1HLnGJv3UrUMPpsMmmThNa69v+UnF80XP+kA==}
  108. engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
  109. peerDependencies:
  110. '@babel/core': '>=7.11.0'
  111. eslint: '>=7.5.0'
  112. dependencies:
  113. '@babel/core': 7.14.3
  114. eslint: 7.27.0
  115. eslint-scope: 5.1.1
  116. eslint-visitor-keys: 2.1.0
  117. semver: 6.3.0
  118. dev: true
  119. /@babel/generator/7.14.3:
  120. resolution: {integrity: sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==}
  121. dependencies:
  122. '@babel/types': 7.14.2
  123. jsesc: 2.5.2
  124. source-map: 0.5.7
  125. dev: true
  126. /@babel/helper-annotate-as-pure/7.12.13:
  127. resolution: {integrity: sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==}
  128. dependencies:
  129. '@babel/types': 7.14.2
  130. dev: true
  131. /@babel/helper-builder-binary-assignment-operator-visitor/7.12.13:
  132. resolution: {integrity: sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==}
  133. dependencies:
  134. '@babel/helper-explode-assignable-expression': 7.13.0
  135. '@babel/types': 7.14.2
  136. dev: true
  137. /@babel/helper-compilation-targets/7.13.16_@babel+core@7.14.3:
  138. resolution: {integrity: sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==}
  139. peerDependencies:
  140. '@babel/core': ^7.0.0
  141. dependencies:
  142. '@babel/compat-data': 7.14.0
  143. '@babel/core': 7.14.3
  144. '@babel/helper-validator-option': 7.12.17
  145. browserslist: 4.16.6
  146. semver: 6.3.0
  147. dev: true
  148. /@babel/helper-create-class-features-plugin/7.14.3_@babel+core@7.14.3:
  149. resolution: {integrity: sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==}
  150. peerDependencies:
  151. '@babel/core': ^7.0.0
  152. dependencies:
  153. '@babel/core': 7.14.3
  154. '@babel/helper-annotate-as-pure': 7.12.13
  155. '@babel/helper-function-name': 7.14.2
  156. '@babel/helper-member-expression-to-functions': 7.13.12
  157. '@babel/helper-optimise-call-expression': 7.12.13
  158. '@babel/helper-replace-supers': 7.14.3
  159. '@babel/helper-split-export-declaration': 7.12.13
  160. transitivePeerDependencies:
  161. - supports-color
  162. dev: true
  163. /@babel/helper-create-regexp-features-plugin/7.14.3_@babel+core@7.14.3:
  164. resolution: {integrity: sha512-JIB2+XJrb7v3zceV2XzDhGIB902CmKGSpSl4q2C6agU9SNLG/2V1RtFRGPG1Ajh9STj3+q6zJMOC+N/pp2P9DA==}
  165. peerDependencies:
  166. '@babel/core': ^7.0.0
  167. dependencies:
  168. '@babel/core': 7.14.3
  169. '@babel/helper-annotate-as-pure': 7.12.13
  170. regexpu-core: 4.7.1
  171. dev: true
  172. /@babel/helper-define-polyfill-provider/0.2.1_@babel+core@7.14.3:
  173. resolution: {integrity: sha512-x3AUTVZNPunaw1opRTa5OwVA5N0YxGlIad9xQ5QflK1uIS7PnAGGU5O2Dj/G183fR//N8AzTq+Q8+oiu9m0VFg==}
  174. peerDependencies:
  175. '@babel/core': ^7.4.0-0
  176. dependencies:
  177. '@babel/core': 7.14.3
  178. '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3
  179. '@babel/helper-module-imports': 7.13.12
  180. '@babel/helper-plugin-utils': 7.13.0
  181. '@babel/traverse': 7.14.2
  182. debug: 4.3.1
  183. lodash.debounce: 4.0.8
  184. resolve: 1.20.0
  185. semver: 6.3.0
  186. transitivePeerDependencies:
  187. - supports-color
  188. dev: true
  189. /@babel/helper-explode-assignable-expression/7.13.0:
  190. resolution: {integrity: sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==}
  191. dependencies:
  192. '@babel/types': 7.14.2
  193. dev: true
  194. /@babel/helper-function-name/7.14.2:
  195. resolution: {integrity: sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==}
  196. dependencies:
  197. '@babel/helper-get-function-arity': 7.12.13
  198. '@babel/template': 7.12.13
  199. '@babel/types': 7.14.2
  200. dev: true
  201. /@babel/helper-get-function-arity/7.12.13:
  202. resolution: {integrity: sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==}
  203. dependencies:
  204. '@babel/types': 7.14.2
  205. dev: true
  206. /@babel/helper-hoist-variables/7.13.16:
  207. resolution: {integrity: sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==}
  208. dependencies:
  209. '@babel/traverse': 7.14.2
  210. '@babel/types': 7.14.2
  211. transitivePeerDependencies:
  212. - supports-color
  213. dev: true
  214. /@babel/helper-member-expression-to-functions/7.13.12:
  215. resolution: {integrity: sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==}
  216. dependencies:
  217. '@babel/types': 7.14.2
  218. dev: true
  219. /@babel/helper-module-imports/7.13.12:
  220. resolution: {integrity: sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==}
  221. dependencies:
  222. '@babel/types': 7.14.2
  223. dev: true
  224. /@babel/helper-module-transforms/7.14.2:
  225. resolution: {integrity: sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==}
  226. dependencies:
  227. '@babel/helper-module-imports': 7.13.12
  228. '@babel/helper-replace-supers': 7.14.3
  229. '@babel/helper-simple-access': 7.13.12
  230. '@babel/helper-split-export-declaration': 7.12.13
  231. '@babel/helper-validator-identifier': 7.14.0
  232. '@babel/template': 7.12.13
  233. '@babel/traverse': 7.14.2
  234. '@babel/types': 7.14.2
  235. transitivePeerDependencies:
  236. - supports-color
  237. dev: true
  238. /@babel/helper-optimise-call-expression/7.12.13:
  239. resolution: {integrity: sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==}
  240. dependencies:
  241. '@babel/types': 7.14.2
  242. dev: true
  243. /@babel/helper-plugin-utils/7.13.0:
  244. resolution: {integrity: sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==}
  245. dev: true
  246. /@babel/helper-remap-async-to-generator/7.13.0:
  247. resolution: {integrity: sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==}
  248. dependencies:
  249. '@babel/helper-annotate-as-pure': 7.12.13
  250. '@babel/helper-wrap-function': 7.13.0
  251. '@babel/types': 7.14.2
  252. transitivePeerDependencies:
  253. - supports-color
  254. dev: true
  255. /@babel/helper-replace-supers/7.14.3:
  256. resolution: {integrity: sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==}
  257. dependencies:
  258. '@babel/helper-member-expression-to-functions': 7.13.12
  259. '@babel/helper-optimise-call-expression': 7.12.13
  260. '@babel/traverse': 7.14.2
  261. '@babel/types': 7.14.2
  262. transitivePeerDependencies:
  263. - supports-color
  264. dev: true
  265. /@babel/helper-simple-access/7.13.12:
  266. resolution: {integrity: sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==}
  267. dependencies:
  268. '@babel/types': 7.14.2
  269. dev: true
  270. /@babel/helper-skip-transparent-expression-wrappers/7.12.1:
  271. resolution: {integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==}
  272. dependencies:
  273. '@babel/types': 7.14.2
  274. dev: true
  275. /@babel/helper-split-export-declaration/7.12.13:
  276. resolution: {integrity: sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==}
  277. dependencies:
  278. '@babel/types': 7.14.2
  279. dev: true
  280. /@babel/helper-validator-identifier/7.14.0:
  281. resolution: {integrity: sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==}
  282. dev: true
  283. /@babel/helper-validator-option/7.12.17:
  284. resolution: {integrity: sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==}
  285. dev: true
  286. /@babel/helper-wrap-function/7.13.0:
  287. resolution: {integrity: sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==}
  288. dependencies:
  289. '@babel/helper-function-name': 7.14.2
  290. '@babel/template': 7.12.13
  291. '@babel/traverse': 7.14.2
  292. '@babel/types': 7.14.2
  293. transitivePeerDependencies:
  294. - supports-color
  295. dev: true
  296. /@babel/helpers/7.14.0:
  297. resolution: {integrity: sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==}
  298. dependencies:
  299. '@babel/template': 7.12.13
  300. '@babel/traverse': 7.14.2
  301. '@babel/types': 7.14.2
  302. transitivePeerDependencies:
  303. - supports-color
  304. dev: true
  305. /@babel/highlight/7.14.0:
  306. resolution: {integrity: sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==}
  307. dependencies:
  308. '@babel/helper-validator-identifier': 7.14.0
  309. chalk: 2.4.2
  310. js-tokens: 4.0.0
  311. dev: true
  312. /@babel/parser/7.14.3:
  313. resolution: {integrity: sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==}
  314. engines: {node: '>=6.0.0'}
  315. hasBin: true
  316. dev: true
  317. /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.13.12_@babel+core@7.14.3:
  318. resolution: {integrity: sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==}
  319. peerDependencies:
  320. '@babel/core': ^7.13.0
  321. dependencies:
  322. '@babel/core': 7.14.3
  323. '@babel/helper-plugin-utils': 7.13.0
  324. '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
  325. '@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.3
  326. dev: true
  327. /@babel/plugin-proposal-async-generator-functions/7.14.2_@babel+core@7.14.3:
  328. resolution: {integrity: sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==}
  329. peerDependencies:
  330. '@babel/core': ^7.0.0-0
  331. dependencies:
  332. '@babel/core': 7.14.3
  333. '@babel/helper-plugin-utils': 7.13.0
  334. '@babel/helper-remap-async-to-generator': 7.13.0
  335. '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.3
  336. transitivePeerDependencies:
  337. - supports-color
  338. dev: true
  339. /@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.14.3:
  340. resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==}
  341. peerDependencies:
  342. '@babel/core': ^7.0.0-0
  343. dependencies:
  344. '@babel/core': 7.14.3
  345. '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.3
  346. '@babel/helper-plugin-utils': 7.13.0
  347. transitivePeerDependencies:
  348. - supports-color
  349. dev: true
  350. /@babel/plugin-proposal-class-static-block/7.14.3_@babel+core@7.14.3:
  351. resolution: {integrity: sha512-HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==}
  352. peerDependencies:
  353. '@babel/core': ^7.12.0
  354. dependencies:
  355. '@babel/core': 7.14.3
  356. '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.3
  357. '@babel/helper-plugin-utils': 7.13.0
  358. '@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.3
  359. transitivePeerDependencies:
  360. - supports-color
  361. dev: true
  362. /@babel/plugin-proposal-dynamic-import/7.14.2_@babel+core@7.14.3:
  363. resolution: {integrity: sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==}
  364. peerDependencies:
  365. '@babel/core': ^7.0.0-0
  366. dependencies:
  367. '@babel/core': 7.14.3
  368. '@babel/helper-plugin-utils': 7.13.0
  369. '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3
  370. dev: true
  371. /@babel/plugin-proposal-export-namespace-from/7.14.2_@babel+core@7.14.3:
  372. resolution: {integrity: sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==}
  373. peerDependencies:
  374. '@babel/core': ^7.0.0-0
  375. dependencies:
  376. '@babel/core': 7.14.3
  377. '@babel/helper-plugin-utils': 7.13.0
  378. '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.3
  379. dev: true
  380. /@babel/plugin-proposal-json-strings/7.14.2_@babel+core@7.14.3:
  381. resolution: {integrity: sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==}
  382. peerDependencies:
  383. '@babel/core': ^7.0.0-0
  384. dependencies:
  385. '@babel/core': 7.14.3
  386. '@babel/helper-plugin-utils': 7.13.0
  387. '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.3
  388. dev: true
  389. /@babel/plugin-proposal-logical-assignment-operators/7.14.2_@babel+core@7.14.3:
  390. resolution: {integrity: sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==}
  391. peerDependencies:
  392. '@babel/core': ^7.0.0-0
  393. dependencies:
  394. '@babel/core': 7.14.3
  395. '@babel/helper-plugin-utils': 7.13.0
  396. '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.3
  397. dev: true
  398. /@babel/plugin-proposal-nullish-coalescing-operator/7.14.2_@babel+core@7.14.3:
  399. resolution: {integrity: sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==}
  400. peerDependencies:
  401. '@babel/core': ^7.0.0-0
  402. dependencies:
  403. '@babel/core': 7.14.3
  404. '@babel/helper-plugin-utils': 7.13.0
  405. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.3
  406. dev: true
  407. /@babel/plugin-proposal-numeric-separator/7.14.2_@babel+core@7.14.3:
  408. resolution: {integrity: sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==}
  409. peerDependencies:
  410. '@babel/core': ^7.0.0-0
  411. dependencies:
  412. '@babel/core': 7.14.3
  413. '@babel/helper-plugin-utils': 7.13.0
  414. '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.3
  415. dev: true
  416. /@babel/plugin-proposal-object-rest-spread/7.14.2_@babel+core@7.14.3:
  417. resolution: {integrity: sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw==}
  418. peerDependencies:
  419. '@babel/core': ^7.0.0-0
  420. dependencies:
  421. '@babel/compat-data': 7.14.0
  422. '@babel/core': 7.14.3
  423. '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3
  424. '@babel/helper-plugin-utils': 7.13.0
  425. '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.3
  426. '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3
  427. dev: true
  428. /@babel/plugin-proposal-optional-catch-binding/7.14.2_@babel+core@7.14.3:
  429. resolution: {integrity: sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==}
  430. peerDependencies:
  431. '@babel/core': ^7.0.0-0
  432. dependencies:
  433. '@babel/core': 7.14.3
  434. '@babel/helper-plugin-utils': 7.13.0
  435. '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.3
  436. dev: true
  437. /@babel/plugin-proposal-optional-chaining/7.14.2_@babel+core@7.14.3:
  438. resolution: {integrity: sha512-qQByMRPwMZJainfig10BoaDldx/+VDtNcrA7qdNaEOAj6VXud+gfrkA8j4CRAU5HjnWREXqIpSpH30qZX1xivA==}
  439. peerDependencies:
  440. '@babel/core': ^7.0.0-0
  441. dependencies:
  442. '@babel/core': 7.14.3
  443. '@babel/helper-plugin-utils': 7.13.0
  444. '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
  445. '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.3
  446. dev: true
  447. /@babel/plugin-proposal-private-methods/7.13.0_@babel+core@7.14.3:
  448. resolution: {integrity: sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==}
  449. peerDependencies:
  450. '@babel/core': ^7.0.0-0
  451. dependencies:
  452. '@babel/core': 7.14.3
  453. '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.3
  454. '@babel/helper-plugin-utils': 7.13.0
  455. transitivePeerDependencies:
  456. - supports-color
  457. dev: true
  458. /@babel/plugin-proposal-private-property-in-object/7.14.0_@babel+core@7.14.3:
  459. resolution: {integrity: sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==}
  460. peerDependencies:
  461. '@babel/core': ^7.0.0-0
  462. dependencies:
  463. '@babel/core': 7.14.3
  464. '@babel/helper-annotate-as-pure': 7.12.13
  465. '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.14.3
  466. '@babel/helper-plugin-utils': 7.13.0
  467. '@babel/plugin-syntax-private-property-in-object': 7.14.0_@babel+core@7.14.3
  468. transitivePeerDependencies:
  469. - supports-color
  470. dev: true
  471. /@babel/plugin-proposal-unicode-property-regex/7.12.13_@babel+core@7.14.3:
  472. resolution: {integrity: sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==}
  473. engines: {node: '>=4'}
  474. peerDependencies:
  475. '@babel/core': ^7.0.0-0
  476. dependencies:
  477. '@babel/core': 7.14.3
  478. '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.14.3
  479. '@babel/helper-plugin-utils': 7.13.0
  480. dev: true
  481. /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.14.3:
  482. resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
  483. peerDependencies:
  484. '@babel/core': ^7.0.0-0
  485. dependencies:
  486. '@babel/core': 7.14.3
  487. '@babel/helper-plugin-utils': 7.13.0
  488. dev: true
  489. /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.14.3:
  490. resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
  491. peerDependencies:
  492. '@babel/core': ^7.0.0-0
  493. dependencies:
  494. '@babel/core': 7.14.3
  495. '@babel/helper-plugin-utils': 7.13.0
  496. dev: true
  497. /@babel/plugin-syntax-class-static-block/7.12.13_@babel+core@7.14.3:
  498. resolution: {integrity: sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==}
  499. peerDependencies:
  500. '@babel/core': ^7.0.0-0
  501. dependencies:
  502. '@babel/core': 7.14.3
  503. '@babel/helper-plugin-utils': 7.13.0
  504. dev: true
  505. /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.14.3:
  506. resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
  507. peerDependencies:
  508. '@babel/core': ^7.0.0-0
  509. dependencies:
  510. '@babel/core': 7.14.3
  511. '@babel/helper-plugin-utils': 7.13.0
  512. dev: true
  513. /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.14.3:
  514. resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
  515. peerDependencies:
  516. '@babel/core': ^7.0.0-0
  517. dependencies:
  518. '@babel/core': 7.14.3
  519. '@babel/helper-plugin-utils': 7.13.0
  520. dev: true
  521. /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.14.3:
  522. resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
  523. peerDependencies:
  524. '@babel/core': ^7.0.0-0
  525. dependencies:
  526. '@babel/core': 7.14.3
  527. '@babel/helper-plugin-utils': 7.13.0
  528. dev: true
  529. /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.14.3:
  530. resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
  531. peerDependencies:
  532. '@babel/core': ^7.0.0-0
  533. dependencies:
  534. '@babel/core': 7.14.3
  535. '@babel/helper-plugin-utils': 7.13.0
  536. dev: true
  537. /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.14.3:
  538. resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
  539. peerDependencies:
  540. '@babel/core': ^7.0.0-0
  541. dependencies:
  542. '@babel/core': 7.14.3
  543. '@babel/helper-plugin-utils': 7.13.0
  544. dev: true
  545. /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.14.3:
  546. resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
  547. peerDependencies:
  548. '@babel/core': ^7.0.0-0
  549. dependencies:
  550. '@babel/core': 7.14.3
  551. '@babel/helper-plugin-utils': 7.13.0
  552. dev: true
  553. /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.14.3:
  554. resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
  555. peerDependencies:
  556. '@babel/core': ^7.0.0-0
  557. dependencies:
  558. '@babel/core': 7.14.3
  559. '@babel/helper-plugin-utils': 7.13.0
  560. dev: true
  561. /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.14.3:
  562. resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
  563. peerDependencies:
  564. '@babel/core': ^7.0.0-0
  565. dependencies:
  566. '@babel/core': 7.14.3
  567. '@babel/helper-plugin-utils': 7.13.0
  568. dev: true
  569. /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.14.3:
  570. resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
  571. peerDependencies:
  572. '@babel/core': ^7.0.0-0
  573. dependencies:
  574. '@babel/core': 7.14.3
  575. '@babel/helper-plugin-utils': 7.13.0
  576. dev: true
  577. /@babel/plugin-syntax-private-property-in-object/7.14.0_@babel+core@7.14.3:
  578. resolution: {integrity: sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==}
  579. peerDependencies:
  580. '@babel/core': ^7.0.0-0
  581. dependencies:
  582. '@babel/core': 7.14.3
  583. '@babel/helper-plugin-utils': 7.13.0
  584. dev: true
  585. /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.14.3:
  586. resolution: {integrity: sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==}
  587. peerDependencies:
  588. '@babel/core': ^7.0.0-0
  589. dependencies:
  590. '@babel/core': 7.14.3
  591. '@babel/helper-plugin-utils': 7.13.0
  592. dev: true
  593. /@babel/plugin-transform-arrow-functions/7.13.0_@babel+core@7.14.3:
  594. resolution: {integrity: sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==}
  595. peerDependencies:
  596. '@babel/core': ^7.0.0-0
  597. dependencies:
  598. '@babel/core': 7.14.3
  599. '@babel/helper-plugin-utils': 7.13.0
  600. dev: true
  601. /@babel/plugin-transform-async-to-generator/7.13.0_@babel+core@7.14.3:
  602. resolution: {integrity: sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==}
  603. peerDependencies:
  604. '@babel/core': ^7.0.0-0
  605. dependencies:
  606. '@babel/core': 7.14.3
  607. '@babel/helper-module-imports': 7.13.12
  608. '@babel/helper-plugin-utils': 7.13.0
  609. '@babel/helper-remap-async-to-generator': 7.13.0
  610. transitivePeerDependencies:
  611. - supports-color
  612. dev: true
  613. /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.14.3:
  614. resolution: {integrity: sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==}
  615. peerDependencies:
  616. '@babel/core': ^7.0.0-0
  617. dependencies:
  618. '@babel/core': 7.14.3
  619. '@babel/helper-plugin-utils': 7.13.0
  620. dev: true
  621. /@babel/plugin-transform-block-scoping/7.14.2_@babel+core@7.14.3:
  622. resolution: {integrity: sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg==}
  623. peerDependencies:
  624. '@babel/core': ^7.0.0-0
  625. dependencies:
  626. '@babel/core': 7.14.3
  627. '@babel/helper-plugin-utils': 7.13.0
  628. dev: true
  629. /@babel/plugin-transform-classes/7.14.2_@babel+core@7.14.3:
  630. resolution: {integrity: sha512-7oafAVcucHquA/VZCsXv/gmuiHeYd64UJyyTYU+MPfNu0KeNlxw06IeENBO8bJjXVbolu+j1MM5aKQtH1OMCNg==}
  631. peerDependencies:
  632. '@babel/core': ^7.0.0-0
  633. dependencies:
  634. '@babel/core': 7.14.3
  635. '@babel/helper-annotate-as-pure': 7.12.13
  636. '@babel/helper-function-name': 7.14.2
  637. '@babel/helper-optimise-call-expression': 7.12.13
  638. '@babel/helper-plugin-utils': 7.13.0
  639. '@babel/helper-replace-supers': 7.14.3
  640. '@babel/helper-split-export-declaration': 7.12.13
  641. globals: 11.12.0
  642. transitivePeerDependencies:
  643. - supports-color
  644. dev: true
  645. /@babel/plugin-transform-computed-properties/7.13.0_@babel+core@7.14.3:
  646. resolution: {integrity: sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==}
  647. peerDependencies:
  648. '@babel/core': ^7.0.0-0
  649. dependencies:
  650. '@babel/core': 7.14.3
  651. '@babel/helper-plugin-utils': 7.13.0
  652. dev: true
  653. /@babel/plugin-transform-destructuring/7.13.17_@babel+core@7.14.3:
  654. resolution: {integrity: sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==}
  655. peerDependencies:
  656. '@babel/core': ^7.0.0-0
  657. dependencies:
  658. '@babel/core': 7.14.3
  659. '@babel/helper-plugin-utils': 7.13.0
  660. dev: true
  661. /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.14.3:
  662. resolution: {integrity: sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==}
  663. peerDependencies:
  664. '@babel/core': ^7.0.0-0
  665. dependencies:
  666. '@babel/core': 7.14.3
  667. '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.14.3
  668. '@babel/helper-plugin-utils': 7.13.0
  669. dev: true
  670. /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.14.3:
  671. resolution: {integrity: sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==}
  672. peerDependencies:
  673. '@babel/core': ^7.0.0-0
  674. dependencies:
  675. '@babel/core': 7.14.3
  676. '@babel/helper-plugin-utils': 7.13.0
  677. dev: true
  678. /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.14.3:
  679. resolution: {integrity: sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==}
  680. peerDependencies:
  681. '@babel/core': ^7.0.0-0
  682. dependencies:
  683. '@babel/core': 7.14.3
  684. '@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13
  685. '@babel/helper-plugin-utils': 7.13.0
  686. dev: true
  687. /@babel/plugin-transform-for-of/7.13.0_@babel+core@7.14.3:
  688. resolution: {integrity: sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==}
  689. peerDependencies:
  690. '@babel/core': ^7.0.0-0
  691. dependencies:
  692. '@babel/core': 7.14.3
  693. '@babel/helper-plugin-utils': 7.13.0
  694. dev: true
  695. /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.14.3:
  696. resolution: {integrity: sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==}
  697. peerDependencies:
  698. '@babel/core': ^7.0.0-0
  699. dependencies:
  700. '@babel/core': 7.14.3
  701. '@babel/helper-function-name': 7.14.2
  702. '@babel/helper-plugin-utils': 7.13.0
  703. dev: true
  704. /@babel/plugin-transform-literals/7.12.13_@babel+core@7.14.3:
  705. resolution: {integrity: sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==}
  706. peerDependencies:
  707. '@babel/core': ^7.0.0-0
  708. dependencies:
  709. '@babel/core': 7.14.3
  710. '@babel/helper-plugin-utils': 7.13.0
  711. dev: true
  712. /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.14.3:
  713. resolution: {integrity: sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==}
  714. peerDependencies:
  715. '@babel/core': ^7.0.0-0
  716. dependencies:
  717. '@babel/core': 7.14.3
  718. '@babel/helper-plugin-utils': 7.13.0
  719. dev: true
  720. /@babel/plugin-transform-modules-amd/7.14.2_@babel+core@7.14.3:
  721. resolution: {integrity: sha512-hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw==}
  722. peerDependencies:
  723. '@babel/core': ^7.0.0-0
  724. dependencies:
  725. '@babel/core': 7.14.3
  726. '@babel/helper-module-transforms': 7.14.2
  727. '@babel/helper-plugin-utils': 7.13.0
  728. babel-plugin-dynamic-import-node: 2.3.3
  729. transitivePeerDependencies:
  730. - supports-color
  731. dev: true
  732. /@babel/plugin-transform-modules-commonjs/7.14.0_@babel+core@7.14.3:
  733. resolution: {integrity: sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==}
  734. peerDependencies:
  735. '@babel/core': ^7.0.0-0
  736. dependencies:
  737. '@babel/core': 7.14.3
  738. '@babel/helper-module-transforms': 7.14.2
  739. '@babel/helper-plugin-utils': 7.13.0
  740. '@babel/helper-simple-access': 7.13.12
  741. babel-plugin-dynamic-import-node: 2.3.3
  742. transitivePeerDependencies:
  743. - supports-color
  744. dev: true
  745. /@babel/plugin-transform-modules-systemjs/7.13.8_@babel+core@7.14.3:
  746. resolution: {integrity: sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==}
  747. peerDependencies:
  748. '@babel/core': ^7.0.0-0
  749. dependencies:
  750. '@babel/core': 7.14.3
  751. '@babel/helper-hoist-variables': 7.13.16
  752. '@babel/helper-module-transforms': 7.14.2
  753. '@babel/helper-plugin-utils': 7.13.0
  754. '@babel/helper-validator-identifier': 7.14.0
  755. babel-plugin-dynamic-import-node: 2.3.3
  756. transitivePeerDependencies:
  757. - supports-color
  758. dev: true
  759. /@babel/plugin-transform-modules-umd/7.14.0_@babel+core@7.14.3:
  760. resolution: {integrity: sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==}
  761. peerDependencies:
  762. '@babel/core': ^7.0.0-0
  763. dependencies:
  764. '@babel/core': 7.14.3
  765. '@babel/helper-module-transforms': 7.14.2
  766. '@babel/helper-plugin-utils': 7.13.0
  767. transitivePeerDependencies:
  768. - supports-color
  769. dev: true
  770. /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.14.3:
  771. resolution: {integrity: sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==}
  772. peerDependencies:
  773. '@babel/core': ^7.0.0
  774. dependencies:
  775. '@babel/core': 7.14.3
  776. '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.14.3
  777. dev: true
  778. /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.14.3:
  779. resolution: {integrity: sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==}
  780. peerDependencies:
  781. '@babel/core': ^7.0.0-0
  782. dependencies:
  783. '@babel/core': 7.14.3
  784. '@babel/helper-plugin-utils': 7.13.0
  785. dev: true
  786. /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.14.3:
  787. resolution: {integrity: sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==}
  788. peerDependencies:
  789. '@babel/core': ^7.0.0-0
  790. dependencies:
  791. '@babel/core': 7.14.3
  792. '@babel/helper-plugin-utils': 7.13.0
  793. '@babel/helper-replace-supers': 7.14.3
  794. transitivePeerDependencies:
  795. - supports-color
  796. dev: true
  797. /@babel/plugin-transform-parameters/7.14.2_@babel+core@7.14.3:
  798. resolution: {integrity: sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==}
  799. peerDependencies:
  800. '@babel/core': ^7.0.0-0
  801. dependencies:
  802. '@babel/core': 7.14.3
  803. '@babel/helper-plugin-utils': 7.13.0
  804. dev: true
  805. /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.14.3:
  806. resolution: {integrity: sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==}
  807. peerDependencies:
  808. '@babel/core': ^7.0.0-0
  809. dependencies:
  810. '@babel/core': 7.14.3
  811. '@babel/helper-plugin-utils': 7.13.0
  812. dev: true
  813. /@babel/plugin-transform-regenerator/7.13.15_@babel+core@7.14.3:
  814. resolution: {integrity: sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==}
  815. peerDependencies:
  816. '@babel/core': ^7.0.0-0
  817. dependencies:
  818. '@babel/core': 7.14.3
  819. regenerator-transform: 0.14.5
  820. dev: true
  821. /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.14.3:
  822. resolution: {integrity: sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==}
  823. peerDependencies:
  824. '@babel/core': ^7.0.0-0
  825. dependencies:
  826. '@babel/core': 7.14.3
  827. '@babel/helper-plugin-utils': 7.13.0
  828. dev: true
  829. /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.14.3:
  830. resolution: {integrity: sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==}
  831. peerDependencies:
  832. '@babel/core': ^7.0.0-0
  833. dependencies:
  834. '@babel/core': 7.14.3
  835. '@babel/helper-plugin-utils': 7.13.0
  836. dev: true
  837. /@babel/plugin-transform-spread/7.13.0_@babel+core@7.14.3:
  838. resolution: {integrity: sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==}
  839. peerDependencies:
  840. '@babel/core': ^7.0.0-0
  841. dependencies:
  842. '@babel/core': 7.14.3
  843. '@babel/helper-plugin-utils': 7.13.0
  844. '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
  845. dev: true
  846. /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.14.3:
  847. resolution: {integrity: sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==}
  848. peerDependencies:
  849. '@babel/core': ^7.0.0-0
  850. dependencies:
  851. '@babel/core': 7.14.3
  852. '@babel/helper-plugin-utils': 7.13.0
  853. dev: true
  854. /@babel/plugin-transform-template-literals/7.13.0_@babel+core@7.14.3:
  855. resolution: {integrity: sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==}
  856. peerDependencies:
  857. '@babel/core': ^7.0.0-0
  858. dependencies:
  859. '@babel/core': 7.14.3
  860. '@babel/helper-plugin-utils': 7.13.0
  861. dev: true
  862. /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.14.3:
  863. resolution: {integrity: sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==}
  864. peerDependencies:
  865. '@babel/core': ^7.0.0-0
  866. dependencies:
  867. '@babel/core': 7.14.3
  868. '@babel/helper-plugin-utils': 7.13.0
  869. dev: true
  870. /@babel/plugin-transform-unicode-escapes/7.12.13_@babel+core@7.14.3:
  871. resolution: {integrity: sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==}
  872. peerDependencies:
  873. '@babel/core': ^7.0.0-0
  874. dependencies:
  875. '@babel/core': 7.14.3
  876. '@babel/helper-plugin-utils': 7.13.0
  877. dev: true
  878. /@babel/plugin-transform-unicode-regex/7.12.13_@babel+core@7.14.3:
  879. resolution: {integrity: sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==}
  880. peerDependencies:
  881. '@babel/core': ^7.0.0-0
  882. dependencies:
  883. '@babel/core': 7.14.3
  884. '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.14.3
  885. '@babel/helper-plugin-utils': 7.13.0
  886. dev: true
  887. /@babel/preset-env/7.14.2_@babel+core@7.14.3:
  888. resolution: {integrity: sha512-7dD7lVT8GMrE73v4lvDEb85cgcQhdES91BSD7jS/xjC6QY8PnRhux35ac+GCpbiRhp8crexBvZZqnaL6VrY8TQ==}
  889. peerDependencies:
  890. '@babel/core': ^7.0.0-0
  891. dependencies:
  892. '@babel/compat-data': 7.14.0
  893. '@babel/core': 7.14.3
  894. '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3
  895. '@babel/helper-plugin-utils': 7.13.0
  896. '@babel/helper-validator-option': 7.12.17
  897. '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.13.12_@babel+core@7.14.3
  898. '@babel/plugin-proposal-async-generator-functions': 7.14.2_@babel+core@7.14.3
  899. '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.14.3
  900. '@babel/plugin-proposal-class-static-block': 7.14.3_@babel+core@7.14.3
  901. '@babel/plugin-proposal-dynamic-import': 7.14.2_@babel+core@7.14.3
  902. '@babel/plugin-proposal-export-namespace-from': 7.14.2_@babel+core@7.14.3
  903. '@babel/plugin-proposal-json-strings': 7.14.2_@babel+core@7.14.3
  904. '@babel/plugin-proposal-logical-assignment-operators': 7.14.2_@babel+core@7.14.3
  905. '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.2_@babel+core@7.14.3
  906. '@babel/plugin-proposal-numeric-separator': 7.14.2_@babel+core@7.14.3
  907. '@babel/plugin-proposal-object-rest-spread': 7.14.2_@babel+core@7.14.3
  908. '@babel/plugin-proposal-optional-catch-binding': 7.14.2_@babel+core@7.14.3
  909. '@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.3
  910. '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.14.3
  911. '@babel/plugin-proposal-private-property-in-object': 7.14.0_@babel+core@7.14.3
  912. '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.14.3
  913. '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.3
  914. '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.14.3
  915. '@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.3
  916. '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.3
  917. '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.3
  918. '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.3
  919. '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.3
  920. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.3
  921. '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.3
  922. '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.3
  923. '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.3
  924. '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.3
  925. '@babel/plugin-syntax-private-property-in-object': 7.14.0_@babel+core@7.14.3
  926. '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.14.3
  927. '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.14.3
  928. '@babel/plugin-transform-async-to-generator': 7.13.0_@babel+core@7.14.3
  929. '@babel/plugin-transform-block-scoped-functions': 7.12.13_@babel+core@7.14.3
  930. '@babel/plugin-transform-block-scoping': 7.14.2_@babel+core@7.14.3
  931. '@babel/plugin-transform-classes': 7.14.2_@babel+core@7.14.3
  932. '@babel/plugin-transform-computed-properties': 7.13.0_@babel+core@7.14.3
  933. '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.14.3
  934. '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.14.3
  935. '@babel/plugin-transform-duplicate-keys': 7.12.13_@babel+core@7.14.3
  936. '@babel/plugin-transform-exponentiation-operator': 7.12.13_@babel+core@7.14.3
  937. '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.14.3
  938. '@babel/plugin-transform-function-name': 7.12.13_@babel+core@7.14.3
  939. '@babel/plugin-transform-literals': 7.12.13_@babel+core@7.14.3
  940. '@babel/plugin-transform-member-expression-literals': 7.12.13_@babel+core@7.14.3
  941. '@babel/plugin-transform-modules-amd': 7.14.2_@babel+core@7.14.3
  942. '@babel/plugin-transform-modules-commonjs': 7.14.0_@babel+core@7.14.3
  943. '@babel/plugin-transform-modules-systemjs': 7.13.8_@babel+core@7.14.3
  944. '@babel/plugin-transform-modules-umd': 7.14.0_@babel+core@7.14.3
  945. '@babel/plugin-transform-named-capturing-groups-regex': 7.12.13_@babel+core@7.14.3
  946. '@babel/plugin-transform-new-target': 7.12.13_@babel+core@7.14.3
  947. '@babel/plugin-transform-object-super': 7.12.13_@babel+core@7.14.3
  948. '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.3
  949. '@babel/plugin-transform-property-literals': 7.12.13_@babel+core@7.14.3
  950. '@babel/plugin-transform-regenerator': 7.13.15_@babel+core@7.14.3
  951. '@babel/plugin-transform-reserved-words': 7.12.13_@babel+core@7.14.3
  952. '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.14.3
  953. '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.14.3
  954. '@babel/plugin-transform-sticky-regex': 7.12.13_@babel+core@7.14.3
  955. '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.14.3
  956. '@babel/plugin-transform-typeof-symbol': 7.12.13_@babel+core@7.14.3
  957. '@babel/plugin-transform-unicode-escapes': 7.12.13_@babel+core@7.14.3
  958. '@babel/plugin-transform-unicode-regex': 7.12.13_@babel+core@7.14.3
  959. '@babel/preset-modules': 0.1.4_@babel+core@7.14.3
  960. '@babel/types': 7.14.2
  961. babel-plugin-polyfill-corejs2: 0.2.1_@babel+core@7.14.3
  962. babel-plugin-polyfill-corejs3: 0.2.1_@babel+core@7.14.3
  963. babel-plugin-polyfill-regenerator: 0.2.1_@babel+core@7.14.3
  964. core-js-compat: 3.12.1
  965. semver: 6.3.0
  966. transitivePeerDependencies:
  967. - supports-color
  968. dev: true
  969. /@babel/preset-modules/0.1.4_@babel+core@7.14.3:
  970. resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==}
  971. peerDependencies:
  972. '@babel/core': ^7.0.0-0
  973. dependencies:
  974. '@babel/core': 7.14.3
  975. '@babel/helper-plugin-utils': 7.13.0
  976. '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.14.3
  977. '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.14.3
  978. '@babel/types': 7.14.2
  979. esutils: 2.0.3
  980. dev: true
  981. /@babel/runtime/7.14.0:
  982. resolution: {integrity: sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==}
  983. dependencies:
  984. regenerator-runtime: 0.13.7
  985. dev: true
  986. /@babel/template/7.12.13:
  987. resolution: {integrity: sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==}
  988. dependencies:
  989. '@babel/code-frame': 7.12.13
  990. '@babel/parser': 7.14.3
  991. '@babel/types': 7.14.2
  992. dev: true
  993. /@babel/traverse/7.14.2:
  994. resolution: {integrity: sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==}
  995. dependencies:
  996. '@babel/code-frame': 7.12.13
  997. '@babel/generator': 7.14.3
  998. '@babel/helper-function-name': 7.14.2
  999. '@babel/helper-split-export-declaration': 7.12.13
  1000. '@babel/parser': 7.14.3
  1001. '@babel/types': 7.14.2
  1002. debug: 4.3.1
  1003. globals: 11.12.0
  1004. transitivePeerDependencies:
  1005. - supports-color
  1006. dev: true
  1007. /@babel/types/7.14.2:
  1008. resolution: {integrity: sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==}
  1009. dependencies:
  1010. '@babel/helper-validator-identifier': 7.14.0
  1011. to-fast-properties: 2.0.0
  1012. dev: true
  1013. /@brettz9/eslint-plugin/1.0.3_eslint@7.27.0:
  1014. resolution: {integrity: sha512-2ESGw4oZJ5IvkFitzRXzfdUY8hzSPSanQ8i+adzWMQPK7jxxUHkZ6GEslOd7GjHFZIcwqc1xVXVU0itf8zYFGA==}
  1015. engines: {node: '>=10.0.0'}
  1016. peerDependencies:
  1017. eslint: '>=7.20.0'
  1018. dependencies:
  1019. eslint: 7.27.0
  1020. dev: true
  1021. /@brettz9/node-static/0.1.1:
  1022. resolution: {integrity: sha512-HHD3JKDCTxudQ7btLDykPlzLBFl+RM70vC6Zsvey1cr9m67UBOmwiP0f2Bk7IjjU3G1c4vAJCjysVxPkmHs7Ew==}
  1023. engines: {node: '>=10.0.0'}
  1024. hasBin: true
  1025. dependencies:
  1026. colors: 1.4.0
  1027. mime: 2.5.2
  1028. minimatch: 3.0.4
  1029. neodoc: 2.0.2
  1030. dev: true
  1031. /@es-joy/jsdoccomment/0.7.2:
  1032. resolution: {integrity: sha512-i5p0VgxeCXbf5aPLPY9s9Fz6K5BkzYdbRCisw/vEY/FXAxUJ8SiAifPwkFUm0CJrmZ8tFBGW8bUtM7wiE4KTIA==}
  1033. engines: {node: '>=10.0.0'}
  1034. dependencies:
  1035. comment-parser: 1.1.5
  1036. esquery: 1.4.0
  1037. jsdoctypeparser: 9.0.0
  1038. dev: true
  1039. /@eslint/eslintrc/0.4.1:
  1040. resolution: {integrity: sha512-5v7TDE9plVhvxQeWLXDTvFvJBdH6pEsdnl2g/dAptmuFEPedQ4Erq5rsDsX+mvAM610IhNaO2W5V1dOOnDKxkQ==}
  1041. engines: {node: ^10.12.0 || >=12.0.0}
  1042. dependencies:
  1043. ajv: 6.12.6
  1044. debug: 4.3.1
  1045. espree: 7.3.1
  1046. globals: 12.4.0
  1047. ignore: 4.0.6
  1048. import-fresh: 3.3.0
  1049. js-yaml: 3.14.1
  1050. minimatch: 3.0.4
  1051. strip-json-comments: 3.1.1
  1052. transitivePeerDependencies:
  1053. - supports-color
  1054. dev: true
  1055. /@istanbuljs/load-nyc-config/1.1.0:
  1056. resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
  1057. engines: {node: '>=8'}
  1058. dependencies:
  1059. camelcase: 5.3.1
  1060. find-up: 4.1.0
  1061. get-package-type: 0.1.0
  1062. js-yaml: 3.14.1
  1063. resolve-from: 5.0.0
  1064. dev: true
  1065. /@istanbuljs/schema/0.1.3:
  1066. resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
  1067. engines: {node: '>=8'}
  1068. dev: true
  1069. /@mdn/browser-compat-data/2.0.7:
  1070. resolution: {integrity: sha512-GeeM827DlzFFidn1eKkMBiqXFD2oLsnZbaiGhByPl0vcapsRzUL+t9hDoov1swc9rB2jw64R+ihtzC8qOE9wXw==}
  1071. engines: {node: '>=10.0.0'}
  1072. dependencies:
  1073. extend: 3.0.2
  1074. dev: true
  1075. /@rollup/plugin-babel/5.3.0_@babel+core@7.14.3+rollup@2.49.0:
  1076. resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==}
  1077. engines: {node: '>= 10.0.0'}
  1078. peerDependencies:
  1079. '@babel/core': ^7.0.0
  1080. '@types/babel__core': ^7.1.9
  1081. rollup: ^1.20.0||^2.0.0
  1082. peerDependenciesMeta:
  1083. '@types/babel__core':
  1084. optional: true
  1085. dependencies:
  1086. '@babel/core': 7.14.3
  1087. '@babel/helper-module-imports': 7.13.12
  1088. '@rollup/pluginutils': 3.1.0_rollup@2.49.0
  1089. rollup: 2.49.0
  1090. dev: true
  1091. /@rollup/pluginutils/3.1.0_rollup@2.49.0:
  1092. resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
  1093. engines: {node: '>= 8.0.0'}
  1094. peerDependencies:
  1095. rollup: ^1.20.0||^2.0.0
  1096. dependencies:
  1097. '@types/estree': 0.0.39
  1098. estree-walker: 1.0.1
  1099. picomatch: 2.3.0
  1100. rollup: 2.49.0
  1101. dev: true
  1102. /@tokenizer/token/0.1.1:
  1103. resolution: {integrity: sha512-XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w==}
  1104. dev: true
  1105. /@types/debug/4.1.5:
  1106. resolution: {integrity: sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ==}
  1107. dev: true
  1108. /@types/estree/0.0.39:
  1109. resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
  1110. dev: true
  1111. /@types/json5/0.0.29:
  1112. resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
  1113. dev: true
  1114. /@types/minimist/1.2.1:
  1115. resolution: {integrity: sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==}
  1116. dev: true
  1117. /@types/node/15.6.0:
  1118. resolution: {integrity: sha512-gCYSfQpy+LYhOFTKAeE8BkyGqaxmlFxe+n4DKM6DR0wzw/HISUE/hAmkC/KT8Sw5PCJblqg062b3z9gucv3k0A==}
  1119. dev: true
  1120. /@types/normalize-package-data/2.4.0:
  1121. resolution: {integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==}
  1122. dev: true
  1123. /@ungap/promise-all-settled/1.1.2:
  1124. resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==}
  1125. dev: true
  1126. /acorn-jsx/5.3.1_acorn@7.4.1:
  1127. resolution: {integrity: sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==}
  1128. peerDependencies:
  1129. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  1130. dependencies:
  1131. acorn: 7.4.1
  1132. dev: true
  1133. /acorn/7.4.1:
  1134. resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
  1135. engines: {node: '>=0.4.0'}
  1136. hasBin: true
  1137. dev: true
  1138. /aggregate-error/3.1.0:
  1139. resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
  1140. engines: {node: '>=8'}
  1141. dependencies:
  1142. clean-stack: 2.2.0
  1143. indent-string: 4.0.0
  1144. dev: true
  1145. /ajv/6.12.6:
  1146. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  1147. dependencies:
  1148. fast-deep-equal: 3.1.3
  1149. fast-json-stable-stringify: 2.1.0
  1150. json-schema-traverse: 0.4.1
  1151. uri-js: 4.4.1
  1152. dev: true
  1153. /ajv/8.5.0:
  1154. resolution: {integrity: sha512-Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ==}
  1155. dependencies:
  1156. fast-deep-equal: 3.1.3
  1157. json-schema-traverse: 1.0.0
  1158. require-from-string: 2.0.2
  1159. uri-js: 4.4.1
  1160. dev: true
  1161. /ansi-colors/4.1.1:
  1162. resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
  1163. engines: {node: '>=6'}
  1164. dev: true
  1165. /ansi-regex/2.1.1:
  1166. resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=}
  1167. engines: {node: '>=0.10.0'}
  1168. dev: true
  1169. /ansi-regex/3.0.0:
  1170. resolution: {integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=}
  1171. engines: {node: '>=4'}
  1172. dev: true
  1173. /ansi-regex/5.0.0:
  1174. resolution: {integrity: sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==}
  1175. engines: {node: '>=8'}
  1176. dev: true
  1177. /ansi-styles/3.2.1:
  1178. resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
  1179. engines: {node: '>=4'}
  1180. dependencies:
  1181. color-convert: 1.9.3
  1182. dev: true
  1183. /ansi-styles/4.3.0:
  1184. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  1185. engines: {node: '>=8'}
  1186. dependencies:
  1187. color-convert: 2.0.1
  1188. dev: true
  1189. /anymatch/3.1.2:
  1190. resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
  1191. engines: {node: '>= 8'}
  1192. dependencies:
  1193. normalize-path: 3.0.0
  1194. picomatch: 2.3.0
  1195. dev: true
  1196. /append-transform/2.0.0:
  1197. resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==}
  1198. engines: {node: '>=8'}
  1199. dependencies:
  1200. default-require-extensions: 3.0.0
  1201. dev: true
  1202. /archy/1.0.0:
  1203. resolution: {integrity: sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=}
  1204. dev: true
  1205. /argparse/1.0.10:
  1206. resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
  1207. dependencies:
  1208. sprintf-js: 1.0.3
  1209. dev: true
  1210. /argparse/2.0.1:
  1211. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  1212. dev: true
  1213. /array-includes/3.1.3:
  1214. resolution: {integrity: sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==}
  1215. engines: {node: '>= 0.4'}
  1216. dependencies:
  1217. call-bind: 1.0.2
  1218. define-properties: 1.1.3
  1219. es-abstract: 1.18.0
  1220. get-intrinsic: 1.1.1
  1221. is-string: 1.0.6
  1222. dev: true
  1223. /array.prototype.flat/1.2.4:
  1224. resolution: {integrity: sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==}
  1225. engines: {node: '>= 0.4'}
  1226. dependencies:
  1227. call-bind: 1.0.2
  1228. define-properties: 1.1.3
  1229. es-abstract: 1.18.0
  1230. dev: true
  1231. /arrify/1.0.1:
  1232. resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=}
  1233. engines: {node: '>=0.10.0'}
  1234. dev: true
  1235. /assertion-error/1.1.0:
  1236. resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
  1237. dev: true
  1238. /ast-metadata-inferer/0.4.0:
  1239. resolution: {integrity: sha512-tKHdBe8N/Vq2nLAm4YPBVREVZjMux6KrqyPfNQgIbDl0t7HaNSmy8w4OyVHYg/cvyn5BW7o7pVwpjPte89Zhcg==}
  1240. dev: true
  1241. /astral-regex/2.0.0:
  1242. resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
  1243. engines: {node: '>=8'}
  1244. dev: true
  1245. /babel-plugin-dynamic-import-node/2.3.3:
  1246. resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
  1247. dependencies:
  1248. object.assign: 4.1.2
  1249. dev: true
  1250. /babel-plugin-polyfill-corejs2/0.2.1_@babel+core@7.14.3:
  1251. resolution: {integrity: sha512-hXGSPbr6IbjeMyGew+3uGIAkRjBFSOJ9FLDZNOfHuyJZCcoia4nd/72J0bSgvfytcVfUcP/dxEVcUhVJuQRtSw==}
  1252. peerDependencies:
  1253. '@babel/core': ^7.0.0-0
  1254. dependencies:
  1255. '@babel/compat-data': 7.14.0
  1256. '@babel/core': 7.14.3
  1257. '@babel/helper-define-polyfill-provider': 0.2.1_@babel+core@7.14.3
  1258. semver: 6.3.0
  1259. transitivePeerDependencies:
  1260. - supports-color
  1261. dev: true
  1262. /babel-plugin-polyfill-corejs3/0.2.1_@babel+core@7.14.3:
  1263. resolution: {integrity: sha512-WZCqF3DLUhdTD/P381MDJfuP18hdCZ+iqJ+wHtzhWENpsiof284JJ1tMQg1CE+hfCWyG48F7e5gDMk2c3Laz7w==}
  1264. peerDependencies:
  1265. '@babel/core': ^7.0.0-0
  1266. dependencies:
  1267. '@babel/core': 7.14.3
  1268. '@babel/helper-define-polyfill-provider': 0.2.1_@babel+core@7.14.3
  1269. core-js-compat: 3.12.1
  1270. transitivePeerDependencies:
  1271. - supports-color
  1272. dev: true
  1273. /babel-plugin-polyfill-regenerator/0.2.1_@babel+core@7.14.3:
  1274. resolution: {integrity: sha512-T3bYyL3Sll2EtC94v3f+fA8M28q7YPTOZdB++SRHjvYZTvtd+WorMUq3tDTD4Q7Kjk1LG0gGromslKjcO5p2TA==}
  1275. peerDependencies:
  1276. '@babel/core': ^7.0.0-0
  1277. dependencies:
  1278. '@babel/core': 7.14.3
  1279. '@babel/helper-define-polyfill-provider': 0.2.1_@babel+core@7.14.3
  1280. transitivePeerDependencies:
  1281. - supports-color
  1282. dev: true
  1283. /bail/1.0.5:
  1284. resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
  1285. dev: true
  1286. /balanced-match/1.0.2:
  1287. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  1288. dev: true
  1289. /binary-extensions/2.2.0:
  1290. resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
  1291. engines: {node: '>=8'}
  1292. dev: true
  1293. /brace-expansion/1.1.11:
  1294. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  1295. dependencies:
  1296. balanced-match: 1.0.2
  1297. concat-map: 0.0.1
  1298. dev: true
  1299. /braces/3.0.2:
  1300. resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
  1301. engines: {node: '>=8'}
  1302. dependencies:
  1303. fill-range: 7.0.1
  1304. dev: true
  1305. /browser-stdout/1.3.1:
  1306. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  1307. dev: true
  1308. /browserslist/4.16.6:
  1309. resolution: {integrity: sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==}
  1310. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  1311. hasBin: true
  1312. dependencies:
  1313. caniuse-lite: 1.0.30001228
  1314. colorette: 1.2.2
  1315. electron-to-chromium: 1.3.736
  1316. escalade: 3.1.1
  1317. node-releases: 1.1.72
  1318. dev: true
  1319. /buffer-from/1.1.1:
  1320. resolution: {integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==}
  1321. dev: true
  1322. /builtin-modules/3.2.0:
  1323. resolution: {integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==}
  1324. engines: {node: '>=6'}
  1325. dev: true
  1326. /caching-transform/4.0.0:
  1327. resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==}
  1328. engines: {node: '>=8'}
  1329. dependencies:
  1330. hasha: 5.2.2
  1331. make-dir: 3.1.0
  1332. package-hash: 4.0.0
  1333. write-file-atomic: 3.0.3
  1334. dev: true
  1335. /call-bind/1.0.2:
  1336. resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
  1337. dependencies:
  1338. function-bind: 1.1.1
  1339. get-intrinsic: 1.1.1
  1340. dev: true
  1341. /callsites/3.1.0:
  1342. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  1343. engines: {node: '>=6'}
  1344. dev: true
  1345. /camelcase-keys/6.2.2:
  1346. resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
  1347. engines: {node: '>=8'}
  1348. dependencies:
  1349. camelcase: 5.3.1
  1350. map-obj: 4.2.1
  1351. quick-lru: 4.0.1
  1352. dev: true
  1353. /camelcase/5.3.1:
  1354. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  1355. engines: {node: '>=6'}
  1356. dev: true
  1357. /camelcase/6.2.0:
  1358. resolution: {integrity: sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==}
  1359. engines: {node: '>=10'}
  1360. dev: true
  1361. /caniuse-lite/1.0.30001228:
  1362. resolution: {integrity: sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==}
  1363. dev: true
  1364. /chai/4.3.4:
  1365. resolution: {integrity: sha512-yS5H68VYOCtN1cjfwumDSuzn/9c+yza4f3reKXlE5rUg7SFcCEy90gJvydNgOYtblyf4Zi6jIWRnXOgErta0KA==}
  1366. engines: {node: '>=4'}
  1367. dependencies:
  1368. assertion-error: 1.1.0
  1369. check-error: 1.0.2
  1370. deep-eql: 3.0.1
  1371. get-func-name: 2.0.0
  1372. pathval: 1.1.1
  1373. type-detect: 4.0.8
  1374. dev: true
  1375. /chalk/2.4.2:
  1376. resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
  1377. engines: {node: '>=4'}
  1378. dependencies:
  1379. ansi-styles: 3.2.1
  1380. escape-string-regexp: 1.0.5
  1381. supports-color: 5.5.0
  1382. dev: true
  1383. /chalk/4.1.1:
  1384. resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==}
  1385. engines: {node: '>=10'}
  1386. dependencies:
  1387. ansi-styles: 4.3.0
  1388. supports-color: 7.2.0
  1389. dev: true
  1390. /character-entities-legacy/1.1.4:
  1391. resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
  1392. dev: true
  1393. /character-entities/1.2.4:
  1394. resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
  1395. dev: true
  1396. /character-reference-invalid/1.1.4:
  1397. resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
  1398. dev: true
  1399. /check-error/1.0.2:
  1400. resolution: {integrity: sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=}
  1401. dev: true
  1402. /chokidar/3.5.1:
  1403. resolution: {integrity: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==}
  1404. engines: {node: '>= 8.10.0'}
  1405. dependencies:
  1406. anymatch: 3.1.2
  1407. braces: 3.0.2
  1408. glob-parent: 5.1.2
  1409. is-binary-path: 2.1.0
  1410. is-glob: 4.0.1
  1411. normalize-path: 3.0.0
  1412. readdirp: 3.5.0
  1413. optionalDependencies:
  1414. fsevents: 2.3.2
  1415. dev: true
  1416. /ci-info/3.1.1:
  1417. resolution: {integrity: sha512-kdRWLBIJwdsYJWYJFtAFFYxybguqeF91qpZaggjG5Nf8QKdizFG2hjqvaTXbxFIcYbSaD74KpAXv6BSm17DHEQ==}
  1418. dev: true
  1419. /clean-regexp/1.0.0:
  1420. resolution: {integrity: sha1-jffHquUf02h06PjQW5GAvBGj/tc=}
  1421. engines: {node: '>=4'}
  1422. dependencies:
  1423. escape-string-regexp: 1.0.5
  1424. dev: true
  1425. /clean-stack/2.2.0:
  1426. resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
  1427. engines: {node: '>=6'}
  1428. dev: true
  1429. /cliui/6.0.0:
  1430. resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
  1431. dependencies:
  1432. string-width: 4.2.2
  1433. strip-ansi: 6.0.0
  1434. wrap-ansi: 6.2.0
  1435. dev: true
  1436. /cliui/7.0.4:
  1437. resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
  1438. dependencies:
  1439. string-width: 4.2.2
  1440. strip-ansi: 6.0.0
  1441. wrap-ansi: 7.0.0
  1442. dev: true
  1443. /collapse-white-space/1.0.6:
  1444. resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
  1445. dev: true
  1446. /color-convert/1.9.3:
  1447. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  1448. dependencies:
  1449. color-name: 1.1.3
  1450. dev: true
  1451. /color-convert/2.0.1:
  1452. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1453. engines: {node: '>=7.0.0'}
  1454. dependencies:
  1455. color-name: 1.1.4
  1456. dev: true
  1457. /color-name/1.1.3:
  1458. resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
  1459. dev: true
  1460. /color-name/1.1.4:
  1461. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1462. dev: true
  1463. /colorette/1.2.2:
  1464. resolution: {integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==}
  1465. dev: true
  1466. /colors/1.4.0:
  1467. resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
  1468. engines: {node: '>=0.1.90'}
  1469. dev: true
  1470. /commander/2.20.3:
  1471. resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
  1472. dev: true
  1473. /comment-parser/1.1.5:
  1474. resolution: {integrity: sha512-RePCE4leIhBlmrqiYTvaqEeGYg7qpSl4etaIabKtdOQVi+mSTIBBklGUwIr79GXYnl3LpMwmDw4KeR2stNc6FA==}
  1475. engines: {node: '>= 10.0.0'}
  1476. dev: true
  1477. /commondir/1.0.1:
  1478. resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
  1479. dev: true
  1480. /concat-map/0.0.1:
  1481. resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
  1482. dev: true
  1483. /convert-source-map/1.7.0:
  1484. resolution: {integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==}
  1485. dependencies:
  1486. safe-buffer: 5.1.2
  1487. dev: true
  1488. /core-js-bundle/3.12.1:
  1489. resolution: {integrity: sha512-4xo0s+HI15r0HEVLy6LhFoPqVlwQKxgl/tbgDfcRziFa5gAUxyEPUtPVXi2VPcSVYIJ8JSG+SOvy/aLPD7M6Fw==}
  1490. requiresBuild: true
  1491. dev: true
  1492. /core-js-compat/3.12.1:
  1493. resolution: {integrity: sha512-i6h5qODpw6EsHAoIdQhKoZdWn+dGBF3dSS8m5tif36RlWvW3A6+yu2S16QHUo3CrkzrnEskMAt9f8FxmY9fhWQ==}
  1494. dependencies:
  1495. browserslist: 4.16.6
  1496. semver: 7.0.0
  1497. dev: true
  1498. /core-js/3.12.1:
  1499. resolution: {integrity: sha512-Ne9DKPHTObRuB09Dru5AjwKjY4cJHVGu+y5f7coGn1E9Grkc3p2iBwE9AI/nJzsE29mQF7oq+mhYYRqOMFN1Bw==}
  1500. requiresBuild: true
  1501. dev: true
  1502. /cross-spawn/7.0.3:
  1503. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  1504. engines: {node: '>= 8'}
  1505. dependencies:
  1506. path-key: 3.1.1
  1507. shebang-command: 2.0.0
  1508. which: 2.0.2
  1509. dev: true
  1510. /debug/2.6.9:
  1511. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  1512. dependencies:
  1513. ms: 2.0.0
  1514. dev: true
  1515. /debug/3.2.7:
  1516. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  1517. dependencies:
  1518. ms: 2.1.3
  1519. dev: true
  1520. /debug/4.3.1:
  1521. resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==}
  1522. engines: {node: '>=6.0'}
  1523. peerDependencies:
  1524. supports-color: '*'
  1525. peerDependenciesMeta:
  1526. supports-color:
  1527. optional: true
  1528. dependencies:
  1529. ms: 2.1.2
  1530. dev: true
  1531. /debug/4.3.1_supports-color@8.1.1:
  1532. resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==}
  1533. engines: {node: '>=6.0'}
  1534. peerDependencies:
  1535. supports-color: '*'
  1536. peerDependenciesMeta:
  1537. supports-color:
  1538. optional: true
  1539. dependencies:
  1540. ms: 2.1.2
  1541. supports-color: 8.1.1
  1542. dev: true
  1543. /decamelize-keys/1.1.0:
  1544. resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=}
  1545. engines: {node: '>=0.10.0'}
  1546. dependencies:
  1547. decamelize: 1.2.0
  1548. map-obj: 1.0.1
  1549. dev: true
  1550. /decamelize/1.2.0:
  1551. resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=}
  1552. engines: {node: '>=0.10.0'}
  1553. dev: true
  1554. /decamelize/4.0.0:
  1555. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  1556. engines: {node: '>=10'}
  1557. dev: true
  1558. /deep-eql/3.0.1:
  1559. resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==}
  1560. engines: {node: '>=0.12'}
  1561. dependencies:
  1562. type-detect: 4.0.8
  1563. dev: true
  1564. /deep-is/0.1.3:
  1565. resolution: {integrity: sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=}
  1566. dev: true
  1567. /default-require-extensions/3.0.0:
  1568. resolution: {integrity: sha512-ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg==}
  1569. engines: {node: '>=8'}
  1570. dependencies:
  1571. strip-bom: 4.0.0
  1572. dev: true
  1573. /define-properties/1.1.3:
  1574. resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
  1575. engines: {node: '>= 0.4'}
  1576. dependencies:
  1577. object-keys: 1.1.1
  1578. dev: true
  1579. /diff/5.0.0:
  1580. resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==}
  1581. engines: {node: '>=0.3.1'}
  1582. dev: true
  1583. /doctrine/2.1.0:
  1584. resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
  1585. engines: {node: '>=0.10.0'}
  1586. dependencies:
  1587. esutils: 2.0.3
  1588. dev: true
  1589. /doctrine/3.0.0:
  1590. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  1591. engines: {node: '>=6.0.0'}
  1592. dependencies:
  1593. esutils: 2.0.3
  1594. dev: true
  1595. /dom-serializer/1.3.2:
  1596. resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
  1597. dependencies:
  1598. domelementtype: 2.2.0
  1599. domhandler: 4.2.0
  1600. entities: 2.2.0
  1601. dev: true
  1602. /domelementtype/2.2.0:
  1603. resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
  1604. dev: true
  1605. /domhandler/4.2.0:
  1606. resolution: {integrity: sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==}
  1607. engines: {node: '>= 4'}
  1608. dependencies:
  1609. domelementtype: 2.2.0
  1610. dev: true
  1611. /domutils/2.6.0:
  1612. resolution: {integrity: sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA==}
  1613. dependencies:
  1614. dom-serializer: 1.3.2
  1615. domelementtype: 2.2.0
  1616. domhandler: 4.2.0
  1617. dev: true
  1618. /electron-to-chromium/1.3.736:
  1619. resolution: {integrity: sha512-DY8dA7gR51MSo66DqitEQoUMQ0Z+A2DSXFi7tK304bdTVqczCAfUuyQw6Wdg8hIoo5zIxkU1L24RQtUce1Ioig==}
  1620. dev: true
  1621. /emoji-regex/8.0.0:
  1622. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  1623. dev: true
  1624. /enquirer/2.3.6:
  1625. resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
  1626. engines: {node: '>=8.6'}
  1627. dependencies:
  1628. ansi-colors: 4.1.1
  1629. dev: true
  1630. /entities/2.2.0:
  1631. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  1632. dev: true
  1633. /error-ex/1.3.2:
  1634. resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
  1635. dependencies:
  1636. is-arrayish: 0.2.1
  1637. dev: true
  1638. /es-abstract/1.18.0:
  1639. resolution: {integrity: sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==}
  1640. engines: {node: '>= 0.4'}
  1641. dependencies:
  1642. call-bind: 1.0.2
  1643. es-to-primitive: 1.2.1
  1644. function-bind: 1.1.1
  1645. get-intrinsic: 1.1.1
  1646. has: 1.0.3
  1647. has-symbols: 1.0.2
  1648. is-callable: 1.2.3
  1649. is-negative-zero: 2.0.1
  1650. is-regex: 1.1.3
  1651. is-string: 1.0.6
  1652. object-inspect: 1.10.3
  1653. object-keys: 1.1.1
  1654. object.assign: 4.1.2
  1655. string.prototype.trimend: 1.0.4
  1656. string.prototype.trimstart: 1.0.4
  1657. unbox-primitive: 1.0.1
  1658. dev: true
  1659. /es-to-primitive/1.2.1:
  1660. resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
  1661. engines: {node: '>= 0.4'}
  1662. dependencies:
  1663. is-callable: 1.2.3
  1664. is-date-object: 1.0.4
  1665. is-symbol: 1.0.4
  1666. dev: true
  1667. /es6-error/4.1.1:
  1668. resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==}
  1669. dev: true
  1670. /escalade/3.1.1:
  1671. resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
  1672. engines: {node: '>=6'}
  1673. dev: true
  1674. /escape-string-regexp/1.0.5:
  1675. resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
  1676. engines: {node: '>=0.8.0'}
  1677. dev: true
  1678. /escape-string-regexp/4.0.0:
  1679. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  1680. engines: {node: '>=10'}
  1681. dev: true
  1682. /eslint-config-ash-nazg/29.16.0_86bc859d2c4079058d807e5716b4b586:
  1683. resolution: {integrity: sha512-tD/qdNcUek9ZY8rHIWI6gJj/1GGYN73uSqeedu6AMS7YGlz8j0YoUZGhjt7HHMRASf9B3cT44EnMb5xT1QFCmw==}
  1684. engines: {node: '>=10.0.0'}
  1685. peerDependencies:
  1686. '@brettz9/eslint-plugin': ^1.0.3
  1687. eslint: ^7.27.0
  1688. eslint-config-standard: ^16.0.2
  1689. eslint-plugin-array-func: ^3.1.7
  1690. eslint-plugin-compat: ^3.9.0
  1691. eslint-plugin-eslint-comments: ^3.2.0
  1692. eslint-plugin-html: ^6.1.2
  1693. eslint-plugin-import: ^2.23.3
  1694. eslint-plugin-jsdoc: ^35.0.0
  1695. eslint-plugin-markdown: ^2.1.0
  1696. eslint-plugin-no-unsanitized: ^3.1.5
  1697. eslint-plugin-no-use-extend-native: ^0.5.0
  1698. eslint-plugin-node: ^11.1.0
  1699. eslint-plugin-promise: ^5.1.0
  1700. eslint-plugin-radar: ^0.2.1
  1701. eslint-plugin-unicorn: ^32.0.1
  1702. dependencies:
  1703. '@brettz9/eslint-plugin': 1.0.3_eslint@7.27.0
  1704. eslint: 7.27.0
  1705. eslint-config-standard: 16.0.2_54a118fc6338897394bb0683ed693a07
  1706. eslint-plugin-array-func: 3.1.7_eslint@7.27.0
  1707. eslint-plugin-compat: 3.9.0_eslint@7.27.0
  1708. eslint-plugin-eslint-comments: 3.2.0_eslint@7.27.0
  1709. eslint-plugin-html: 6.1.2
  1710. eslint-plugin-import: 2.23.3_eslint@7.27.0
  1711. eslint-plugin-jsdoc: 35.0.0_eslint@7.27.0
  1712. eslint-plugin-markdown: 2.1.0_eslint@7.27.0
  1713. eslint-plugin-no-unsanitized: 3.1.5_eslint@7.27.0
  1714. eslint-plugin-no-use-extend-native: 0.5.0
  1715. eslint-plugin-node: 11.1.0_eslint@7.27.0
  1716. eslint-plugin-promise: 5.1.0_eslint@7.27.0
  1717. eslint-plugin-radar: 0.2.1_eslint@7.27.0
  1718. eslint-plugin-unicorn: 32.0.1_eslint@7.27.0
  1719. semver: 7.3.5
  1720. dev: true
  1721. /eslint-config-standard/16.0.2_54a118fc6338897394bb0683ed693a07:
  1722. resolution: {integrity: sha512-fx3f1rJDsl9bY7qzyX8SAtP8GBSk6MfXFaTfaGgk12aAYW4gJSyRm7dM790L6cbXv63fvjY4XeSzXnb4WM+SKw==}
  1723. peerDependencies:
  1724. eslint: ^7.12.1
  1725. eslint-plugin-import: ^2.22.1
  1726. eslint-plugin-node: ^11.1.0
  1727. eslint-plugin-promise: ^4.2.1
  1728. dependencies:
  1729. eslint: 7.27.0
  1730. eslint-plugin-import: 2.23.3_eslint@7.27.0
  1731. eslint-plugin-node: 11.1.0_eslint@7.27.0
  1732. eslint-plugin-promise: 5.1.0_eslint@7.27.0
  1733. dev: true
  1734. /eslint-import-resolver-node/0.3.4:
  1735. resolution: {integrity: sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==}
  1736. dependencies:
  1737. debug: 2.6.9
  1738. resolve: 1.20.0
  1739. dev: true
  1740. /eslint-module-utils/2.6.1:
  1741. resolution: {integrity: sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==}
  1742. engines: {node: '>=4'}
  1743. dependencies:
  1744. debug: 3.2.7
  1745. pkg-dir: 2.0.0
  1746. dev: true
  1747. /eslint-plugin-array-func/3.1.7_eslint@7.27.0:
  1748. resolution: {integrity: sha512-fB5TBICjHSTGToNTbCCgR8zsngpUkoCM31EMh/M/NEAyNg90i5rUuG0dnNNBML2n0BzM0nBE3sPvo2SEWf6jlA==}
  1749. engines: {node: '>= 6.8.0'}
  1750. peerDependencies:
  1751. eslint: '>=3.0.0'
  1752. dependencies:
  1753. eslint: 7.27.0
  1754. dev: true
  1755. /eslint-plugin-chai-expect/2.2.0_eslint@7.27.0:
  1756. resolution: {integrity: sha512-ExTJKhgeYMfY8wDj3UiZmgpMKJOUHGNHmWMlxT49JUDB1vTnw0sSNfXJSxnX+LcebyBD/gudXzjzD136WqPJrQ==}
  1757. engines: {node: 6.* || 8.* || >= 10.*}
  1758. peerDependencies:
  1759. eslint: '>=2.0.0 <= 7.x'
  1760. dependencies:
  1761. eslint: 7.27.0
  1762. dev: true
  1763. /eslint-plugin-chai-friendly/0.7.1_eslint@7.27.0:
  1764. resolution: {integrity: sha512-0xhGiSQ+9oWtNc6IZPUR+6ChKbEvLXwT9oZZ5NcGlPzHVKGn1YKwQFj7a9yL3rnRKbWF7b3RkRYEP8kN6dPOwQ==}
  1765. engines: {node: '>=0.10.0'}
  1766. peerDependencies:
  1767. eslint: '>=3.0.0'
  1768. dependencies:
  1769. eslint: 7.27.0
  1770. dev: true
  1771. /eslint-plugin-compat/3.9.0_eslint@7.27.0:
  1772. resolution: {integrity: sha512-lt3l5PHFHVEYSZ5zijcoYvtQJPsBifRiH5N0Et57KwVu7l/yxmHhSG6VJiLMa/lXrg93Qu8049RNQOMn0+yJBg==}
  1773. engines: {node: '>=9.x'}
  1774. peerDependencies:
  1775. eslint: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
  1776. dependencies:
  1777. '@mdn/browser-compat-data': 2.0.7
  1778. ast-metadata-inferer: 0.4.0
  1779. browserslist: 4.16.6
  1780. caniuse-lite: 1.0.30001228
  1781. core-js: 3.12.1
  1782. eslint: 7.27.0
  1783. find-up: 4.1.0
  1784. lodash.memoize: 4.1.2
  1785. semver: 7.3.2
  1786. dev: true
  1787. /eslint-plugin-es/3.0.1_eslint@7.27.0:
  1788. resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
  1789. engines: {node: '>=8.10.0'}
  1790. peerDependencies:
  1791. eslint: '>=4.19.1'
  1792. dependencies:
  1793. eslint: 7.27.0
  1794. eslint-utils: 2.1.0
  1795. regexpp: 3.1.0
  1796. dev: true
  1797. /eslint-plugin-eslint-comments/3.2.0_eslint@7.27.0:
  1798. resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
  1799. engines: {node: '>=6.5.0'}
  1800. peerDependencies:
  1801. eslint: '>=4.19.1'
  1802. dependencies:
  1803. escape-string-regexp: 1.0.5
  1804. eslint: 7.27.0
  1805. ignore: 5.1.8
  1806. dev: true
  1807. /eslint-plugin-html/6.1.2:
  1808. resolution: {integrity: sha512-bhBIRyZFqI4EoF12lGDHAmgfff8eLXx6R52/K3ESQhsxzCzIE6hdebS7Py651f7U3RBotqroUnC3L29bR7qJWQ==}
  1809. dependencies:
  1810. htmlparser2: 6.1.0
  1811. dev: true
  1812. /eslint-plugin-import/2.23.3_eslint@7.27.0:
  1813. resolution: {integrity: sha512-wDxdYbSB55F7T5CC7ucDjY641VvKmlRwT0Vxh7PkY1mI4rclVRFWYfsrjDgZvwYYDZ5ee0ZtfFKXowWjqvEoRQ==}
  1814. engines: {node: '>=4'}
  1815. peerDependencies:
  1816. eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0
  1817. dependencies:
  1818. array-includes: 3.1.3
  1819. array.prototype.flat: 1.2.4
  1820. debug: 2.6.9
  1821. doctrine: 2.1.0
  1822. eslint: 7.27.0
  1823. eslint-import-resolver-node: 0.3.4
  1824. eslint-module-utils: 2.6.1
  1825. find-up: 2.1.0
  1826. has: 1.0.3
  1827. is-core-module: 2.4.0
  1828. minimatch: 3.0.4
  1829. object.values: 1.1.3
  1830. pkg-up: 2.0.0
  1831. read-pkg-up: 3.0.0
  1832. resolve: 1.20.0
  1833. tsconfig-paths: 3.9.0
  1834. dev: true
  1835. /eslint-plugin-jsdoc/35.0.0_eslint@7.27.0:
  1836. resolution: {integrity: sha512-n92EO6g84qzjF4Lyvg+hDouMQTRHCKvW0hRobGRza0aqbG9fmmlS4p1x8cvPPAc0P87TmahMZnrP0F7hPOcAoQ==}
  1837. engines: {node: '>=12'}
  1838. peerDependencies:
  1839. eslint: ^6.0.0 || ^7.0.0
  1840. dependencies:
  1841. '@es-joy/jsdoccomment': 0.7.2
  1842. comment-parser: 1.1.5
  1843. debug: 4.3.1
  1844. eslint: 7.27.0
  1845. esquery: 1.4.0
  1846. jsdoctypeparser: 9.0.0
  1847. lodash: 4.17.21
  1848. regextras: 0.7.1
  1849. semver: 7.3.5
  1850. spdx-expression-parse: 3.0.1
  1851. transitivePeerDependencies:
  1852. - supports-color
  1853. dev: true
  1854. /eslint-plugin-markdown/2.1.0_eslint@7.27.0:
  1855. resolution: {integrity: sha512-Rqw7tosArdlzXcR/xJGW3Er9gRiF7iE+QEMEm7hZZ/feZjUf8xCaGQJgB1nzs9yVhJnUeiAcj5TXLLfKMbp3DQ==}
  1856. engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0}
  1857. peerDependencies:
  1858. eslint: '>=6.0.0'
  1859. dependencies:
  1860. eslint: 7.27.0
  1861. remark-parse: 7.0.2
  1862. unified: 6.2.0
  1863. dev: true
  1864. /eslint-plugin-no-unsanitized/3.1.5_eslint@7.27.0:
  1865. resolution: {integrity: sha512-s/6w++p1590h/H/dE2Wo660bOkaM/3OEK14Y7xm1UT0bafxkKw1Cq0ksjxkxLdH/WWd014DlsLKuD6CyNrR2Dw==}
  1866. peerDependencies:
  1867. eslint: ^5 || ^6 || ^7
  1868. dependencies:
  1869. eslint: 7.27.0
  1870. dev: true
  1871. /eslint-plugin-no-use-extend-native/0.5.0:
  1872. resolution: {integrity: sha512-dBNjs8hor8rJgeXLH4HTut5eD3RGWf9JUsadIfuL7UosVQ/dnvOKwxEcRrXrFxrMZ8llUVWT+hOimxJABsAUzQ==}
  1873. engines: {node: '>=6.0.0'}
  1874. dependencies:
  1875. is-get-set-prop: 1.0.0
  1876. is-js-type: 2.0.0
  1877. is-obj-prop: 1.0.0
  1878. is-proto-prop: 2.0.0
  1879. dev: true
  1880. /eslint-plugin-node/11.1.0_eslint@7.27.0:
  1881. resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
  1882. engines: {node: '>=8.10.0'}
  1883. peerDependencies:
  1884. eslint: '>=5.16.0'
  1885. dependencies:
  1886. eslint: 7.27.0
  1887. eslint-plugin-es: 3.0.1_eslint@7.27.0
  1888. eslint-utils: 2.1.0
  1889. ignore: 5.1.8
  1890. minimatch: 3.0.4
  1891. resolve: 1.20.0
  1892. semver: 6.3.0
  1893. dev: true
  1894. /eslint-plugin-promise/5.1.0_eslint@7.27.0:
  1895. resolution: {integrity: sha512-NGmI6BH5L12pl7ScQHbg7tvtk4wPxxj8yPHH47NvSmMtFneC077PSeY3huFj06ZWZvtbfxSPt3RuOQD5XcR4ng==}
  1896. engines: {node: ^10.12.0 || >=12.0.0}
  1897. peerDependencies:
  1898. eslint: ^7.0.0
  1899. dependencies:
  1900. eslint: 7.27.0
  1901. dev: true
  1902. /eslint-plugin-radar/0.2.1_eslint@7.27.0:
  1903. resolution: {integrity: sha512-aOc1MK6ddL45X6mS6zEqFIKy/c/qnwjhNycDecaFMw5acUsD744ZCZf2cG7yxLhMv71mBSwr6pZdu+26+Zzk5A==}
  1904. engines: {node: '>=10'}
  1905. peerDependencies:
  1906. eslint: '>= 3.0.0 <= 7.x.x'
  1907. dependencies:
  1908. eslint: 7.27.0
  1909. dev: true
  1910. /eslint-plugin-standard/4.1.0_eslint@7.27.0:
  1911. resolution: {integrity: sha512-ZL7+QRixjTR6/528YNGyDotyffm5OQst/sGxKDwGb9Uqs4In5Egi4+jbobhqJoyoCM6/7v/1A5fhQ7ScMtDjaQ==}
  1912. peerDependencies:
  1913. eslint: '>=5.0.0'
  1914. dependencies:
  1915. eslint: 7.27.0
  1916. dev: true
  1917. /eslint-plugin-unicorn/32.0.1_eslint@7.27.0:
  1918. resolution: {integrity: sha512-LaZ9utnXtOJjnoDkpm+nQsONUUmyRR0WD6PGROSdQRRW3LRmgK/ZP8wxjW+Ai+2uolKTtuJzLx2mvbIeIoLqpg==}
  1919. engines: {node: '>=12'}
  1920. peerDependencies:
  1921. eslint: '>=7.23.0'
  1922. dependencies:
  1923. ci-info: 3.1.1
  1924. clean-regexp: 1.0.0
  1925. eslint: 7.27.0
  1926. eslint-template-visitor: 2.3.2_eslint@7.27.0
  1927. eslint-utils: 2.1.0
  1928. import-modules: 2.1.0
  1929. is-builtin-module: 3.1.0
  1930. lodash: 4.17.21
  1931. pluralize: 8.0.0
  1932. read-pkg-up: 7.0.1
  1933. regexp-tree: 0.1.23
  1934. reserved-words: 0.1.2
  1935. safe-regex: 2.1.1
  1936. semver: 7.3.5
  1937. transitivePeerDependencies:
  1938. - supports-color
  1939. dev: true
  1940. /eslint-scope/5.1.1:
  1941. resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
  1942. engines: {node: '>=8.0.0'}
  1943. dependencies:
  1944. esrecurse: 4.3.0
  1945. estraverse: 4.3.0
  1946. dev: true
  1947. /eslint-template-visitor/2.3.2_eslint@7.27.0:
  1948. resolution: {integrity: sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA==}
  1949. peerDependencies:
  1950. eslint: '>=7.0.0'
  1951. dependencies:
  1952. '@babel/core': 7.14.3
  1953. '@babel/eslint-parser': 7.14.3_@babel+core@7.14.3+eslint@7.27.0
  1954. eslint: 7.27.0
  1955. eslint-visitor-keys: 2.1.0
  1956. esquery: 1.4.0
  1957. multimap: 1.1.0
  1958. transitivePeerDependencies:
  1959. - supports-color
  1960. dev: true
  1961. /eslint-utils/2.1.0:
  1962. resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
  1963. engines: {node: '>=6'}
  1964. dependencies:
  1965. eslint-visitor-keys: 1.3.0
  1966. dev: true
  1967. /eslint-visitor-keys/1.3.0:
  1968. resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
  1969. engines: {node: '>=4'}
  1970. dev: true
  1971. /eslint-visitor-keys/2.1.0:
  1972. resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
  1973. engines: {node: '>=10'}
  1974. dev: true
  1975. /eslint/7.27.0:
  1976. resolution: {integrity: sha512-JZuR6La2ZF0UD384lcbnd0Cgg6QJjiCwhMD6eU4h/VGPcVGwawNNzKU41tgokGXnfjOOyI6QIffthhJTPzzuRA==}
  1977. engines: {node: ^10.12.0 || >=12.0.0}
  1978. hasBin: true
  1979. dependencies:
  1980. '@babel/code-frame': 7.12.11
  1981. '@eslint/eslintrc': 0.4.1
  1982. ajv: 6.12.6
  1983. chalk: 4.1.1
  1984. cross-spawn: 7.0.3
  1985. debug: 4.3.1
  1986. doctrine: 3.0.0
  1987. enquirer: 2.3.6
  1988. escape-string-regexp: 4.0.0
  1989. eslint-scope: 5.1.1
  1990. eslint-utils: 2.1.0
  1991. eslint-visitor-keys: 2.1.0
  1992. espree: 7.3.1
  1993. esquery: 1.4.0
  1994. esutils: 2.0.3
  1995. fast-deep-equal: 3.1.3
  1996. file-entry-cache: 6.0.1
  1997. functional-red-black-tree: 1.0.1
  1998. glob-parent: 5.1.2
  1999. globals: 13.8.0
  2000. ignore: 4.0.6
  2001. import-fresh: 3.3.0
  2002. imurmurhash: 0.1.4
  2003. is-glob: 4.0.1
  2004. js-yaml: 3.14.1
  2005. json-stable-stringify-without-jsonify: 1.0.1
  2006. levn: 0.4.1
  2007. lodash.merge: 4.6.2
  2008. minimatch: 3.0.4
  2009. natural-compare: 1.4.0
  2010. optionator: 0.9.1
  2011. progress: 2.0.3
  2012. regexpp: 3.1.0
  2013. semver: 7.3.5
  2014. strip-ansi: 6.0.0
  2015. strip-json-comments: 3.1.1
  2016. table: 6.7.1
  2017. text-table: 0.2.0
  2018. v8-compile-cache: 2.3.0
  2019. transitivePeerDependencies:
  2020. - supports-color
  2021. dev: true
  2022. /esm/3.2.25:
  2023. resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
  2024. engines: {node: '>=6'}
  2025. dev: true
  2026. /espree/7.3.1:
  2027. resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}
  2028. engines: {node: ^10.12.0 || >=12.0.0}
  2029. dependencies:
  2030. acorn: 7.4.1
  2031. acorn-jsx: 5.3.1_acorn@7.4.1
  2032. eslint-visitor-keys: 1.3.0
  2033. dev: true
  2034. /esprima/4.0.1:
  2035. resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
  2036. engines: {node: '>=4'}
  2037. hasBin: true
  2038. dev: true
  2039. /esquery/1.4.0:
  2040. resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
  2041. engines: {node: '>=0.10'}
  2042. dependencies:
  2043. estraverse: 5.2.0
  2044. dev: true
  2045. /esrecurse/4.3.0:
  2046. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  2047. engines: {node: '>=4.0'}
  2048. dependencies:
  2049. estraverse: 5.2.0
  2050. dev: true
  2051. /estraverse/4.3.0:
  2052. resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
  2053. engines: {node: '>=4.0'}
  2054. dev: true
  2055. /estraverse/5.2.0:
  2056. resolution: {integrity: sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==}
  2057. engines: {node: '>=4.0'}
  2058. dev: true
  2059. /estree-walker/1.0.1:
  2060. resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
  2061. dev: true
  2062. /esutils/2.0.3:
  2063. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  2064. engines: {node: '>=0.10.0'}
  2065. dev: true
  2066. /extend/3.0.2:
  2067. resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
  2068. dev: true
  2069. /fast-deep-equal/3.1.3:
  2070. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  2071. dev: true
  2072. /fast-json-stable-stringify/2.1.0:
  2073. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  2074. dev: true
  2075. /fast-levenshtein/2.0.6:
  2076. resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
  2077. dev: true
  2078. /file-entry-cache/6.0.1:
  2079. resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
  2080. engines: {node: ^10.12.0 || >=12.0.0}
  2081. dependencies:
  2082. flat-cache: 3.0.4
  2083. dev: true
  2084. /file-type/14.7.1:
  2085. resolution: {integrity: sha512-sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA==}
  2086. engines: {node: '>=8'}
  2087. dependencies:
  2088. readable-web-to-node-stream: 2.0.0
  2089. strtok3: 6.0.8
  2090. token-types: 2.1.1
  2091. typedarray-to-buffer: 3.1.5
  2092. dev: true
  2093. /fill-range/7.0.1:
  2094. resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
  2095. engines: {node: '>=8'}
  2096. dependencies:
  2097. to-regex-range: 5.0.1
  2098. dev: true
  2099. /find-cache-dir/3.3.1:
  2100. resolution: {integrity: sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==}
  2101. engines: {node: '>=8'}
  2102. dependencies:
  2103. commondir: 1.0.1
  2104. make-dir: 3.1.0
  2105. pkg-dir: 4.2.0
  2106. dev: true
  2107. /find-up/2.1.0:
  2108. resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
  2109. engines: {node: '>=4'}
  2110. dependencies:
  2111. locate-path: 2.0.0
  2112. dev: true
  2113. /find-up/4.1.0:
  2114. resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  2115. engines: {node: '>=8'}
  2116. dependencies:
  2117. locate-path: 5.0.0
  2118. path-exists: 4.0.0
  2119. dev: true
  2120. /find-up/5.0.0:
  2121. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  2122. engines: {node: '>=10'}
  2123. dependencies:
  2124. locate-path: 6.0.0
  2125. path-exists: 4.0.0
  2126. dev: true
  2127. /flat-cache/3.0.4:
  2128. resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
  2129. engines: {node: ^10.12.0 || >=12.0.0}
  2130. dependencies:
  2131. flatted: 3.1.1
  2132. rimraf: 3.0.2
  2133. dev: true
  2134. /flat/5.0.2:
  2135. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  2136. hasBin: true
  2137. dev: true
  2138. /flatted/3.1.1:
  2139. resolution: {integrity: sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==}
  2140. dev: true
  2141. /foreground-child/2.0.0:
  2142. resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==}
  2143. engines: {node: '>=8.0.0'}
  2144. dependencies:
  2145. cross-spawn: 7.0.3
  2146. signal-exit: 3.0.3
  2147. dev: true
  2148. /fromentries/1.3.2:
  2149. resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==}
  2150. dev: true
  2151. /fs.realpath/1.0.0:
  2152. resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
  2153. dev: true
  2154. /fsevents/2.3.2:
  2155. resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
  2156. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  2157. os: [darwin]
  2158. dev: true
  2159. optional: true
  2160. /function-bind/1.1.1:
  2161. resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
  2162. dev: true
  2163. /functional-red-black-tree/1.0.1:
  2164. resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=}
  2165. dev: true
  2166. /gensync/1.0.0-beta.2:
  2167. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  2168. engines: {node: '>=6.9.0'}
  2169. dev: true
  2170. /get-caller-file/2.0.5:
  2171. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  2172. engines: {node: 6.* || 8.* || >= 10.*}
  2173. dev: true
  2174. /get-func-name/2.0.0:
  2175. resolution: {integrity: sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=}
  2176. dev: true
  2177. /get-intrinsic/1.1.1:
  2178. resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==}
  2179. dependencies:
  2180. function-bind: 1.1.1
  2181. has: 1.0.3
  2182. has-symbols: 1.0.2
  2183. dev: true
  2184. /get-package-type/0.1.0:
  2185. resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
  2186. engines: {node: '>=8.0.0'}
  2187. dev: true
  2188. /get-set-props/0.1.0:
  2189. resolution: {integrity: sha1-mYR1wXhEVobQsyJG2l3428++jqM=}
  2190. engines: {node: '>=0.10.0'}
  2191. dev: true
  2192. /get-stdin/7.0.0:
  2193. resolution: {integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==}
  2194. engines: {node: '>=8'}
  2195. dev: true
  2196. /glob-parent/5.1.2:
  2197. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  2198. engines: {node: '>= 6'}
  2199. dependencies:
  2200. is-glob: 4.0.1
  2201. dev: true
  2202. /glob/7.1.6:
  2203. resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
  2204. dependencies:
  2205. fs.realpath: 1.0.0
  2206. inflight: 1.0.6
  2207. inherits: 2.0.4
  2208. minimatch: 3.0.4
  2209. once: 1.4.0
  2210. path-is-absolute: 1.0.1
  2211. dev: true
  2212. /glob/7.1.7:
  2213. resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
  2214. dependencies:
  2215. fs.realpath: 1.0.0
  2216. inflight: 1.0.6
  2217. inherits: 2.0.4
  2218. minimatch: 3.0.4
  2219. once: 1.4.0
  2220. path-is-absolute: 1.0.1
  2221. dev: true
  2222. /globals/11.12.0:
  2223. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  2224. engines: {node: '>=4'}
  2225. dev: true
  2226. /globals/12.4.0:
  2227. resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==}
  2228. engines: {node: '>=8'}
  2229. dependencies:
  2230. type-fest: 0.8.1
  2231. dev: true
  2232. /globals/13.8.0:
  2233. resolution: {integrity: sha512-rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q==}
  2234. engines: {node: '>=8'}
  2235. dependencies:
  2236. type-fest: 0.20.2
  2237. dev: true
  2238. /graceful-fs/4.2.6:
  2239. resolution: {integrity: sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==}
  2240. dev: true
  2241. /growl/1.10.5:
  2242. resolution: {integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==}
  2243. engines: {node: '>=4.x'}
  2244. dev: true
  2245. /hard-rejection/2.1.0:
  2246. resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
  2247. engines: {node: '>=6'}
  2248. dev: true
  2249. /has-bigints/1.0.1:
  2250. resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==}
  2251. dev: true
  2252. /has-flag/3.0.0:
  2253. resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
  2254. engines: {node: '>=4'}
  2255. dev: true
  2256. /has-flag/4.0.0:
  2257. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  2258. engines: {node: '>=8'}
  2259. dev: true
  2260. /has-symbols/1.0.2:
  2261. resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==}
  2262. engines: {node: '>= 0.4'}
  2263. dev: true
  2264. /has/1.0.3:
  2265. resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
  2266. engines: {node: '>= 0.4.0'}
  2267. dependencies:
  2268. function-bind: 1.1.1
  2269. dev: true
  2270. /hasha/5.2.2:
  2271. resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
  2272. engines: {node: '>=8'}
  2273. dependencies:
  2274. is-stream: 2.0.0
  2275. type-fest: 0.8.1
  2276. dev: true
  2277. /he/1.2.0:
  2278. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  2279. hasBin: true
  2280. dev: true
  2281. /hosted-git-info/2.8.9:
  2282. resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
  2283. dev: true
  2284. /html-escaper/2.0.2:
  2285. resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
  2286. dev: true
  2287. /htmlparser2/6.1.0:
  2288. resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
  2289. dependencies:
  2290. domelementtype: 2.2.0
  2291. domhandler: 4.2.0
  2292. domutils: 2.6.0
  2293. entities: 2.2.0
  2294. dev: true
  2295. /ieee754/1.2.1:
  2296. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  2297. dev: true
  2298. /ignore/4.0.6:
  2299. resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
  2300. engines: {node: '>= 4'}
  2301. dev: true
  2302. /ignore/5.1.8:
  2303. resolution: {integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==}
  2304. engines: {node: '>= 4'}
  2305. dev: true
  2306. /import-fresh/3.3.0:
  2307. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  2308. engines: {node: '>=6'}
  2309. dependencies:
  2310. parent-module: 1.0.1
  2311. resolve-from: 4.0.0
  2312. dev: true
  2313. /import-modules/2.1.0:
  2314. resolution: {integrity: sha512-8HEWcnkbGpovH9yInoisxaSoIg9Brbul+Ju3Kqe2UsYDUBJD/iQjSgEj0zPcTDPKfPp2fs5xlv1i+JSye/m1/A==}
  2315. engines: {node: '>=8'}
  2316. dev: true
  2317. /imurmurhash/0.1.4:
  2318. resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
  2319. engines: {node: '>=0.8.19'}
  2320. dev: true
  2321. /indent-string/4.0.0:
  2322. resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
  2323. engines: {node: '>=8'}
  2324. dev: true
  2325. /inflight/1.0.6:
  2326. resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
  2327. dependencies:
  2328. once: 1.4.0
  2329. wrappy: 1.0.2
  2330. dev: true
  2331. /inherits/2.0.4:
  2332. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  2333. dev: true
  2334. /is-alphabetical/1.0.4:
  2335. resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
  2336. dev: true
  2337. /is-alphanumerical/1.0.4:
  2338. resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
  2339. dependencies:
  2340. is-alphabetical: 1.0.4
  2341. is-decimal: 1.0.4
  2342. dev: true
  2343. /is-arrayish/0.2.1:
  2344. resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
  2345. dev: true
  2346. /is-bigint/1.0.2:
  2347. resolution: {integrity: sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==}
  2348. dev: true
  2349. /is-binary-path/2.1.0:
  2350. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  2351. engines: {node: '>=8'}
  2352. dependencies:
  2353. binary-extensions: 2.2.0
  2354. dev: true
  2355. /is-boolean-object/1.1.1:
  2356. resolution: {integrity: sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==}
  2357. engines: {node: '>= 0.4'}
  2358. dependencies:
  2359. call-bind: 1.0.2
  2360. dev: true
  2361. /is-buffer/1.1.6:
  2362. resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
  2363. dev: true
  2364. /is-builtin-module/3.1.0:
  2365. resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==}
  2366. engines: {node: '>=6'}
  2367. dependencies:
  2368. builtin-modules: 3.2.0
  2369. dev: true
  2370. /is-callable/1.2.3:
  2371. resolution: {integrity: sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==}
  2372. engines: {node: '>= 0.4'}
  2373. dev: true
  2374. /is-core-module/2.4.0:
  2375. resolution: {integrity: sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==}
  2376. dependencies:
  2377. has: 1.0.3
  2378. dev: true
  2379. /is-date-object/1.0.4:
  2380. resolution: {integrity: sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==}
  2381. engines: {node: '>= 0.4'}
  2382. dev: true
  2383. /is-decimal/1.0.4:
  2384. resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
  2385. dev: true
  2386. /is-docker/2.2.1:
  2387. resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
  2388. engines: {node: '>=8'}
  2389. hasBin: true
  2390. dev: true
  2391. /is-extglob/2.1.1:
  2392. resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
  2393. engines: {node: '>=0.10.0'}
  2394. dev: true
  2395. /is-fullwidth-code-point/2.0.0:
  2396. resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=}
  2397. engines: {node: '>=4'}
  2398. dev: true
  2399. /is-fullwidth-code-point/3.0.0:
  2400. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  2401. engines: {node: '>=8'}
  2402. dev: true
  2403. /is-get-set-prop/1.0.0:
  2404. resolution: {integrity: sha1-JzGHfk14pqae3M5rudaLB3nnYxI=}
  2405. dependencies:
  2406. get-set-props: 0.1.0
  2407. lowercase-keys: 1.0.1
  2408. dev: true
  2409. /is-glob/4.0.1:
  2410. resolution: {integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==}
  2411. engines: {node: '>=0.10.0'}
  2412. dependencies:
  2413. is-extglob: 2.1.1
  2414. dev: true
  2415. /is-hexadecimal/1.0.4:
  2416. resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
  2417. dev: true
  2418. /is-js-type/2.0.0:
  2419. resolution: {integrity: sha1-c2FwBtZZtOtHKbunR9KHgt8PfiI=}
  2420. dependencies:
  2421. js-types: 1.0.0
  2422. dev: true
  2423. /is-negative-zero/2.0.1:
  2424. resolution: {integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==}
  2425. engines: {node: '>= 0.4'}
  2426. dev: true
  2427. /is-number-object/1.0.5:
  2428. resolution: {integrity: sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==}
  2429. engines: {node: '>= 0.4'}
  2430. dev: true
  2431. /is-number/7.0.0:
  2432. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  2433. engines: {node: '>=0.12.0'}
  2434. dev: true
  2435. /is-obj-prop/1.0.0:
  2436. resolution: {integrity: sha1-s03nnEULjXxzqyzfZ9yHWtuF+A4=}
  2437. dependencies:
  2438. lowercase-keys: 1.0.1
  2439. obj-props: 1.3.0
  2440. dev: true
  2441. /is-plain-obj/1.1.0:
  2442. resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=}
  2443. engines: {node: '>=0.10.0'}
  2444. dev: true
  2445. /is-plain-obj/2.1.0:
  2446. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  2447. engines: {node: '>=8'}
  2448. dev: true
  2449. /is-proto-prop/2.0.0:
  2450. resolution: {integrity: sha512-jl3NbQ/fGLv5Jhan4uX+Ge9ohnemqyblWVVCpAvtTQzNFvV2xhJq+esnkIbYQ9F1nITXoLfDDQLp7LBw/zzncg==}
  2451. dependencies:
  2452. lowercase-keys: 1.0.1
  2453. proto-props: 2.0.0
  2454. dev: true
  2455. /is-regex/1.1.3:
  2456. resolution: {integrity: sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==}
  2457. engines: {node: '>= 0.4'}
  2458. dependencies:
  2459. call-bind: 1.0.2
  2460. has-symbols: 1.0.2
  2461. dev: true
  2462. /is-stream/2.0.0:
  2463. resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==}
  2464. engines: {node: '>=8'}
  2465. dev: true
  2466. /is-string/1.0.6:
  2467. resolution: {integrity: sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==}
  2468. engines: {node: '>= 0.4'}
  2469. dev: true
  2470. /is-symbol/1.0.4:
  2471. resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
  2472. engines: {node: '>= 0.4'}
  2473. dependencies:
  2474. has-symbols: 1.0.2
  2475. dev: true
  2476. /is-typedarray/1.0.0:
  2477. resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=}
  2478. dev: true
  2479. /is-whitespace-character/1.0.4:
  2480. resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
  2481. dev: true
  2482. /is-windows/1.0.2:
  2483. resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
  2484. engines: {node: '>=0.10.0'}
  2485. dev: true
  2486. /is-word-character/1.0.4:
  2487. resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==}
  2488. dev: true
  2489. /is-wsl/2.2.0:
  2490. resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
  2491. engines: {node: '>=8'}
  2492. dependencies:
  2493. is-docker: 2.2.1
  2494. dev: true
  2495. /isexe/2.0.0:
  2496. resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
  2497. dev: true
  2498. /istanbul-lib-coverage/3.0.0:
  2499. resolution: {integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==}
  2500. engines: {node: '>=8'}
  2501. dev: true
  2502. /istanbul-lib-hook/3.0.0:
  2503. resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==}
  2504. engines: {node: '>=8'}
  2505. dependencies:
  2506. append-transform: 2.0.0
  2507. dev: true
  2508. /istanbul-lib-instrument/4.0.3:
  2509. resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
  2510. engines: {node: '>=8'}
  2511. dependencies:
  2512. '@babel/core': 7.14.3
  2513. '@istanbuljs/schema': 0.1.3
  2514. istanbul-lib-coverage: 3.0.0
  2515. semver: 6.3.0
  2516. transitivePeerDependencies:
  2517. - supports-color
  2518. dev: true
  2519. /istanbul-lib-processinfo/2.0.2:
  2520. resolution: {integrity: sha512-kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw==}
  2521. engines: {node: '>=8'}
  2522. dependencies:
  2523. archy: 1.0.0
  2524. cross-spawn: 7.0.3
  2525. istanbul-lib-coverage: 3.0.0
  2526. make-dir: 3.1.0
  2527. p-map: 3.0.0
  2528. rimraf: 3.0.2
  2529. uuid: 3.4.0
  2530. dev: true
  2531. /istanbul-lib-report/3.0.0:
  2532. resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
  2533. engines: {node: '>=8'}
  2534. dependencies:
  2535. istanbul-lib-coverage: 3.0.0
  2536. make-dir: 3.1.0
  2537. supports-color: 7.2.0
  2538. dev: true
  2539. /istanbul-lib-source-maps/4.0.0:
  2540. resolution: {integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==}
  2541. engines: {node: '>=8'}
  2542. dependencies:
  2543. debug: 4.3.1
  2544. istanbul-lib-coverage: 3.0.0
  2545. source-map: 0.6.1
  2546. transitivePeerDependencies:
  2547. - supports-color
  2548. dev: true
  2549. /istanbul-reports/3.0.2:
  2550. resolution: {integrity: sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==}
  2551. engines: {node: '>=8'}
  2552. dependencies:
  2553. html-escaper: 2.0.2
  2554. istanbul-lib-report: 3.0.0
  2555. dev: true
  2556. /jest-worker/26.6.2:
  2557. resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
  2558. engines: {node: '>= 10.13.0'}
  2559. dependencies:
  2560. '@types/node': 15.6.0
  2561. merge-stream: 2.0.0
  2562. supports-color: 7.2.0
  2563. dev: true
  2564. /js-tokens/4.0.0:
  2565. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  2566. dev: true
  2567. /js-types/1.0.0:
  2568. resolution: {integrity: sha1-0kLmSU7Vcq08koCfyL7X92h8vwM=}
  2569. engines: {node: '>=0.10.0'}
  2570. dev: true
  2571. /js-yaml/3.14.1:
  2572. resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
  2573. hasBin: true
  2574. dependencies:
  2575. argparse: 1.0.10
  2576. esprima: 4.0.1
  2577. dev: true
  2578. /js-yaml/4.0.0:
  2579. resolution: {integrity: sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==}
  2580. hasBin: true
  2581. dependencies:
  2582. argparse: 2.0.1
  2583. dev: true
  2584. /jsdoctypeparser/9.0.0:
  2585. resolution: {integrity: sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==}
  2586. engines: {node: '>=10'}
  2587. hasBin: true
  2588. dev: true
  2589. /jsesc/0.5.0:
  2590. resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
  2591. hasBin: true
  2592. dev: true
  2593. /jsesc/2.5.2:
  2594. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
  2595. engines: {node: '>=4'}
  2596. hasBin: true
  2597. dev: true
  2598. /json-parse-better-errors/1.0.2:
  2599. resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
  2600. dev: true
  2601. /json-parse-even-better-errors/2.3.1:
  2602. resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
  2603. dev: true
  2604. /json-schema-traverse/0.4.1:
  2605. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  2606. dev: true
  2607. /json-schema-traverse/1.0.0:
  2608. resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
  2609. dev: true
  2610. /json-stable-stringify-without-jsonify/1.0.1:
  2611. resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=}
  2612. dev: true
  2613. /json5/1.0.1:
  2614. resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
  2615. hasBin: true
  2616. dependencies:
  2617. minimist: 1.2.5
  2618. dev: true
  2619. /json5/2.2.0:
  2620. resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==}
  2621. engines: {node: '>=6'}
  2622. hasBin: true
  2623. dependencies:
  2624. minimist: 1.2.5
  2625. dev: true
  2626. /kind-of/6.0.3:
  2627. resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
  2628. engines: {node: '>=0.10.0'}
  2629. dev: true
  2630. /levn/0.4.1:
  2631. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  2632. engines: {node: '>= 0.8.0'}
  2633. dependencies:
  2634. prelude-ls: 1.2.1
  2635. type-check: 0.4.0
  2636. dev: true
  2637. /lines-and-columns/1.1.6:
  2638. resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=}
  2639. dev: true
  2640. /load-json-file/4.0.0:
  2641. resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=}
  2642. engines: {node: '>=4'}
  2643. dependencies:
  2644. graceful-fs: 4.2.6
  2645. parse-json: 4.0.0
  2646. pify: 3.0.0
  2647. strip-bom: 3.0.0
  2648. dev: true
  2649. /locate-path/2.0.0:
  2650. resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=}
  2651. engines: {node: '>=4'}
  2652. dependencies:
  2653. p-locate: 2.0.0
  2654. path-exists: 3.0.0
  2655. dev: true
  2656. /locate-path/5.0.0:
  2657. resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  2658. engines: {node: '>=8'}
  2659. dependencies:
  2660. p-locate: 4.1.0
  2661. dev: true
  2662. /locate-path/6.0.0:
  2663. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  2664. engines: {node: '>=10'}
  2665. dependencies:
  2666. p-locate: 5.0.0
  2667. dev: true
  2668. /lodash.clonedeep/4.5.0:
  2669. resolution: {integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=}
  2670. dev: true
  2671. /lodash.debounce/4.0.8:
  2672. resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
  2673. dev: true
  2674. /lodash.flattendeep/4.4.0:
  2675. resolution: {integrity: sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=}
  2676. dev: true
  2677. /lodash.memoize/4.1.2:
  2678. resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
  2679. dev: true
  2680. /lodash.merge/4.6.2:
  2681. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  2682. dev: true
  2683. /lodash.truncate/4.4.2:
  2684. resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=}
  2685. dev: true
  2686. /lodash/4.17.21:
  2687. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  2688. dev: true
  2689. /log-symbols/4.0.0:
  2690. resolution: {integrity: sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==}
  2691. engines: {node: '>=10'}
  2692. dependencies:
  2693. chalk: 4.1.1
  2694. dev: true
  2695. /lowercase-keys/1.0.1:
  2696. resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
  2697. engines: {node: '>=0.10.0'}
  2698. dev: true
  2699. /lru-cache/6.0.0:
  2700. resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
  2701. engines: {node: '>=10'}
  2702. dependencies:
  2703. yallist: 4.0.0
  2704. dev: true
  2705. /make-dir/3.1.0:
  2706. resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
  2707. engines: {node: '>=8'}
  2708. dependencies:
  2709. semver: 6.3.0
  2710. dev: true
  2711. /map-obj/1.0.1:
  2712. resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=}
  2713. engines: {node: '>=0.10.0'}
  2714. dev: true
  2715. /map-obj/4.2.1:
  2716. resolution: {integrity: sha512-+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ==}
  2717. engines: {node: '>=8'}
  2718. dev: true
  2719. /markdown-escapes/1.0.4:
  2720. resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
  2721. dev: true
  2722. /meow/6.1.1:
  2723. resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
  2724. engines: {node: '>=8'}
  2725. dependencies:
  2726. '@types/minimist': 1.2.1
  2727. camelcase-keys: 6.2.2
  2728. decamelize-keys: 1.1.0
  2729. hard-rejection: 2.1.0
  2730. minimist-options: 4.1.0
  2731. normalize-package-data: 2.5.0
  2732. read-pkg-up: 7.0.1
  2733. redent: 3.0.0
  2734. trim-newlines: 3.0.0
  2735. type-fest: 0.13.1
  2736. yargs-parser: 18.1.3
  2737. dev: true
  2738. /merge-stream/2.0.0:
  2739. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  2740. dev: true
  2741. /mime/2.5.2:
  2742. resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==}
  2743. engines: {node: '>=4.0.0'}
  2744. hasBin: true
  2745. dev: true
  2746. /min-indent/1.0.1:
  2747. resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
  2748. engines: {node: '>=4'}
  2749. dev: true
  2750. /minimatch/3.0.4:
  2751. resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
  2752. dependencies:
  2753. brace-expansion: 1.1.11
  2754. dev: true
  2755. /minimist-options/4.1.0:
  2756. resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
  2757. engines: {node: '>= 6'}
  2758. dependencies:
  2759. arrify: 1.0.1
  2760. is-plain-obj: 1.1.0
  2761. kind-of: 6.0.3
  2762. dev: true
  2763. /minimist/1.2.5:
  2764. resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
  2765. dev: true
  2766. /mocha/8.4.0:
  2767. resolution: {integrity: sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==}
  2768. engines: {node: '>= 10.12.0'}
  2769. hasBin: true
  2770. dependencies:
  2771. '@ungap/promise-all-settled': 1.1.2
  2772. ansi-colors: 4.1.1
  2773. browser-stdout: 1.3.1
  2774. chokidar: 3.5.1
  2775. debug: 4.3.1_supports-color@8.1.1
  2776. diff: 5.0.0
  2777. escape-string-regexp: 4.0.0
  2778. find-up: 5.0.0
  2779. glob: 7.1.6
  2780. growl: 1.10.5
  2781. he: 1.2.0
  2782. js-yaml: 4.0.0
  2783. log-symbols: 4.0.0
  2784. minimatch: 3.0.4
  2785. ms: 2.1.3
  2786. nanoid: 3.1.20
  2787. serialize-javascript: 5.0.1
  2788. strip-json-comments: 3.1.1
  2789. supports-color: 8.1.1
  2790. which: 2.0.2
  2791. wide-align: 1.1.3
  2792. workerpool: 6.1.0
  2793. yargs: 16.2.0
  2794. yargs-parser: 20.2.4
  2795. yargs-unparser: 2.0.0
  2796. dev: true
  2797. /ms/2.0.0:
  2798. resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
  2799. dev: true
  2800. /ms/2.1.2:
  2801. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  2802. dev: true
  2803. /ms/2.1.3:
  2804. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  2805. dev: true
  2806. /multimap/1.1.0:
  2807. resolution: {integrity: sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw==}
  2808. dev: true
  2809. /nanoid/3.1.20:
  2810. resolution: {integrity: sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==}
  2811. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  2812. hasBin: true
  2813. dev: true
  2814. /natural-compare/1.4.0:
  2815. resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
  2816. dev: true
  2817. /neodoc/2.0.2:
  2818. resolution: {integrity: sha512-NAppJ0YecKWdhSXFYCHbo6RutiX8vOt/Jo3l46mUg6pQlpJNaqc5cGxdrW2jITQm5JIYySbFVPDl3RrREXNyPw==}
  2819. dependencies:
  2820. ansi-regex: 2.1.1
  2821. dev: true
  2822. /node-preload/0.2.1:
  2823. resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==}
  2824. engines: {node: '>=8'}
  2825. dependencies:
  2826. process-on-spawn: 1.0.0
  2827. dev: true
  2828. /node-releases/1.1.72:
  2829. resolution: {integrity: sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==}
  2830. dev: true
  2831. /normalize-package-data/2.5.0:
  2832. resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
  2833. dependencies:
  2834. hosted-git-info: 2.8.9
  2835. resolve: 1.20.0
  2836. semver: 5.7.1
  2837. validate-npm-package-license: 3.0.4
  2838. dev: true
  2839. /normalize-path/3.0.0:
  2840. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  2841. engines: {node: '>=0.10.0'}
  2842. dev: true
  2843. /nyc/15.1.0:
  2844. resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==}
  2845. engines: {node: '>=8.9'}
  2846. hasBin: true
  2847. dependencies:
  2848. '@istanbuljs/load-nyc-config': 1.1.0
  2849. '@istanbuljs/schema': 0.1.3
  2850. caching-transform: 4.0.0
  2851. convert-source-map: 1.7.0
  2852. decamelize: 1.2.0
  2853. find-cache-dir: 3.3.1
  2854. find-up: 4.1.0
  2855. foreground-child: 2.0.0
  2856. get-package-type: 0.1.0
  2857. glob: 7.1.7
  2858. istanbul-lib-coverage: 3.0.0
  2859. istanbul-lib-hook: 3.0.0
  2860. istanbul-lib-instrument: 4.0.3
  2861. istanbul-lib-processinfo: 2.0.2
  2862. istanbul-lib-report: 3.0.0
  2863. istanbul-lib-source-maps: 4.0.0
  2864. istanbul-reports: 3.0.2
  2865. make-dir: 3.1.0
  2866. node-preload: 0.2.1
  2867. p-map: 3.0.0
  2868. process-on-spawn: 1.0.0
  2869. resolve-from: 5.0.0
  2870. rimraf: 3.0.2
  2871. signal-exit: 3.0.3
  2872. spawn-wrap: 2.0.0
  2873. test-exclude: 6.0.0
  2874. yargs: 15.4.1
  2875. transitivePeerDependencies:
  2876. - supports-color
  2877. dev: true
  2878. /obj-props/1.3.0:
  2879. resolution: {integrity: sha512-k2Xkjx5wn6eC3537SWAXHzB6lkI81kS+icMKMkh4nG3w7shWG6MaWOBrNvhWVOszrtL5uxdfymQQfPUxwY+2eg==}
  2880. engines: {node: '>=0.10.0'}
  2881. dev: true
  2882. /object-inspect/1.10.3:
  2883. resolution: {integrity: sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==}
  2884. dev: true
  2885. /object-keys/1.1.1:
  2886. resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
  2887. engines: {node: '>= 0.4'}
  2888. dev: true
  2889. /object.assign/4.1.2:
  2890. resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==}
  2891. engines: {node: '>= 0.4'}
  2892. dependencies:
  2893. call-bind: 1.0.2
  2894. define-properties: 1.1.3
  2895. has-symbols: 1.0.2
  2896. object-keys: 1.1.1
  2897. dev: true
  2898. /object.values/1.1.3:
  2899. resolution: {integrity: sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==}
  2900. engines: {node: '>= 0.4'}
  2901. dependencies:
  2902. call-bind: 1.0.2
  2903. define-properties: 1.1.3
  2904. es-abstract: 1.18.0
  2905. has: 1.0.3
  2906. dev: true
  2907. /once/1.4.0:
  2908. resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
  2909. dependencies:
  2910. wrappy: 1.0.2
  2911. dev: true
  2912. /open-cli/6.0.1:
  2913. resolution: {integrity: sha512-A5h8MF3GrT1efn9TiO9LPajDnLtuEiGQT5G8TxWObBlgt1cZJF1YbQo/kNtsD1bJb7HxnT6SaSjzeLq0Rfhygw==}
  2914. engines: {node: '>=10'}
  2915. hasBin: true
  2916. dependencies:
  2917. file-type: 14.7.1
  2918. get-stdin: 7.0.0
  2919. meow: 6.1.1
  2920. open: 7.4.2
  2921. temp-write: 4.0.0
  2922. dev: true
  2923. /open/7.4.2:
  2924. resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
  2925. engines: {node: '>=8'}
  2926. dependencies:
  2927. is-docker: 2.2.1
  2928. is-wsl: 2.2.0
  2929. dev: true
  2930. /optionator/0.9.1:
  2931. resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
  2932. engines: {node: '>= 0.8.0'}
  2933. dependencies:
  2934. deep-is: 0.1.3
  2935. fast-levenshtein: 2.0.6
  2936. levn: 0.4.1
  2937. prelude-ls: 1.2.1
  2938. type-check: 0.4.0
  2939. word-wrap: 1.2.3
  2940. dev: true
  2941. /p-limit/1.3.0:
  2942. resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
  2943. engines: {node: '>=4'}
  2944. dependencies:
  2945. p-try: 1.0.0
  2946. dev: true
  2947. /p-limit/2.3.0:
  2948. resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  2949. engines: {node: '>=6'}
  2950. dependencies:
  2951. p-try: 2.2.0
  2952. dev: true
  2953. /p-limit/3.1.0:
  2954. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  2955. engines: {node: '>=10'}
  2956. dependencies:
  2957. yocto-queue: 0.1.0
  2958. dev: true
  2959. /p-locate/2.0.0:
  2960. resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=}
  2961. engines: {node: '>=4'}
  2962. dependencies:
  2963. p-limit: 1.3.0
  2964. dev: true
  2965. /p-locate/4.1.0:
  2966. resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  2967. engines: {node: '>=8'}
  2968. dependencies:
  2969. p-limit: 2.3.0
  2970. dev: true
  2971. /p-locate/5.0.0:
  2972. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  2973. engines: {node: '>=10'}
  2974. dependencies:
  2975. p-limit: 3.1.0
  2976. dev: true
  2977. /p-map/3.0.0:
  2978. resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
  2979. engines: {node: '>=8'}
  2980. dependencies:
  2981. aggregate-error: 3.1.0
  2982. dev: true
  2983. /p-try/1.0.0:
  2984. resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
  2985. engines: {node: '>=4'}
  2986. dev: true
  2987. /p-try/2.2.0:
  2988. resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  2989. engines: {node: '>=6'}
  2990. dev: true
  2991. /package-hash/4.0.0:
  2992. resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==}
  2993. engines: {node: '>=8'}
  2994. dependencies:
  2995. graceful-fs: 4.2.6
  2996. hasha: 5.2.2
  2997. lodash.flattendeep: 4.4.0
  2998. release-zalgo: 1.0.0
  2999. dev: true
  3000. /parent-module/1.0.1:
  3001. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  3002. engines: {node: '>=6'}
  3003. dependencies:
  3004. callsites: 3.1.0
  3005. dev: true
  3006. /parse-entities/1.2.2:
  3007. resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==}
  3008. dependencies:
  3009. character-entities: 1.2.4
  3010. character-entities-legacy: 1.1.4
  3011. character-reference-invalid: 1.1.4
  3012. is-alphanumerical: 1.0.4
  3013. is-decimal: 1.0.4
  3014. is-hexadecimal: 1.0.4
  3015. dev: true
  3016. /parse-json/4.0.0:
  3017. resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=}
  3018. engines: {node: '>=4'}
  3019. dependencies:
  3020. error-ex: 1.3.2
  3021. json-parse-better-errors: 1.0.2
  3022. dev: true
  3023. /parse-json/5.2.0:
  3024. resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
  3025. engines: {node: '>=8'}
  3026. dependencies:
  3027. '@babel/code-frame': 7.12.13
  3028. error-ex: 1.3.2
  3029. json-parse-even-better-errors: 2.3.1
  3030. lines-and-columns: 1.1.6
  3031. dev: true
  3032. /path-exists/3.0.0:
  3033. resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
  3034. engines: {node: '>=4'}
  3035. dev: true
  3036. /path-exists/4.0.0:
  3037. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  3038. engines: {node: '>=8'}
  3039. dev: true
  3040. /path-is-absolute/1.0.1:
  3041. resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
  3042. engines: {node: '>=0.10.0'}
  3043. dev: true
  3044. /path-key/3.1.1:
  3045. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  3046. engines: {node: '>=8'}
  3047. dev: true
  3048. /path-parse/1.0.6:
  3049. resolution: {integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==}
  3050. dev: true
  3051. /path-type/3.0.0:
  3052. resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
  3053. engines: {node: '>=4'}
  3054. dependencies:
  3055. pify: 3.0.0
  3056. dev: true
  3057. /pathval/1.1.1:
  3058. resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
  3059. dev: true
  3060. /peek-readable/3.1.3:
  3061. resolution: {integrity: sha512-mpAcysyRJxmICBcBa5IXH7SZPvWkcghm6Fk8RekoS3v+BpbSzlZzuWbMx+GXrlUwESi9qHar4nVEZNMKylIHvg==}
  3062. engines: {node: '>=8'}
  3063. dev: true
  3064. /picomatch/2.3.0:
  3065. resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==}
  3066. engines: {node: '>=8.6'}
  3067. dev: true
  3068. /pify/3.0.0:
  3069. resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=}
  3070. engines: {node: '>=4'}
  3071. dev: true
  3072. /pkg-dir/2.0.0:
  3073. resolution: {integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=}
  3074. engines: {node: '>=4'}
  3075. dependencies:
  3076. find-up: 2.1.0
  3077. dev: true
  3078. /pkg-dir/4.2.0:
  3079. resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
  3080. engines: {node: '>=8'}
  3081. dependencies:
  3082. find-up: 4.1.0
  3083. dev: true
  3084. /pkg-up/2.0.0:
  3085. resolution: {integrity: sha1-yBmscoBZpGHKscOImivjxJoATX8=}
  3086. engines: {node: '>=4'}
  3087. dependencies:
  3088. find-up: 2.1.0
  3089. dev: true
  3090. /pluralize/8.0.0:
  3091. resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
  3092. engines: {node: '>=4'}
  3093. dev: true
  3094. /prelude-ls/1.2.1:
  3095. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  3096. engines: {node: '>= 0.8.0'}
  3097. dev: true
  3098. /process-on-spawn/1.0.0:
  3099. resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==}
  3100. engines: {node: '>=8'}
  3101. dependencies:
  3102. fromentries: 1.3.2
  3103. dev: true
  3104. /progress/2.0.3:
  3105. resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
  3106. engines: {node: '>=0.4.0'}
  3107. dev: true
  3108. /proto-props/2.0.0:
  3109. resolution: {integrity: sha512-2yma2tog9VaRZY2mn3Wq51uiSW4NcPYT1cQdBagwyrznrilKSZwIZ0UG3ZPL/mx+axEns0hE35T5ufOYZXEnBQ==}
  3110. engines: {node: '>=4'}
  3111. dev: true
  3112. /punycode/2.1.1:
  3113. resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
  3114. engines: {node: '>=6'}
  3115. dev: true
  3116. /quick-lru/4.0.1:
  3117. resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
  3118. engines: {node: '>=8'}
  3119. dev: true
  3120. /randombytes/2.1.0:
  3121. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  3122. dependencies:
  3123. safe-buffer: 5.2.1
  3124. dev: true
  3125. /read-pkg-up/3.0.0:
  3126. resolution: {integrity: sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=}
  3127. engines: {node: '>=4'}
  3128. dependencies:
  3129. find-up: 2.1.0
  3130. read-pkg: 3.0.0
  3131. dev: true
  3132. /read-pkg-up/7.0.1:
  3133. resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
  3134. engines: {node: '>=8'}
  3135. dependencies:
  3136. find-up: 4.1.0
  3137. read-pkg: 5.2.0
  3138. type-fest: 0.8.1
  3139. dev: true
  3140. /read-pkg/3.0.0:
  3141. resolution: {integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=}
  3142. engines: {node: '>=4'}
  3143. dependencies:
  3144. load-json-file: 4.0.0
  3145. normalize-package-data: 2.5.0
  3146. path-type: 3.0.0
  3147. dev: true
  3148. /read-pkg/5.2.0:
  3149. resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
  3150. engines: {node: '>=8'}
  3151. dependencies:
  3152. '@types/normalize-package-data': 2.4.0
  3153. normalize-package-data: 2.5.0
  3154. parse-json: 5.2.0
  3155. type-fest: 0.6.0
  3156. dev: true
  3157. /readable-web-to-node-stream/2.0.0:
  3158. resolution: {integrity: sha512-+oZJurc4hXpaaqsN68GoZGQAQIA3qr09Or4fqEsargABnbe5Aau8hFn6ISVleT3cpY/0n/8drn7huyyEvTbghA==}
  3159. dev: true
  3160. /readdirp/3.5.0:
  3161. resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==}
  3162. engines: {node: '>=8.10.0'}
  3163. dependencies:
  3164. picomatch: 2.3.0
  3165. dev: true
  3166. /redent/3.0.0:
  3167. resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
  3168. engines: {node: '>=8'}
  3169. dependencies:
  3170. indent-string: 4.0.0
  3171. strip-indent: 3.0.0
  3172. dev: true
  3173. /regenerate-unicode-properties/8.2.0:
  3174. resolution: {integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==}
  3175. engines: {node: '>=4'}
  3176. dependencies:
  3177. regenerate: 1.4.2
  3178. dev: true
  3179. /regenerate/1.4.2:
  3180. resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
  3181. dev: true
  3182. /regenerator-runtime/0.13.7:
  3183. resolution: {integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==}
  3184. dev: true
  3185. /regenerator-transform/0.14.5:
  3186. resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
  3187. dependencies:
  3188. '@babel/runtime': 7.14.0
  3189. dev: true
  3190. /regexp-tree/0.1.23:
  3191. resolution: {integrity: sha512-+7HWfb4Bvu8Rs2eQTUIpX9I/PlQkYOuTNbRpKLJlQpSgwSkzFYh+pUj0gtvglnOZLKB6YgnIgRuJ2/IlpL48qw==}
  3192. hasBin: true
  3193. dev: true
  3194. /regexpp/3.1.0:
  3195. resolution: {integrity: sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==}
  3196. engines: {node: '>=8'}
  3197. dev: true
  3198. /regexpu-core/4.7.1:
  3199. resolution: {integrity: sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==}
  3200. engines: {node: '>=4'}
  3201. dependencies:
  3202. regenerate: 1.4.2
  3203. regenerate-unicode-properties: 8.2.0
  3204. regjsgen: 0.5.2
  3205. regjsparser: 0.6.9
  3206. unicode-match-property-ecmascript: 1.0.4
  3207. unicode-match-property-value-ecmascript: 1.2.0
  3208. dev: true
  3209. /regextras/0.7.1:
  3210. resolution: {integrity: sha512-9YXf6xtW+qzQ+hcMQXx95MOvfqXFgsKDZodX3qZB0x2n5Z94ioetIITsBtvJbiOyxa/6s9AtyweBLCdPmPko/w==}
  3211. engines: {node: '>=0.1.14'}
  3212. dev: true
  3213. /regjsgen/0.5.2:
  3214. resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==}
  3215. dev: true
  3216. /regjsparser/0.6.9:
  3217. resolution: {integrity: sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==}
  3218. hasBin: true
  3219. dependencies:
  3220. jsesc: 0.5.0
  3221. dev: true
  3222. /release-zalgo/1.0.0:
  3223. resolution: {integrity: sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=}
  3224. engines: {node: '>=4'}
  3225. dependencies:
  3226. es6-error: 4.1.1
  3227. dev: true
  3228. /remark-parse/7.0.2:
  3229. resolution: {integrity: sha512-9+my0lQS80IQkYXsMA8Sg6m9QfXYJBnXjWYN5U+kFc5/n69t+XZVXU/ZBYr3cYH8FheEGf1v87rkFDhJ8bVgMA==}
  3230. dependencies:
  3231. collapse-white-space: 1.0.6
  3232. is-alphabetical: 1.0.4
  3233. is-decimal: 1.0.4
  3234. is-whitespace-character: 1.0.4
  3235. is-word-character: 1.0.4
  3236. markdown-escapes: 1.0.4
  3237. parse-entities: 1.2.2
  3238. repeat-string: 1.6.1
  3239. state-toggle: 1.0.3
  3240. trim: 0.0.1
  3241. trim-trailing-lines: 1.1.4
  3242. unherit: 1.1.3
  3243. unist-util-remove-position: 1.1.4
  3244. vfile-location: 2.0.6
  3245. xtend: 4.0.2
  3246. dev: true
  3247. /repeat-string/1.6.1:
  3248. resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
  3249. engines: {node: '>=0.10'}
  3250. dev: true
  3251. /replace-ext/1.0.0:
  3252. resolution: {integrity: sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=}
  3253. engines: {node: '>= 0.10'}
  3254. dev: true
  3255. /require-directory/2.1.1:
  3256. resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
  3257. engines: {node: '>=0.10.0'}
  3258. dev: true
  3259. /require-from-string/2.0.2:
  3260. resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
  3261. engines: {node: '>=0.10.0'}
  3262. dev: true
  3263. /require-main-filename/2.0.0:
  3264. resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
  3265. dev: true
  3266. /reserved-words/0.1.2:
  3267. resolution: {integrity: sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=}
  3268. dev: true
  3269. /resolve-from/4.0.0:
  3270. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  3271. engines: {node: '>=4'}
  3272. dev: true
  3273. /resolve-from/5.0.0:
  3274. resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
  3275. engines: {node: '>=8'}
  3276. dev: true
  3277. /resolve/1.20.0:
  3278. resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==}
  3279. dependencies:
  3280. is-core-module: 2.4.0
  3281. path-parse: 1.0.6
  3282. dev: true
  3283. /rimraf/3.0.2:
  3284. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  3285. hasBin: true
  3286. dependencies:
  3287. glob: 7.1.7
  3288. dev: true
  3289. /rollup-plugin-terser/7.0.2_rollup@2.49.0:
  3290. resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
  3291. peerDependencies:
  3292. rollup: ^2.0.0
  3293. dependencies:
  3294. '@babel/code-frame': 7.12.13
  3295. jest-worker: 26.6.2
  3296. rollup: 2.49.0
  3297. serialize-javascript: 4.0.0
  3298. terser: 5.7.0
  3299. dev: true
  3300. /rollup/2.49.0:
  3301. resolution: {integrity: sha512-UnrCjMXICx9q0jF8L7OYs7LPk95dW0U5UYp/VANnWqfuhyr66FWi/YVlI34Oy8Tp4ZGLcaUDt4APJm80b9oPWQ==}
  3302. engines: {node: '>=10.0.0'}
  3303. hasBin: true
  3304. optionalDependencies:
  3305. fsevents: 2.3.2
  3306. dev: true
  3307. /safe-buffer/5.1.2:
  3308. resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
  3309. dev: true
  3310. /safe-buffer/5.2.1:
  3311. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  3312. dev: true
  3313. /safe-regex/2.1.1:
  3314. resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==}
  3315. dependencies:
  3316. regexp-tree: 0.1.23
  3317. dev: true
  3318. /semver/5.7.1:
  3319. resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
  3320. hasBin: true
  3321. dev: true
  3322. /semver/6.3.0:
  3323. resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
  3324. hasBin: true
  3325. dev: true
  3326. /semver/7.0.0:
  3327. resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
  3328. hasBin: true
  3329. dev: true
  3330. /semver/7.3.2:
  3331. resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==}
  3332. engines: {node: '>=10'}
  3333. hasBin: true
  3334. dev: true
  3335. /semver/7.3.5:
  3336. resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
  3337. engines: {node: '>=10'}
  3338. hasBin: true
  3339. dependencies:
  3340. lru-cache: 6.0.0
  3341. dev: true
  3342. /serialize-javascript/4.0.0:
  3343. resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
  3344. dependencies:
  3345. randombytes: 2.1.0
  3346. dev: true
  3347. /serialize-javascript/5.0.1:
  3348. resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==}
  3349. dependencies:
  3350. randombytes: 2.1.0
  3351. dev: true
  3352. /set-blocking/2.0.0:
  3353. resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=}
  3354. dev: true
  3355. /shebang-command/2.0.0:
  3356. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  3357. engines: {node: '>=8'}
  3358. dependencies:
  3359. shebang-regex: 3.0.0
  3360. dev: true
  3361. /shebang-regex/3.0.0:
  3362. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  3363. engines: {node: '>=8'}
  3364. dev: true
  3365. /signal-exit/3.0.3:
  3366. resolution: {integrity: sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==}
  3367. dev: true
  3368. /slice-ansi/4.0.0:
  3369. resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
  3370. engines: {node: '>=10'}
  3371. dependencies:
  3372. ansi-styles: 4.3.0
  3373. astral-regex: 2.0.0
  3374. is-fullwidth-code-point: 3.0.0
  3375. dev: true
  3376. /source-map-support/0.5.19:
  3377. resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==}
  3378. dependencies:
  3379. buffer-from: 1.1.1
  3380. source-map: 0.6.1
  3381. dev: true
  3382. /source-map/0.5.7:
  3383. resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
  3384. engines: {node: '>=0.10.0'}
  3385. dev: true
  3386. /source-map/0.6.1:
  3387. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  3388. engines: {node: '>=0.10.0'}
  3389. dev: true
  3390. /source-map/0.7.3:
  3391. resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
  3392. engines: {node: '>= 8'}
  3393. dev: true
  3394. /spawn-wrap/2.0.0:
  3395. resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==}
  3396. engines: {node: '>=8'}
  3397. dependencies:
  3398. foreground-child: 2.0.0
  3399. is-windows: 1.0.2
  3400. make-dir: 3.1.0
  3401. rimraf: 3.0.2
  3402. signal-exit: 3.0.3
  3403. which: 2.0.2
  3404. dev: true
  3405. /spdx-correct/3.1.1:
  3406. resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
  3407. dependencies:
  3408. spdx-expression-parse: 3.0.1
  3409. spdx-license-ids: 3.0.9
  3410. dev: true
  3411. /spdx-exceptions/2.3.0:
  3412. resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
  3413. dev: true
  3414. /spdx-expression-parse/3.0.1:
  3415. resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
  3416. dependencies:
  3417. spdx-exceptions: 2.3.0
  3418. spdx-license-ids: 3.0.9
  3419. dev: true
  3420. /spdx-license-ids/3.0.9:
  3421. resolution: {integrity: sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==}
  3422. dev: true
  3423. /sprintf-js/1.0.3:
  3424. resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
  3425. dev: true
  3426. /state-toggle/1.0.3:
  3427. resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
  3428. dev: true
  3429. /string-width/2.1.1:
  3430. resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
  3431. engines: {node: '>=4'}
  3432. dependencies:
  3433. is-fullwidth-code-point: 2.0.0
  3434. strip-ansi: 4.0.0
  3435. dev: true
  3436. /string-width/4.2.2:
  3437. resolution: {integrity: sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==}
  3438. engines: {node: '>=8'}
  3439. dependencies:
  3440. emoji-regex: 8.0.0
  3441. is-fullwidth-code-point: 3.0.0
  3442. strip-ansi: 6.0.0
  3443. dev: true
  3444. /string.prototype.trimend/1.0.4:
  3445. resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==}
  3446. dependencies:
  3447. call-bind: 1.0.2
  3448. define-properties: 1.1.3
  3449. dev: true
  3450. /string.prototype.trimstart/1.0.4:
  3451. resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==}
  3452. dependencies:
  3453. call-bind: 1.0.2
  3454. define-properties: 1.1.3
  3455. dev: true
  3456. /strip-ansi/4.0.0:
  3457. resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=}
  3458. engines: {node: '>=4'}
  3459. dependencies:
  3460. ansi-regex: 3.0.0
  3461. dev: true
  3462. /strip-ansi/6.0.0:
  3463. resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==}
  3464. engines: {node: '>=8'}
  3465. dependencies:
  3466. ansi-regex: 5.0.0
  3467. dev: true
  3468. /strip-bom/3.0.0:
  3469. resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
  3470. engines: {node: '>=4'}
  3471. dev: true
  3472. /strip-bom/4.0.0:
  3473. resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
  3474. engines: {node: '>=8'}
  3475. dev: true
  3476. /strip-indent/3.0.0:
  3477. resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
  3478. engines: {node: '>=8'}
  3479. dependencies:
  3480. min-indent: 1.0.1
  3481. dev: true
  3482. /strip-json-comments/3.1.1:
  3483. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  3484. engines: {node: '>=8'}
  3485. dev: true
  3486. /strtok3/6.0.8:
  3487. resolution: {integrity: sha512-QLgv+oiXwXgCgp2PdPPa+Jpp4D9imK9e/0BsyfeFMr6QL6wMVqoVn9+OXQ9I7MZbmUzN6lmitTJ09uwS2OmGcw==}
  3488. engines: {node: '>=8'}
  3489. dependencies:
  3490. '@tokenizer/token': 0.1.1
  3491. '@types/debug': 4.1.5
  3492. peek-readable: 3.1.3
  3493. dev: true
  3494. /supports-color/5.5.0:
  3495. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  3496. engines: {node: '>=4'}
  3497. dependencies:
  3498. has-flag: 3.0.0
  3499. dev: true
  3500. /supports-color/7.2.0:
  3501. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  3502. engines: {node: '>=8'}
  3503. dependencies:
  3504. has-flag: 4.0.0
  3505. dev: true
  3506. /supports-color/8.1.1:
  3507. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  3508. engines: {node: '>=10'}
  3509. dependencies:
  3510. has-flag: 4.0.0
  3511. dev: true
  3512. /table/6.7.1:
  3513. resolution: {integrity: sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==}
  3514. engines: {node: '>=10.0.0'}
  3515. dependencies:
  3516. ajv: 8.5.0
  3517. lodash.clonedeep: 4.5.0
  3518. lodash.truncate: 4.4.2
  3519. slice-ansi: 4.0.0
  3520. string-width: 4.2.2
  3521. strip-ansi: 6.0.0
  3522. dev: true
  3523. /temp-dir/1.0.0:
  3524. resolution: {integrity: sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=}
  3525. engines: {node: '>=4'}
  3526. dev: true
  3527. /temp-write/4.0.0:
  3528. resolution: {integrity: sha512-HIeWmj77uOOHb0QX7siN3OtwV3CTntquin6TNVg6SHOqCP3hYKmox90eeFOGaY1MqJ9WYDDjkyZrW6qS5AWpbw==}
  3529. engines: {node: '>=8'}
  3530. dependencies:
  3531. graceful-fs: 4.2.6
  3532. is-stream: 2.0.0
  3533. make-dir: 3.1.0
  3534. temp-dir: 1.0.0
  3535. uuid: 3.4.0
  3536. dev: true
  3537. /terser/5.7.0:
  3538. resolution: {integrity: sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==}
  3539. engines: {node: '>=10'}
  3540. hasBin: true
  3541. dependencies:
  3542. commander: 2.20.3
  3543. source-map: 0.7.3
  3544. source-map-support: 0.5.19
  3545. dev: true
  3546. /test-exclude/6.0.0:
  3547. resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
  3548. engines: {node: '>=8'}
  3549. dependencies:
  3550. '@istanbuljs/schema': 0.1.3
  3551. glob: 7.1.7
  3552. minimatch: 3.0.4
  3553. dev: true
  3554. /text-table/0.2.0:
  3555. resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
  3556. dev: true
  3557. /to-fast-properties/2.0.0:
  3558. resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
  3559. engines: {node: '>=4'}
  3560. dev: true
  3561. /to-regex-range/5.0.1:
  3562. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  3563. engines: {node: '>=8.0'}
  3564. dependencies:
  3565. is-number: 7.0.0
  3566. dev: true
  3567. /token-types/2.1.1:
  3568. resolution: {integrity: sha512-wnQcqlreS6VjthyHO3Y/kpK/emflxDBNhlNUPfh7wE39KnuDdOituXomIbyI79vBtF0Ninpkh72mcuRHo+RG3Q==}
  3569. engines: {node: '>=0.1.98'}
  3570. dependencies:
  3571. '@tokenizer/token': 0.1.1
  3572. ieee754: 1.2.1
  3573. dev: true
  3574. /trim-newlines/3.0.0:
  3575. resolution: {integrity: sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==}
  3576. engines: {node: '>=8'}
  3577. dev: true
  3578. /trim-trailing-lines/1.1.4:
  3579. resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==}
  3580. dev: true
  3581. /trim/0.0.1:
  3582. resolution: {integrity: sha1-WFhUf2spB1fulczMZm+1AITEYN0=}
  3583. dev: true
  3584. /trough/1.0.5:
  3585. resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
  3586. dev: true
  3587. /tsconfig-paths/3.9.0:
  3588. resolution: {integrity: sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==}
  3589. dependencies:
  3590. '@types/json5': 0.0.29
  3591. json5: 1.0.1
  3592. minimist: 1.2.5
  3593. strip-bom: 3.0.0
  3594. dev: true
  3595. /type-check/0.4.0:
  3596. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  3597. engines: {node: '>= 0.8.0'}
  3598. dependencies:
  3599. prelude-ls: 1.2.1
  3600. dev: true
  3601. /type-detect/4.0.8:
  3602. resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
  3603. engines: {node: '>=4'}
  3604. dev: true
  3605. /type-fest/0.13.1:
  3606. resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
  3607. engines: {node: '>=10'}
  3608. dev: true
  3609. /type-fest/0.20.2:
  3610. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  3611. engines: {node: '>=10'}
  3612. dev: true
  3613. /type-fest/0.6.0:
  3614. resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
  3615. engines: {node: '>=8'}
  3616. dev: true
  3617. /type-fest/0.8.1:
  3618. resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
  3619. engines: {node: '>=8'}
  3620. dev: true
  3621. /typedarray-to-buffer/3.1.5:
  3622. resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
  3623. dependencies:
  3624. is-typedarray: 1.0.0
  3625. dev: true
  3626. /unbox-primitive/1.0.1:
  3627. resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==}
  3628. dependencies:
  3629. function-bind: 1.1.1
  3630. has-bigints: 1.0.1
  3631. has-symbols: 1.0.2
  3632. which-boxed-primitive: 1.0.2
  3633. dev: true
  3634. /unherit/1.1.3:
  3635. resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
  3636. dependencies:
  3637. inherits: 2.0.4
  3638. xtend: 4.0.2
  3639. dev: true
  3640. /unicode-canonical-property-names-ecmascript/1.0.4:
  3641. resolution: {integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==}
  3642. engines: {node: '>=4'}
  3643. dev: true
  3644. /unicode-match-property-ecmascript/1.0.4:
  3645. resolution: {integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==}
  3646. engines: {node: '>=4'}
  3647. dependencies:
  3648. unicode-canonical-property-names-ecmascript: 1.0.4
  3649. unicode-property-aliases-ecmascript: 1.1.0
  3650. dev: true
  3651. /unicode-match-property-value-ecmascript/1.2.0:
  3652. resolution: {integrity: sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==}
  3653. engines: {node: '>=4'}
  3654. dev: true
  3655. /unicode-property-aliases-ecmascript/1.1.0:
  3656. resolution: {integrity: sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==}
  3657. engines: {node: '>=4'}
  3658. dev: true
  3659. /unified/6.2.0:
  3660. resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==}
  3661. dependencies:
  3662. bail: 1.0.5
  3663. extend: 3.0.2
  3664. is-plain-obj: 1.1.0
  3665. trough: 1.0.5
  3666. vfile: 2.3.0
  3667. x-is-string: 0.1.0
  3668. dev: true
  3669. /unist-util-is/3.0.0:
  3670. resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==}
  3671. dev: true
  3672. /unist-util-remove-position/1.1.4:
  3673. resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==}
  3674. dependencies:
  3675. unist-util-visit: 1.4.1
  3676. dev: true
  3677. /unist-util-stringify-position/1.1.2:
  3678. resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==}
  3679. dev: true
  3680. /unist-util-visit-parents/2.1.2:
  3681. resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==}
  3682. dependencies:
  3683. unist-util-is: 3.0.0
  3684. dev: true
  3685. /unist-util-visit/1.4.1:
  3686. resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==}
  3687. dependencies:
  3688. unist-util-visit-parents: 2.1.2
  3689. dev: true
  3690. /uri-js/4.4.1:
  3691. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  3692. dependencies:
  3693. punycode: 2.1.1
  3694. dev: true
  3695. /uuid/3.4.0:
  3696. resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
  3697. hasBin: true
  3698. dev: true
  3699. /v8-compile-cache/2.3.0:
  3700. resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
  3701. dev: true
  3702. /validate-npm-package-license/3.0.4:
  3703. resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
  3704. dependencies:
  3705. spdx-correct: 3.1.1
  3706. spdx-expression-parse: 3.0.1
  3707. dev: true
  3708. /vfile-location/2.0.6:
  3709. resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==}
  3710. dev: true
  3711. /vfile-message/1.1.1:
  3712. resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==}
  3713. dependencies:
  3714. unist-util-stringify-position: 1.1.2
  3715. dev: true
  3716. /vfile/2.3.0:
  3717. resolution: {integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==}
  3718. dependencies:
  3719. is-buffer: 1.1.6
  3720. replace-ext: 1.0.0
  3721. unist-util-stringify-position: 1.1.2
  3722. vfile-message: 1.1.1
  3723. dev: true
  3724. /which-boxed-primitive/1.0.2:
  3725. resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
  3726. dependencies:
  3727. is-bigint: 1.0.2
  3728. is-boolean-object: 1.1.1
  3729. is-number-object: 1.0.5
  3730. is-string: 1.0.6
  3731. is-symbol: 1.0.4
  3732. dev: true
  3733. /which-module/2.0.0:
  3734. resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=}
  3735. dev: true
  3736. /which/2.0.2:
  3737. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  3738. engines: {node: '>= 8'}
  3739. hasBin: true
  3740. dependencies:
  3741. isexe: 2.0.0
  3742. dev: true
  3743. /wide-align/1.1.3:
  3744. resolution: {integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==}
  3745. dependencies:
  3746. string-width: 2.1.1
  3747. dev: true
  3748. /word-wrap/1.2.3:
  3749. resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
  3750. engines: {node: '>=0.10.0'}
  3751. dev: true
  3752. /workerpool/6.1.0:
  3753. resolution: {integrity: sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==}
  3754. dev: true
  3755. /wrap-ansi/6.2.0:
  3756. resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
  3757. engines: {node: '>=8'}
  3758. dependencies:
  3759. ansi-styles: 4.3.0
  3760. string-width: 4.2.2
  3761. strip-ansi: 6.0.0
  3762. dev: true
  3763. /wrap-ansi/7.0.0:
  3764. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  3765. engines: {node: '>=10'}
  3766. dependencies:
  3767. ansi-styles: 4.3.0
  3768. string-width: 4.2.2
  3769. strip-ansi: 6.0.0
  3770. dev: true
  3771. /wrappy/1.0.2:
  3772. resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
  3773. dev: true
  3774. /write-file-atomic/3.0.3:
  3775. resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
  3776. dependencies:
  3777. imurmurhash: 0.1.4
  3778. is-typedarray: 1.0.0
  3779. signal-exit: 3.0.3
  3780. typedarray-to-buffer: 3.1.5
  3781. dev: true
  3782. /x-is-string/0.1.0:
  3783. resolution: {integrity: sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=}
  3784. dev: true
  3785. /xtend/4.0.2:
  3786. resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
  3787. engines: {node: '>=0.4'}
  3788. dev: true
  3789. /y18n/4.0.3:
  3790. resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
  3791. dev: true
  3792. /y18n/5.0.8:
  3793. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  3794. engines: {node: '>=10'}
  3795. dev: true
  3796. /yallist/4.0.0:
  3797. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  3798. dev: true
  3799. /yargs-parser/18.1.3:
  3800. resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
  3801. engines: {node: '>=6'}
  3802. dependencies:
  3803. camelcase: 5.3.1
  3804. decamelize: 1.2.0
  3805. dev: true
  3806. /yargs-parser/20.2.4:
  3807. resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==}
  3808. engines: {node: '>=10'}
  3809. dev: true
  3810. /yargs-unparser/2.0.0:
  3811. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  3812. engines: {node: '>=10'}
  3813. dependencies:
  3814. camelcase: 6.2.0
  3815. decamelize: 4.0.0
  3816. flat: 5.0.2
  3817. is-plain-obj: 2.1.0
  3818. dev: true
  3819. /yargs/15.4.1:
  3820. resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
  3821. engines: {node: '>=8'}
  3822. dependencies:
  3823. cliui: 6.0.0
  3824. decamelize: 1.2.0
  3825. find-up: 4.1.0
  3826. get-caller-file: 2.0.5
  3827. require-directory: 2.1.1
  3828. require-main-filename: 2.0.0
  3829. set-blocking: 2.0.0
  3830. string-width: 4.2.2
  3831. which-module: 2.0.0
  3832. y18n: 4.0.3
  3833. yargs-parser: 18.1.3
  3834. dev: true
  3835. /yargs/16.2.0:
  3836. resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
  3837. engines: {node: '>=10'}
  3838. dependencies:
  3839. cliui: 7.0.4
  3840. escalade: 3.1.1
  3841. get-caller-file: 2.0.5
  3842. require-directory: 2.1.1
  3843. string-width: 4.2.2
  3844. y18n: 5.0.8
  3845. yargs-parser: 20.2.4
  3846. dev: true
  3847. /yocto-queue/0.1.0:
  3848. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  3849. engines: {node: '>=10'}
  3850. dev: true