Sin descripción

yarn.lock 292KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932
  1. # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
  2. # yarn lockfile v1
  3. "@ampproject/remapping@^2.1.0":
  4. "integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
  5. "resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
  6. "version" "2.2.0"
  7. dependencies:
  8. "@jridgewell/gen-mapping" "^0.1.0"
  9. "@jridgewell/trace-mapping" "^0.3.9"
  10. "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6":
  11. "integrity" "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="
  12. "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"
  13. "version" "7.18.6"
  14. dependencies:
  15. "@babel/highlight" "^7.18.6"
  16. "@babel/code-frame@~7.10.4":
  17. "integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="
  18. "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"
  19. "version" "7.10.4"
  20. dependencies:
  21. "@babel/highlight" "^7.10.4"
  22. "@babel/code-frame@7.10.4":
  23. "integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="
  24. "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"
  25. "version" "7.10.4"
  26. dependencies:
  27. "@babel/highlight" "^7.10.4"
  28. "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.0", "@babel/compat-data@^7.20.1":
  29. "integrity" "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ=="
  30. "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz"
  31. "version" "7.20.1"
  32. "@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.12.0", "@babel/core@^7.12.9", "@babel/core@^7.13.0", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.4.0-0":
  33. "integrity" "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g=="
  34. "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz"
  35. "version" "7.20.2"
  36. dependencies:
  37. "@ampproject/remapping" "^2.1.0"
  38. "@babel/code-frame" "^7.18.6"
  39. "@babel/generator" "^7.20.2"
  40. "@babel/helper-compilation-targets" "^7.20.0"
  41. "@babel/helper-module-transforms" "^7.20.2"
  42. "@babel/helpers" "^7.20.1"
  43. "@babel/parser" "^7.20.2"
  44. "@babel/template" "^7.18.10"
  45. "@babel/traverse" "^7.20.1"
  46. "@babel/types" "^7.20.2"
  47. "convert-source-map" "^1.7.0"
  48. "debug" "^4.1.0"
  49. "gensync" "^1.0.0-beta.2"
  50. "json5" "^2.2.1"
  51. "semver" "^6.3.0"
  52. "@babel/generator@^7.14.0", "@babel/generator@^7.20.1", "@babel/generator@^7.20.2":
  53. "integrity" "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA=="
  54. "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz"
  55. "version" "7.20.4"
  56. dependencies:
  57. "@babel/types" "^7.20.2"
  58. "@jridgewell/gen-mapping" "^0.3.2"
  59. "jsesc" "^2.5.1"
  60. "@babel/helper-annotate-as-pure@^7.18.6":
  61. "integrity" "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="
  62. "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"
  63. "version" "7.18.6"
  64. dependencies:
  65. "@babel/types" "^7.18.6"
  66. "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
  67. "integrity" "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw=="
  68. "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz"
  69. "version" "7.18.9"
  70. dependencies:
  71. "@babel/helper-explode-assignable-expression" "^7.18.6"
  72. "@babel/types" "^7.18.9"
  73. "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0":
  74. "integrity" "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ=="
  75. "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz"
  76. "version" "7.20.0"
  77. dependencies:
  78. "@babel/compat-data" "^7.20.0"
  79. "@babel/helper-validator-option" "^7.18.6"
  80. "browserslist" "^4.21.3"
  81. "semver" "^6.3.0"
  82. "@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.2":
  83. "integrity" "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA=="
  84. "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz"
  85. "version" "7.20.2"
  86. dependencies:
  87. "@babel/helper-annotate-as-pure" "^7.18.6"
  88. "@babel/helper-environment-visitor" "^7.18.9"
  89. "@babel/helper-function-name" "^7.19.0"
  90. "@babel/helper-member-expression-to-functions" "^7.18.9"
  91. "@babel/helper-optimise-call-expression" "^7.18.6"
  92. "@babel/helper-replace-supers" "^7.19.1"
  93. "@babel/helper-split-export-declaration" "^7.18.6"
  94. "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0":
  95. "integrity" "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw=="
  96. "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz"
  97. "version" "7.19.0"
  98. dependencies:
  99. "@babel/helper-annotate-as-pure" "^7.18.6"
  100. "regexpu-core" "^5.1.0"
  101. "@babel/helper-define-polyfill-provider@^0.3.3":
  102. "integrity" "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww=="
  103. "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz"
  104. "version" "0.3.3"
  105. dependencies:
  106. "@babel/helper-compilation-targets" "^7.17.7"
  107. "@babel/helper-plugin-utils" "^7.16.7"
  108. "debug" "^4.1.1"
  109. "lodash.debounce" "^4.0.8"
  110. "resolve" "^1.14.2"
  111. "semver" "^6.1.2"
  112. "@babel/helper-environment-visitor@^7.18.9":
  113. "integrity" "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
  114. "resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"
  115. "version" "7.18.9"
  116. "@babel/helper-explode-assignable-expression@^7.18.6":
  117. "integrity" "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg=="
  118. "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz"
  119. "version" "7.18.6"
  120. dependencies:
  121. "@babel/types" "^7.18.6"
  122. "@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
  123. "integrity" "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w=="
  124. "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz"
  125. "version" "7.19.0"
  126. dependencies:
  127. "@babel/template" "^7.18.10"
  128. "@babel/types" "^7.19.0"
  129. "@babel/helper-hoist-variables@^7.18.6":
  130. "integrity" "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="
  131. "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"
  132. "version" "7.18.6"
  133. dependencies:
  134. "@babel/types" "^7.18.6"
  135. "@babel/helper-member-expression-to-functions@^7.18.9":
  136. "integrity" "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg=="
  137. "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz"
  138. "version" "7.18.9"
  139. dependencies:
  140. "@babel/types" "^7.18.9"
  141. "@babel/helper-module-imports@^7.18.6":
  142. "integrity" "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="
  143. "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"
  144. "version" "7.18.6"
  145. dependencies:
  146. "@babel/types" "^7.18.6"
  147. "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6", "@babel/helper-module-transforms@^7.20.2":
  148. "integrity" "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA=="
  149. "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz"
  150. "version" "7.20.2"
  151. dependencies:
  152. "@babel/helper-environment-visitor" "^7.18.9"
  153. "@babel/helper-module-imports" "^7.18.6"
  154. "@babel/helper-simple-access" "^7.20.2"
  155. "@babel/helper-split-export-declaration" "^7.18.6"
  156. "@babel/helper-validator-identifier" "^7.19.1"
  157. "@babel/template" "^7.18.10"
  158. "@babel/traverse" "^7.20.1"
  159. "@babel/types" "^7.20.2"
  160. "@babel/helper-optimise-call-expression@^7.18.6":
  161. "integrity" "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA=="
  162. "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz"
  163. "version" "7.18.6"
  164. dependencies:
  165. "@babel/types" "^7.18.6"
  166. "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
  167. "integrity" "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ=="
  168. "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz"
  169. "version" "7.20.2"
  170. "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":
  171. "integrity" "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA=="
  172. "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz"
  173. "version" "7.18.9"
  174. dependencies:
  175. "@babel/helper-annotate-as-pure" "^7.18.6"
  176. "@babel/helper-environment-visitor" "^7.18.9"
  177. "@babel/helper-wrap-function" "^7.18.9"
  178. "@babel/types" "^7.18.9"
  179. "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.19.1":
  180. "integrity" "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw=="
  181. "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz"
  182. "version" "7.19.1"
  183. dependencies:
  184. "@babel/helper-environment-visitor" "^7.18.9"
  185. "@babel/helper-member-expression-to-functions" "^7.18.9"
  186. "@babel/helper-optimise-call-expression" "^7.18.6"
  187. "@babel/traverse" "^7.19.1"
  188. "@babel/types" "^7.19.0"
  189. "@babel/helper-simple-access@^7.19.4", "@babel/helper-simple-access@^7.20.2":
  190. "integrity" "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="
  191. "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"
  192. "version" "7.20.2"
  193. dependencies:
  194. "@babel/types" "^7.20.2"
  195. "@babel/helper-skip-transparent-expression-wrappers@^7.18.9":
  196. "integrity" "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg=="
  197. "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz"
  198. "version" "7.20.0"
  199. dependencies:
  200. "@babel/types" "^7.20.0"
  201. "@babel/helper-split-export-declaration@^7.18.6":
  202. "integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="
  203. "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"
  204. "version" "7.18.6"
  205. dependencies:
  206. "@babel/types" "^7.18.6"
  207. "@babel/helper-string-parser@^7.19.4":
  208. "integrity" "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
  209. "resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"
  210. "version" "7.19.4"
  211. "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
  212. "integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
  213. "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
  214. "version" "7.19.1"
  215. "@babel/helper-validator-option@^7.18.6":
  216. "integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
  217. "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"
  218. "version" "7.18.6"
  219. "@babel/helper-wrap-function@^7.18.9":
  220. "integrity" "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg=="
  221. "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz"
  222. "version" "7.19.0"
  223. dependencies:
  224. "@babel/helper-function-name" "^7.19.0"
  225. "@babel/template" "^7.18.10"
  226. "@babel/traverse" "^7.19.0"
  227. "@babel/types" "^7.19.0"
  228. "@babel/helpers@^7.20.1":
  229. "integrity" "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg=="
  230. "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz"
  231. "version" "7.20.1"
  232. dependencies:
  233. "@babel/template" "^7.18.10"
  234. "@babel/traverse" "^7.20.1"
  235. "@babel/types" "^7.20.0"
  236. "@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6":
  237. "integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
  238. "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
  239. "version" "7.18.6"
  240. dependencies:
  241. "@babel/helper-validator-identifier" "^7.18.6"
  242. "chalk" "^2.0.0"
  243. "js-tokens" "^4.0.0"
  244. "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.18.10", "@babel/parser@^7.20.1", "@babel/parser@^7.20.2":
  245. "integrity" "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg=="
  246. "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz"
  247. "version" "7.20.3"
  248. "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
  249. "integrity" "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ=="
  250. "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz"
  251. "version" "7.18.6"
  252. dependencies:
  253. "@babel/helper-plugin-utils" "^7.18.6"
  254. "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9":
  255. "integrity" "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg=="
  256. "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz"
  257. "version" "7.18.9"
  258. dependencies:
  259. "@babel/helper-plugin-utils" "^7.18.9"
  260. "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
  261. "@babel/plugin-proposal-optional-chaining" "^7.18.9"
  262. "@babel/plugin-proposal-async-generator-functions@^7.0.0", "@babel/plugin-proposal-async-generator-functions@^7.20.1":
  263. "integrity" "sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g=="
  264. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz"
  265. "version" "7.20.1"
  266. dependencies:
  267. "@babel/helper-environment-visitor" "^7.18.9"
  268. "@babel/helper-plugin-utils" "^7.19.0"
  269. "@babel/helper-remap-async-to-generator" "^7.18.9"
  270. "@babel/plugin-syntax-async-generators" "^7.8.4"
  271. "@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.6":
  272. "integrity" "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ=="
  273. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"
  274. "version" "7.18.6"
  275. dependencies:
  276. "@babel/helper-create-class-features-plugin" "^7.18.6"
  277. "@babel/helper-plugin-utils" "^7.18.6"
  278. "@babel/plugin-proposal-class-static-block@^7.18.6":
  279. "integrity" "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw=="
  280. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz"
  281. "version" "7.18.6"
  282. dependencies:
  283. "@babel/helper-create-class-features-plugin" "^7.18.6"
  284. "@babel/helper-plugin-utils" "^7.18.6"
  285. "@babel/plugin-syntax-class-static-block" "^7.14.5"
  286. "@babel/plugin-proposal-decorators@^7.12.9":
  287. "integrity" "sha512-nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw=="
  288. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.2.tgz"
  289. "version" "7.20.2"
  290. dependencies:
  291. "@babel/helper-create-class-features-plugin" "^7.20.2"
  292. "@babel/helper-plugin-utils" "^7.20.2"
  293. "@babel/helper-replace-supers" "^7.19.1"
  294. "@babel/helper-split-export-declaration" "^7.18.6"
  295. "@babel/plugin-syntax-decorators" "^7.19.0"
  296. "@babel/plugin-proposal-dynamic-import@^7.18.6":
  297. "integrity" "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw=="
  298. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz"
  299. "version" "7.18.6"
  300. dependencies:
  301. "@babel/helper-plugin-utils" "^7.18.6"
  302. "@babel/plugin-syntax-dynamic-import" "^7.8.3"
  303. "@babel/plugin-proposal-export-default-from@^7.0.0":
  304. "integrity" "sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow=="
  305. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.18.10.tgz"
  306. "version" "7.18.10"
  307. dependencies:
  308. "@babel/helper-plugin-utils" "^7.18.9"
  309. "@babel/plugin-syntax-export-default-from" "^7.18.6"
  310. "@babel/plugin-proposal-export-namespace-from@^7.18.9":
  311. "integrity" "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA=="
  312. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz"
  313. "version" "7.18.9"
  314. dependencies:
  315. "@babel/helper-plugin-utils" "^7.18.9"
  316. "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
  317. "@babel/plugin-proposal-json-strings@^7.18.6":
  318. "integrity" "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ=="
  319. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz"
  320. "version" "7.18.6"
  321. dependencies:
  322. "@babel/helper-plugin-utils" "^7.18.6"
  323. "@babel/plugin-syntax-json-strings" "^7.8.3"
  324. "@babel/plugin-proposal-logical-assignment-operators@^7.18.9":
  325. "integrity" "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q=="
  326. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz"
  327. "version" "7.18.9"
  328. dependencies:
  329. "@babel/helper-plugin-utils" "^7.18.9"
  330. "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
  331. "@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
  332. "integrity" "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA=="
  333. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz"
  334. "version" "7.18.6"
  335. dependencies:
  336. "@babel/helper-plugin-utils" "^7.18.6"
  337. "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
  338. "@babel/plugin-proposal-numeric-separator@^7.18.6":
  339. "integrity" "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q=="
  340. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz"
  341. "version" "7.18.6"
  342. dependencies:
  343. "@babel/helper-plugin-utils" "^7.18.6"
  344. "@babel/plugin-syntax-numeric-separator" "^7.10.4"
  345. "@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.12.13", "@babel/plugin-proposal-object-rest-spread@^7.20.2":
  346. "integrity" "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ=="
  347. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz"
  348. "version" "7.20.2"
  349. dependencies:
  350. "@babel/compat-data" "^7.20.1"
  351. "@babel/helper-compilation-targets" "^7.20.0"
  352. "@babel/helper-plugin-utils" "^7.20.2"
  353. "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
  354. "@babel/plugin-transform-parameters" "^7.20.1"
  355. "@babel/plugin-proposal-optional-catch-binding@^7.0.0", "@babel/plugin-proposal-optional-catch-binding@^7.18.6":
  356. "integrity" "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw=="
  357. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz"
  358. "version" "7.18.6"
  359. dependencies:
  360. "@babel/helper-plugin-utils" "^7.18.6"
  361. "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
  362. "@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.18.9":
  363. "integrity" "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w=="
  364. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz"
  365. "version" "7.18.9"
  366. dependencies:
  367. "@babel/helper-plugin-utils" "^7.18.9"
  368. "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
  369. "@babel/plugin-syntax-optional-chaining" "^7.8.3"
  370. "@babel/plugin-proposal-private-methods@^7.18.6":
  371. "integrity" "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA=="
  372. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz"
  373. "version" "7.18.6"
  374. dependencies:
  375. "@babel/helper-create-class-features-plugin" "^7.18.6"
  376. "@babel/helper-plugin-utils" "^7.18.6"
  377. "@babel/plugin-proposal-private-property-in-object@^7.18.6":
  378. "integrity" "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw=="
  379. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz"
  380. "version" "7.18.6"
  381. dependencies:
  382. "@babel/helper-annotate-as-pure" "^7.18.6"
  383. "@babel/helper-create-class-features-plugin" "^7.18.6"
  384. "@babel/helper-plugin-utils" "^7.18.6"
  385. "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
  386. "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
  387. "integrity" "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w=="
  388. "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz"
  389. "version" "7.18.6"
  390. dependencies:
  391. "@babel/helper-create-regexp-features-plugin" "^7.18.6"
  392. "@babel/helper-plugin-utils" "^7.18.6"
  393. "@babel/plugin-syntax-async-generators@^7.8.4":
  394. "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
  395. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
  396. "version" "7.8.4"
  397. dependencies:
  398. "@babel/helper-plugin-utils" "^7.8.0"
  399. "@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.12.13":
  400. "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
  401. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
  402. "version" "7.12.13"
  403. dependencies:
  404. "@babel/helper-plugin-utils" "^7.12.13"
  405. "@babel/plugin-syntax-class-static-block@^7.14.5":
  406. "integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="
  407. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"
  408. "version" "7.14.5"
  409. dependencies:
  410. "@babel/helper-plugin-utils" "^7.14.5"
  411. "@babel/plugin-syntax-decorators@^7.19.0":
  412. "integrity" "sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ=="
  413. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz"
  414. "version" "7.19.0"
  415. dependencies:
  416. "@babel/helper-plugin-utils" "^7.19.0"
  417. "@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
  418. "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="
  419. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"
  420. "version" "7.8.3"
  421. dependencies:
  422. "@babel/helper-plugin-utils" "^7.8.0"
  423. "@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.18.6":
  424. "integrity" "sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew=="
  425. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.18.6.tgz"
  426. "version" "7.18.6"
  427. dependencies:
  428. "@babel/helper-plugin-utils" "^7.18.6"
  429. "@babel/plugin-syntax-export-namespace-from@^7.8.3":
  430. "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="
  431. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"
  432. "version" "7.8.3"
  433. dependencies:
  434. "@babel/helper-plugin-utils" "^7.8.3"
  435. "@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.6", "@babel/plugin-syntax-flow@^7.2.0":
  436. "integrity" "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A=="
  437. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz"
  438. "version" "7.18.6"
  439. dependencies:
  440. "@babel/helper-plugin-utils" "^7.18.6"
  441. "@babel/plugin-syntax-import-assertions@^7.20.0":
  442. "integrity" "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ=="
  443. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz"
  444. "version" "7.20.0"
  445. dependencies:
  446. "@babel/helper-plugin-utils" "^7.19.0"
  447. "@babel/plugin-syntax-json-strings@^7.8.3":
  448. "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
  449. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
  450. "version" "7.8.3"
  451. dependencies:
  452. "@babel/helper-plugin-utils" "^7.8.0"
  453. "@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.18.6":
  454. "integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q=="
  455. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz"
  456. "version" "7.18.6"
  457. dependencies:
  458. "@babel/helper-plugin-utils" "^7.18.6"
  459. "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
  460. "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
  461. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
  462. "version" "7.10.4"
  463. dependencies:
  464. "@babel/helper-plugin-utils" "^7.10.4"
  465. "@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
  466. "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
  467. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
  468. "version" "7.8.3"
  469. dependencies:
  470. "@babel/helper-plugin-utils" "^7.8.0"
  471. "@babel/plugin-syntax-numeric-separator@^7.10.4":
  472. "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
  473. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
  474. "version" "7.10.4"
  475. dependencies:
  476. "@babel/helper-plugin-utils" "^7.10.4"
  477. "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
  478. "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
  479. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
  480. "version" "7.8.3"
  481. dependencies:
  482. "@babel/helper-plugin-utils" "^7.8.0"
  483. "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
  484. "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
  485. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
  486. "version" "7.8.3"
  487. dependencies:
  488. "@babel/helper-plugin-utils" "^7.8.0"
  489. "@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
  490. "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
  491. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
  492. "version" "7.8.3"
  493. dependencies:
  494. "@babel/helper-plugin-utils" "^7.8.0"
  495. "@babel/plugin-syntax-private-property-in-object@^7.14.5":
  496. "integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="
  497. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"
  498. "version" "7.14.5"
  499. dependencies:
  500. "@babel/helper-plugin-utils" "^7.14.5"
  501. "@babel/plugin-syntax-top-level-await@^7.14.5":
  502. "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
  503. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
  504. "version" "7.14.5"
  505. dependencies:
  506. "@babel/helper-plugin-utils" "^7.14.5"
  507. "@babel/plugin-syntax-typescript@^7.20.0":
  508. "integrity" "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ=="
  509. "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz"
  510. "version" "7.20.0"
  511. dependencies:
  512. "@babel/helper-plugin-utils" "^7.19.0"
  513. "@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.18.6":
  514. "integrity" "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ=="
  515. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz"
  516. "version" "7.18.6"
  517. dependencies:
  518. "@babel/helper-plugin-utils" "^7.18.6"
  519. "@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.18.6":
  520. "integrity" "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag=="
  521. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz"
  522. "version" "7.18.6"
  523. dependencies:
  524. "@babel/helper-module-imports" "^7.18.6"
  525. "@babel/helper-plugin-utils" "^7.18.6"
  526. "@babel/helper-remap-async-to-generator" "^7.18.6"
  527. "@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.18.6":
  528. "integrity" "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="
  529. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz"
  530. "version" "7.18.6"
  531. dependencies:
  532. "@babel/helper-plugin-utils" "^7.18.6"
  533. "@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.20.2":
  534. "integrity" "sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ=="
  535. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz"
  536. "version" "7.20.2"
  537. dependencies:
  538. "@babel/helper-plugin-utils" "^7.20.2"
  539. "@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.20.2":
  540. "integrity" "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g=="
  541. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz"
  542. "version" "7.20.2"
  543. dependencies:
  544. "@babel/helper-annotate-as-pure" "^7.18.6"
  545. "@babel/helper-compilation-targets" "^7.20.0"
  546. "@babel/helper-environment-visitor" "^7.18.9"
  547. "@babel/helper-function-name" "^7.19.0"
  548. "@babel/helper-optimise-call-expression" "^7.18.6"
  549. "@babel/helper-plugin-utils" "^7.20.2"
  550. "@babel/helper-replace-supers" "^7.19.1"
  551. "@babel/helper-split-export-declaration" "^7.18.6"
  552. "globals" "^11.1.0"
  553. "@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.18.9":
  554. "integrity" "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw=="
  555. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz"
  556. "version" "7.18.9"
  557. dependencies:
  558. "@babel/helper-plugin-utils" "^7.18.9"
  559. "@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.20.2":
  560. "integrity" "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw=="
  561. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz"
  562. "version" "7.20.2"
  563. dependencies:
  564. "@babel/helper-plugin-utils" "^7.20.2"
  565. "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4":
  566. "integrity" "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg=="
  567. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz"
  568. "version" "7.18.6"
  569. dependencies:
  570. "@babel/helper-create-regexp-features-plugin" "^7.18.6"
  571. "@babel/helper-plugin-utils" "^7.18.6"
  572. "@babel/plugin-transform-duplicate-keys@^7.18.9":
  573. "integrity" "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw=="
  574. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz"
  575. "version" "7.18.9"
  576. dependencies:
  577. "@babel/helper-plugin-utils" "^7.18.9"
  578. "@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.18.6":
  579. "integrity" "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw=="
  580. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz"
  581. "version" "7.18.6"
  582. dependencies:
  583. "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6"
  584. "@babel/helper-plugin-utils" "^7.18.6"
  585. "@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.18.6":
  586. "integrity" "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg=="
  587. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz"
  588. "version" "7.19.0"
  589. dependencies:
  590. "@babel/helper-plugin-utils" "^7.19.0"
  591. "@babel/plugin-syntax-flow" "^7.18.6"
  592. "@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.18.8":
  593. "integrity" "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ=="
  594. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz"
  595. "version" "7.18.8"
  596. dependencies:
  597. "@babel/helper-plugin-utils" "^7.18.6"
  598. "@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.18.9":
  599. "integrity" "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ=="
  600. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz"
  601. "version" "7.18.9"
  602. dependencies:
  603. "@babel/helper-compilation-targets" "^7.18.9"
  604. "@babel/helper-function-name" "^7.18.9"
  605. "@babel/helper-plugin-utils" "^7.18.9"
  606. "@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.18.9":
  607. "integrity" "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg=="
  608. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"
  609. "version" "7.18.9"
  610. dependencies:
  611. "@babel/helper-plugin-utils" "^7.18.9"
  612. "@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.18.6":
  613. "integrity" "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="
  614. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz"
  615. "version" "7.18.6"
  616. dependencies:
  617. "@babel/helper-plugin-utils" "^7.18.6"
  618. "@babel/plugin-transform-modules-amd@^7.19.6":
  619. "integrity" "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg=="
  620. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz"
  621. "version" "7.19.6"
  622. dependencies:
  623. "@babel/helper-module-transforms" "^7.19.6"
  624. "@babel/helper-plugin-utils" "^7.19.0"
  625. "@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.19.6":
  626. "integrity" "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ=="
  627. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz"
  628. "version" "7.19.6"
  629. dependencies:
  630. "@babel/helper-module-transforms" "^7.19.6"
  631. "@babel/helper-plugin-utils" "^7.19.0"
  632. "@babel/helper-simple-access" "^7.19.4"
  633. "@babel/plugin-transform-modules-systemjs@^7.19.6":
  634. "integrity" "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ=="
  635. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz"
  636. "version" "7.19.6"
  637. dependencies:
  638. "@babel/helper-hoist-variables" "^7.18.6"
  639. "@babel/helper-module-transforms" "^7.19.6"
  640. "@babel/helper-plugin-utils" "^7.19.0"
  641. "@babel/helper-validator-identifier" "^7.19.1"
  642. "@babel/plugin-transform-modules-umd@^7.18.6":
  643. "integrity" "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ=="
  644. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz"
  645. "version" "7.18.6"
  646. dependencies:
  647. "@babel/helper-module-transforms" "^7.18.6"
  648. "@babel/helper-plugin-utils" "^7.18.6"
  649. "@babel/plugin-transform-named-capturing-groups-regex@^7.0.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.19.1":
  650. "integrity" "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw=="
  651. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz"
  652. "version" "7.19.1"
  653. dependencies:
  654. "@babel/helper-create-regexp-features-plugin" "^7.19.0"
  655. "@babel/helper-plugin-utils" "^7.19.0"
  656. "@babel/plugin-transform-new-target@^7.18.6":
  657. "integrity" "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw=="
  658. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz"
  659. "version" "7.18.6"
  660. dependencies:
  661. "@babel/helper-plugin-utils" "^7.18.6"
  662. "@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.18.6":
  663. "integrity" "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA=="
  664. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz"
  665. "version" "7.18.6"
  666. dependencies:
  667. "@babel/helper-plugin-utils" "^7.18.6"
  668. "@babel/helper-replace-supers" "^7.18.6"
  669. "@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.1":
  670. "integrity" "sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA=="
  671. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz"
  672. "version" "7.20.3"
  673. dependencies:
  674. "@babel/helper-plugin-utils" "^7.20.2"
  675. "@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.18.6":
  676. "integrity" "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg=="
  677. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz"
  678. "version" "7.18.6"
  679. dependencies:
  680. "@babel/helper-plugin-utils" "^7.18.6"
  681. "@babel/plugin-transform-react-display-name@^7.0.0":
  682. "integrity" "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA=="
  683. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz"
  684. "version" "7.18.6"
  685. dependencies:
  686. "@babel/helper-plugin-utils" "^7.18.6"
  687. "@babel/plugin-transform-react-jsx-self@^7.0.0":
  688. "integrity" "sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig=="
  689. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz"
  690. "version" "7.18.6"
  691. dependencies:
  692. "@babel/helper-plugin-utils" "^7.18.6"
  693. "@babel/plugin-transform-react-jsx-source@^7.0.0":
  694. "integrity" "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ=="
  695. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz"
  696. "version" "7.19.6"
  697. dependencies:
  698. "@babel/helper-plugin-utils" "^7.19.0"
  699. "@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.12.17":
  700. "integrity" "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg=="
  701. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz"
  702. "version" "7.19.0"
  703. dependencies:
  704. "@babel/helper-annotate-as-pure" "^7.18.6"
  705. "@babel/helper-module-imports" "^7.18.6"
  706. "@babel/helper-plugin-utils" "^7.19.0"
  707. "@babel/plugin-syntax-jsx" "^7.18.6"
  708. "@babel/types" "^7.19.0"
  709. "@babel/plugin-transform-regenerator@^7.18.6":
  710. "integrity" "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ=="
  711. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz"
  712. "version" "7.18.6"
  713. dependencies:
  714. "@babel/helper-plugin-utils" "^7.18.6"
  715. "regenerator-transform" "^0.15.0"
  716. "@babel/plugin-transform-reserved-words@^7.18.6":
  717. "integrity" "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA=="
  718. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz"
  719. "version" "7.18.6"
  720. dependencies:
  721. "@babel/helper-plugin-utils" "^7.18.6"
  722. "@babel/plugin-transform-runtime@^7.0.0":
  723. "integrity" "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw=="
  724. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz"
  725. "version" "7.19.6"
  726. dependencies:
  727. "@babel/helper-module-imports" "^7.18.6"
  728. "@babel/helper-plugin-utils" "^7.19.0"
  729. "babel-plugin-polyfill-corejs2" "^0.3.3"
  730. "babel-plugin-polyfill-corejs3" "^0.6.0"
  731. "babel-plugin-polyfill-regenerator" "^0.4.1"
  732. "semver" "^6.3.0"
  733. "@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.18.6":
  734. "integrity" "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw=="
  735. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz"
  736. "version" "7.18.6"
  737. dependencies:
  738. "@babel/helper-plugin-utils" "^7.18.6"
  739. "@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.19.0":
  740. "integrity" "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w=="
  741. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz"
  742. "version" "7.19.0"
  743. dependencies:
  744. "@babel/helper-plugin-utils" "^7.19.0"
  745. "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
  746. "@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.18.6":
  747. "integrity" "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q=="
  748. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz"
  749. "version" "7.18.6"
  750. dependencies:
  751. "@babel/helper-plugin-utils" "^7.18.6"
  752. "@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.18.9":
  753. "integrity" "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA=="
  754. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"
  755. "version" "7.18.9"
  756. dependencies:
  757. "@babel/helper-plugin-utils" "^7.18.9"
  758. "@babel/plugin-transform-typeof-symbol@^7.18.9":
  759. "integrity" "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="
  760. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz"
  761. "version" "7.18.9"
  762. dependencies:
  763. "@babel/helper-plugin-utils" "^7.18.9"
  764. "@babel/plugin-transform-typescript@^7.18.6", "@babel/plugin-transform-typescript@^7.5.0":
  765. "integrity" "sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag=="
  766. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.2.tgz"
  767. "version" "7.20.2"
  768. dependencies:
  769. "@babel/helper-create-class-features-plugin" "^7.20.2"
  770. "@babel/helper-plugin-utils" "^7.20.2"
  771. "@babel/plugin-syntax-typescript" "^7.20.0"
  772. "@babel/plugin-transform-unicode-escapes@^7.18.10":
  773. "integrity" "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ=="
  774. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz"
  775. "version" "7.18.10"
  776. dependencies:
  777. "@babel/helper-plugin-utils" "^7.18.9"
  778. "@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.18.6":
  779. "integrity" "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA=="
  780. "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz"
  781. "version" "7.18.6"
  782. dependencies:
  783. "@babel/helper-create-regexp-features-plugin" "^7.18.6"
  784. "@babel/helper-plugin-utils" "^7.18.6"
  785. "@babel/preset-env@^7.1.6", "@babel/preset-env@^7.12.9":
  786. "integrity" "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg=="
  787. "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz"
  788. "version" "7.20.2"
  789. dependencies:
  790. "@babel/compat-data" "^7.20.1"
  791. "@babel/helper-compilation-targets" "^7.20.0"
  792. "@babel/helper-plugin-utils" "^7.20.2"
  793. "@babel/helper-validator-option" "^7.18.6"
  794. "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
  795. "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9"
  796. "@babel/plugin-proposal-async-generator-functions" "^7.20.1"
  797. "@babel/plugin-proposal-class-properties" "^7.18.6"
  798. "@babel/plugin-proposal-class-static-block" "^7.18.6"
  799. "@babel/plugin-proposal-dynamic-import" "^7.18.6"
  800. "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
  801. "@babel/plugin-proposal-json-strings" "^7.18.6"
  802. "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9"
  803. "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
  804. "@babel/plugin-proposal-numeric-separator" "^7.18.6"
  805. "@babel/plugin-proposal-object-rest-spread" "^7.20.2"
  806. "@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
  807. "@babel/plugin-proposal-optional-chaining" "^7.18.9"
  808. "@babel/plugin-proposal-private-methods" "^7.18.6"
  809. "@babel/plugin-proposal-private-property-in-object" "^7.18.6"
  810. "@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
  811. "@babel/plugin-syntax-async-generators" "^7.8.4"
  812. "@babel/plugin-syntax-class-properties" "^7.12.13"
  813. "@babel/plugin-syntax-class-static-block" "^7.14.5"
  814. "@babel/plugin-syntax-dynamic-import" "^7.8.3"
  815. "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
  816. "@babel/plugin-syntax-import-assertions" "^7.20.0"
  817. "@babel/plugin-syntax-json-strings" "^7.8.3"
  818. "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
  819. "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
  820. "@babel/plugin-syntax-numeric-separator" "^7.10.4"
  821. "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
  822. "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
  823. "@babel/plugin-syntax-optional-chaining" "^7.8.3"
  824. "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
  825. "@babel/plugin-syntax-top-level-await" "^7.14.5"
  826. "@babel/plugin-transform-arrow-functions" "^7.18.6"
  827. "@babel/plugin-transform-async-to-generator" "^7.18.6"
  828. "@babel/plugin-transform-block-scoped-functions" "^7.18.6"
  829. "@babel/plugin-transform-block-scoping" "^7.20.2"
  830. "@babel/plugin-transform-classes" "^7.20.2"
  831. "@babel/plugin-transform-computed-properties" "^7.18.9"
  832. "@babel/plugin-transform-destructuring" "^7.20.2"
  833. "@babel/plugin-transform-dotall-regex" "^7.18.6"
  834. "@babel/plugin-transform-duplicate-keys" "^7.18.9"
  835. "@babel/plugin-transform-exponentiation-operator" "^7.18.6"
  836. "@babel/plugin-transform-for-of" "^7.18.8"
  837. "@babel/plugin-transform-function-name" "^7.18.9"
  838. "@babel/plugin-transform-literals" "^7.18.9"
  839. "@babel/plugin-transform-member-expression-literals" "^7.18.6"
  840. "@babel/plugin-transform-modules-amd" "^7.19.6"
  841. "@babel/plugin-transform-modules-commonjs" "^7.19.6"
  842. "@babel/plugin-transform-modules-systemjs" "^7.19.6"
  843. "@babel/plugin-transform-modules-umd" "^7.18.6"
  844. "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1"
  845. "@babel/plugin-transform-new-target" "^7.18.6"
  846. "@babel/plugin-transform-object-super" "^7.18.6"
  847. "@babel/plugin-transform-parameters" "^7.20.1"
  848. "@babel/plugin-transform-property-literals" "^7.18.6"
  849. "@babel/plugin-transform-regenerator" "^7.18.6"
  850. "@babel/plugin-transform-reserved-words" "^7.18.6"
  851. "@babel/plugin-transform-shorthand-properties" "^7.18.6"
  852. "@babel/plugin-transform-spread" "^7.19.0"
  853. "@babel/plugin-transform-sticky-regex" "^7.18.6"
  854. "@babel/plugin-transform-template-literals" "^7.18.9"
  855. "@babel/plugin-transform-typeof-symbol" "^7.18.9"
  856. "@babel/plugin-transform-unicode-escapes" "^7.18.10"
  857. "@babel/plugin-transform-unicode-regex" "^7.18.6"
  858. "@babel/preset-modules" "^0.1.5"
  859. "@babel/types" "^7.20.2"
  860. "babel-plugin-polyfill-corejs2" "^0.3.3"
  861. "babel-plugin-polyfill-corejs3" "^0.6.0"
  862. "babel-plugin-polyfill-regenerator" "^0.4.1"
  863. "core-js-compat" "^3.25.1"
  864. "semver" "^6.3.0"
  865. "@babel/preset-flow@^7.13.13":
  866. "integrity" "sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ=="
  867. "resolved" "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.18.6.tgz"
  868. "version" "7.18.6"
  869. dependencies:
  870. "@babel/helper-plugin-utils" "^7.18.6"
  871. "@babel/helper-validator-option" "^7.18.6"
  872. "@babel/plugin-transform-flow-strip-types" "^7.18.6"
  873. "@babel/preset-modules@^0.1.5":
  874. "integrity" "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="
  875. "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz"
  876. "version" "0.1.5"
  877. dependencies:
  878. "@babel/helper-plugin-utils" "^7.0.0"
  879. "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
  880. "@babel/plugin-transform-dotall-regex" "^7.4.4"
  881. "@babel/types" "^7.4.4"
  882. "esutils" "^2.0.2"
  883. "@babel/preset-typescript@^7.13.0":
  884. "integrity" "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ=="
  885. "resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz"
  886. "version" "7.18.6"
  887. dependencies:
  888. "@babel/helper-plugin-utils" "^7.18.6"
  889. "@babel/helper-validator-option" "^7.18.6"
  890. "@babel/plugin-transform-typescript" "^7.18.6"
  891. "@babel/register@^7.13.16":
  892. "integrity" "sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw=="
  893. "resolved" "https://registry.npmjs.org/@babel/register/-/register-7.18.9.tgz"
  894. "version" "7.18.9"
  895. dependencies:
  896. "clone-deep" "^4.0.1"
  897. "find-cache-dir" "^2.0.0"
  898. "make-dir" "^2.1.0"
  899. "pirates" "^4.0.5"
  900. "source-map-support" "^0.5.16"
  901. "@babel/runtime@^7.0.0", "@babel/runtime@^7.14.0", "@babel/runtime@^7.8.4":
  902. "integrity" "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg=="
  903. "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz"
  904. "version" "7.20.1"
  905. dependencies:
  906. "regenerator-runtime" "^0.13.10"
  907. "@babel/template@^7.0.0", "@babel/template@^7.18.10":
  908. "integrity" "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="
  909. "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz"
  910. "version" "7.18.10"
  911. dependencies:
  912. "@babel/code-frame" "^7.18.6"
  913. "@babel/parser" "^7.18.10"
  914. "@babel/types" "^7.18.10"
  915. "@babel/traverse@^7.14.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1":
  916. "integrity" "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA=="
  917. "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz"
  918. "version" "7.20.1"
  919. dependencies:
  920. "@babel/code-frame" "^7.18.6"
  921. "@babel/generator" "^7.20.1"
  922. "@babel/helper-environment-visitor" "^7.18.9"
  923. "@babel/helper-function-name" "^7.19.0"
  924. "@babel/helper-hoist-variables" "^7.18.6"
  925. "@babel/helper-split-export-declaration" "^7.18.6"
  926. "@babel/parser" "^7.20.1"
  927. "@babel/types" "^7.20.0"
  928. "debug" "^4.1.0"
  929. "globals" "^11.1.0"
  930. "@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.4.4":
  931. "integrity" "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog=="
  932. "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz"
  933. "version" "7.20.2"
  934. dependencies:
  935. "@babel/helper-string-parser" "^7.19.4"
  936. "@babel/helper-validator-identifier" "^7.19.1"
  937. "to-fast-properties" "^2.0.0"
  938. "@egjs/hammerjs@^2.0.17":
  939. "integrity" "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A=="
  940. "resolved" "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz"
  941. "version" "2.0.17"
  942. dependencies:
  943. "@types/hammerjs" "^2.0.36"
  944. "@expo/bunyan@^4.0.0", "@expo/bunyan@4.0.0":
  945. "integrity" "sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="
  946. "resolved" "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.0.tgz"
  947. "version" "4.0.0"
  948. dependencies:
  949. "uuid" "^8.0.0"
  950. optionalDependencies:
  951. "mv" "~2"
  952. "safe-json-stringify" "~1"
  953. "@expo/cli@0.4.8":
  954. "integrity" "sha512-Q0kXWS+L96bv5GBrotw0XtDpoN0zbB0DOFel7Vb6GKwAKcQPifCdakbLP4cz8t7ED89lLgLpYT54t6aD5eEVFA=="
  955. "resolved" "https://registry.npmjs.org/@expo/cli/-/cli-0.4.8.tgz"
  956. "version" "0.4.8"
  957. dependencies:
  958. "@babel/runtime" "^7.14.0"
  959. "@expo/code-signing-certificates" "^0.0.2"
  960. "@expo/config" "~7.0.2"
  961. "@expo/config-plugins" "~5.0.3"
  962. "@expo/dev-server" "0.1.123"
  963. "@expo/devcert" "^1.0.0"
  964. "@expo/json-file" "^8.2.35"
  965. "@expo/metro-config" "~0.5.0"
  966. "@expo/osascript" "^2.0.31"
  967. "@expo/package-manager" "~0.0.53"
  968. "@expo/plist" "^0.0.18"
  969. "@expo/prebuild-config" "5.0.6"
  970. "@expo/rudder-sdk-node" "1.1.1"
  971. "@expo/spawn-async" "1.5.0"
  972. "@expo/xcpretty" "^4.2.1"
  973. "@urql/core" "2.3.6"
  974. "@urql/exchange-retry" "0.3.0"
  975. "accepts" "^1.3.8"
  976. "arg" "4.1.0"
  977. "better-opn" "~3.0.2"
  978. "bplist-parser" "^0.3.1"
  979. "cacache" "^15.3.0"
  980. "chalk" "^4.0.0"
  981. "ci-info" "^3.3.0"
  982. "debug" "^4.3.4"
  983. "env-editor" "^0.4.1"
  984. "form-data" "^3.0.1"
  985. "freeport-async" "2.0.0"
  986. "fs-extra" "~8.1.0"
  987. "getenv" "^1.0.0"
  988. "graphql" "15.8.0"
  989. "graphql-tag" "^2.10.1"
  990. "https-proxy-agent" "^5.0.1"
  991. "internal-ip" "4.3.0"
  992. "is-root" "^2.1.0"
  993. "js-yaml" "^3.13.1"
  994. "json-schema-deref-sync" "^0.13.0"
  995. "md5-file" "^3.2.3"
  996. "md5hex" "^1.0.0"
  997. "minipass" "3.1.6"
  998. "node-fetch" "^2.6.7"
  999. "node-forge" "^1.3.1"
  1000. "npm-package-arg" "^7.0.0"
  1001. "ora" "3.4.0"
  1002. "pretty-bytes" "5.6.0"
  1003. "progress" "2.0.3"
  1004. "prompts" "^2.3.2"
  1005. "qrcode-terminal" "0.11.0"
  1006. "requireg" "^0.2.2"
  1007. "resolve-from" "^5.0.0"
  1008. "semver" "^6.3.0"
  1009. "send" "^0.18.0"
  1010. "slugify" "^1.3.4"
  1011. "structured-headers" "^0.4.1"
  1012. "tar" "^6.0.5"
  1013. "tempy" "^0.7.1"
  1014. "terminal-link" "^2.1.1"
  1015. "text-table" "^0.2.0"
  1016. "url-join" "4.0.0"
  1017. "uuid" "^3.4.0"
  1018. "wrap-ansi" "^7.0.0"
  1019. "@expo/code-signing-certificates@^0.0.2":
  1020. "integrity" "sha512-vnPHFjwOqxQ1VLztktY+fYCfwvLzjqpzKn09rchcQE7Sdf0wtW5fFtIZBEFOOY5wasp8tXSnp627zrAwazPHzg=="
  1021. "resolved" "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.2.tgz"
  1022. "version" "0.0.2"
  1023. dependencies:
  1024. "node-forge" "^1.2.1"
  1025. "nullthrows" "^1.1.1"
  1026. "@expo/config-plugins@~5.0.3", "@expo/config-plugins@5.0.4":
  1027. "integrity" "sha512-vzUcVpqOMs3h+hyRdhGwk+eGIOhXa5xYdd92yO17RMNHav3v/+ekMbs7XA2c3lepMO8Yd4/5hqmRw9ZTL6jGzg=="
  1028. "resolved" "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-5.0.4.tgz"
  1029. "version" "5.0.4"
  1030. dependencies:
  1031. "@expo/config-types" "^47.0.0"
  1032. "@expo/json-file" "8.2.36"
  1033. "@expo/plist" "0.0.18"
  1034. "@expo/sdk-runtime-versions" "^1.0.0"
  1035. "@react-native/normalize-color" "^2.0.0"
  1036. "chalk" "^4.1.2"
  1037. "debug" "^4.3.1"
  1038. "find-up" "~5.0.0"
  1039. "getenv" "^1.0.0"
  1040. "glob" "7.1.6"
  1041. "resolve-from" "^5.0.0"
  1042. "semver" "^7.3.5"
  1043. "slash" "^3.0.0"
  1044. "xcode" "^3.0.1"
  1045. "xml2js" "0.4.23"
  1046. "@expo/config-types@^47.0.0":
  1047. "integrity" "sha512-r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g=="
  1048. "resolved" "https://registry.npmjs.org/@expo/config-types/-/config-types-47.0.0.tgz"
  1049. "version" "47.0.0"
  1050. "@expo/config@~7.0.2", "@expo/config@7.0.3":
  1051. "integrity" "sha512-joVtB5o+NF40Tmsdp65UzryRtbnCuMbXkVO4wJnNJO4aaK0EYLdHCYSewORVqNcDfGN0LphQr8VTG2npbd9CJA=="
  1052. "resolved" "https://registry.npmjs.org/@expo/config/-/config-7.0.3.tgz"
  1053. "version" "7.0.3"
  1054. dependencies:
  1055. "@babel/code-frame" "~7.10.4"
  1056. "@expo/config-plugins" "~5.0.3"
  1057. "@expo/config-types" "^47.0.0"
  1058. "@expo/json-file" "8.2.36"
  1059. "getenv" "^1.0.0"
  1060. "glob" "7.1.6"
  1061. "require-from-string" "^2.0.2"
  1062. "resolve-from" "^5.0.0"
  1063. "semver" "7.3.2"
  1064. "slugify" "^1.3.4"
  1065. "sucrase" "^3.20.0"
  1066. "@expo/dev-server@0.1.123":
  1067. "integrity" "sha512-N6UVzzeemfX0AONUSWInvkAAbqon8hRXpyYE/nMPaC6TvAmgGY5ILZAGoXwlpxwY2VKNT0Lx4s/UJ53ytIaHbA=="
  1068. "resolved" "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.123.tgz"
  1069. "version" "0.1.123"
  1070. dependencies:
  1071. "@expo/bunyan" "4.0.0"
  1072. "@expo/metro-config" "~0.5.1"
  1073. "@expo/osascript" "2.0.33"
  1074. "@expo/spawn-async" "^1.5.0"
  1075. "body-parser" "1.19.0"
  1076. "chalk" "^4.0.0"
  1077. "connect" "^3.7.0"
  1078. "fs-extra" "9.0.0"
  1079. "is-docker" "^2.0.0"
  1080. "is-wsl" "^2.1.1"
  1081. "node-fetch" "^2.6.0"
  1082. "open" "^8.3.0"
  1083. "resolve-from" "^5.0.0"
  1084. "semver" "7.3.2"
  1085. "serialize-error" "6.0.0"
  1086. "temp-dir" "^2.0.0"
  1087. "@expo/devcert@^1.0.0":
  1088. "integrity" "sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA=="
  1089. "resolved" "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.0.tgz"
  1090. "version" "1.1.0"
  1091. dependencies:
  1092. "application-config-path" "^0.1.0"
  1093. "command-exists" "^1.2.4"
  1094. "debug" "^3.1.0"
  1095. "eol" "^0.9.1"
  1096. "get-port" "^3.2.0"
  1097. "glob" "^7.1.2"
  1098. "lodash" "^4.17.4"
  1099. "mkdirp" "^0.5.1"
  1100. "password-prompt" "^1.0.4"
  1101. "rimraf" "^2.6.2"
  1102. "sudo-prompt" "^8.2.0"
  1103. "tmp" "^0.0.33"
  1104. "tslib" "^2.4.0"
  1105. "@expo/image-utils@0.3.22":
  1106. "integrity" "sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ=="
  1107. "resolved" "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.22.tgz"
  1108. "version" "0.3.22"
  1109. dependencies:
  1110. "@expo/spawn-async" "1.5.0"
  1111. "chalk" "^4.0.0"
  1112. "fs-extra" "9.0.0"
  1113. "getenv" "^1.0.0"
  1114. "jimp-compact" "0.16.1"
  1115. "mime" "^2.4.4"
  1116. "node-fetch" "^2.6.0"
  1117. "parse-png" "^2.1.0"
  1118. "resolve-from" "^5.0.0"
  1119. "semver" "7.3.2"
  1120. "tempy" "0.3.0"
  1121. "@expo/json-file@^8.2.35", "@expo/json-file@8.2.36":
  1122. "integrity" "sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ=="
  1123. "resolved" "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.36.tgz"
  1124. "version" "8.2.36"
  1125. dependencies:
  1126. "@babel/code-frame" "~7.10.4"
  1127. "json5" "^1.0.1"
  1128. "write-file-atomic" "^2.3.0"
  1129. "@expo/metro-config@~0.5.0", "@expo/metro-config@~0.5.1":
  1130. "integrity" "sha512-Rvy4ZFgKNDfXO401z2OQF8fWbPj1lLVDL4GF1aqCIhCDHCKrezbwB0xejpcUyndJRCxBL2BMAM+P24t6cKv9Fw=="
  1131. "resolved" "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.5.1.tgz"
  1132. "version" "0.5.1"
  1133. dependencies:
  1134. "@expo/config" "~7.0.2"
  1135. "@expo/json-file" "8.2.36"
  1136. "chalk" "^4.1.0"
  1137. "debug" "^4.3.2"
  1138. "find-yarn-workspace-root" "~2.0.0"
  1139. "getenv" "^1.0.0"
  1140. "resolve-from" "^5.0.0"
  1141. "sucrase" "^3.20.0"
  1142. "@expo/osascript@^2.0.31", "@expo/osascript@2.0.33":
  1143. "integrity" "sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ=="
  1144. "resolved" "https://registry.npmjs.org/@expo/osascript/-/osascript-2.0.33.tgz"
  1145. "version" "2.0.33"
  1146. dependencies:
  1147. "@expo/spawn-async" "^1.5.0"
  1148. "exec-async" "^2.2.0"
  1149. "@expo/package-manager@~0.0.53":
  1150. "integrity" "sha512-Y4RpSL9EqaPF+Vd2GrK6r7Xx7Dv0Xdq3AGAD9C0KwV21WqP/scj/dpjxFY+ABwmdhNsFzYXb8fmDyh4tiKenPQ=="
  1151. "resolved" "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.57.tgz"
  1152. "version" "0.0.57"
  1153. dependencies:
  1154. "@expo/json-file" "8.2.36"
  1155. "@expo/spawn-async" "^1.5.0"
  1156. "ansi-regex" "^5.0.0"
  1157. "chalk" "^4.0.0"
  1158. "find-up" "^5.0.0"
  1159. "find-yarn-workspace-root" "~2.0.0"
  1160. "npm-package-arg" "^7.0.0"
  1161. "rimraf" "^3.0.2"
  1162. "split" "^1.0.1"
  1163. "sudo-prompt" "9.1.1"
  1164. "@expo/plist@^0.0.18", "@expo/plist@0.0.18":
  1165. "integrity" "sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w=="
  1166. "resolved" "https://registry.npmjs.org/@expo/plist/-/plist-0.0.18.tgz"
  1167. "version" "0.0.18"
  1168. dependencies:
  1169. "@xmldom/xmldom" "~0.7.0"
  1170. "base64-js" "^1.2.3"
  1171. "xmlbuilder" "^14.0.0"
  1172. "@expo/prebuild-config@5.0.6":
  1173. "integrity" "sha512-umHVsle+inPFPt+GMWRjZhkHwNbbaXpiEKbRnWKweInaXEZa9R9qt8gLyzniaREnw+/cEAIgL1znrKmNk4lUfQ=="
  1174. "resolved" "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-5.0.6.tgz"
  1175. "version" "5.0.6"
  1176. dependencies:
  1177. "@expo/config" "~7.0.2"
  1178. "@expo/config-plugins" "~5.0.3"
  1179. "@expo/config-types" "^47.0.0"
  1180. "@expo/image-utils" "0.3.22"
  1181. "@expo/json-file" "8.2.36"
  1182. "debug" "^4.3.1"
  1183. "fs-extra" "^9.0.0"
  1184. "resolve-from" "^5.0.0"
  1185. "semver" "7.3.2"
  1186. "xml2js" "0.4.23"
  1187. "@expo/rudder-sdk-node@1.1.1":
  1188. "integrity" "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ=="
  1189. "resolved" "https://registry.npmjs.org/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz"
  1190. "version" "1.1.1"
  1191. dependencies:
  1192. "@expo/bunyan" "^4.0.0"
  1193. "@segment/loosely-validate-event" "^2.0.0"
  1194. "fetch-retry" "^4.1.1"
  1195. "md5" "^2.2.1"
  1196. "node-fetch" "^2.6.1"
  1197. "remove-trailing-slash" "^0.1.0"
  1198. "uuid" "^8.3.2"
  1199. "@expo/sdk-runtime-versions@^1.0.0":
  1200. "integrity" "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ=="
  1201. "resolved" "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz"
  1202. "version" "1.0.0"
  1203. "@expo/spawn-async@^1.5.0", "@expo/spawn-async@1.5.0":
  1204. "integrity" "sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="
  1205. "resolved" "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.5.0.tgz"
  1206. "version" "1.5.0"
  1207. dependencies:
  1208. "cross-spawn" "^6.0.5"
  1209. "@expo/vector-icons@^13.0.0":
  1210. "integrity" "sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA=="
  1211. "resolved" "https://registry.npmjs.org/@expo/vector-icons/-/vector-icons-13.0.0.tgz"
  1212. "version" "13.0.0"
  1213. "@expo/xcpretty@^4.2.1":
  1214. "integrity" "sha512-Lke/geldJqUV0Dfxg5/QIOugOzdqZ/rQ9yHKSgGbjZtG1uiSqWyFwWvXmrdd3/sIdX33eykGvIcf+OrvvcXVUw=="
  1215. "resolved" "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.2.2.tgz"
  1216. "version" "4.2.2"
  1217. dependencies:
  1218. "@babel/code-frame" "7.10.4"
  1219. "chalk" "^4.1.0"
  1220. "find-up" "^5.0.0"
  1221. "js-yaml" "^4.1.0"
  1222. "@gar/promisify@^1.0.1":
  1223. "integrity" "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="
  1224. "resolved" "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz"
  1225. "version" "1.1.3"
  1226. "@graphql-typed-document-node/core@^3.1.0":
  1227. "integrity" "sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg=="
  1228. "resolved" "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz"
  1229. "version" "3.1.1"
  1230. "@hapi/hoek@^9.0.0":
  1231. "integrity" "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
  1232. "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz"
  1233. "version" "9.3.0"
  1234. "@hapi/topo@^5.0.0":
  1235. "integrity" "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="
  1236. "resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz"
  1237. "version" "5.1.0"
  1238. dependencies:
  1239. "@hapi/hoek" "^9.0.0"
  1240. "@jest/create-cache-key-function@^29.0.3":
  1241. "integrity" "sha512-4i+E+E40gK13K78ffD/8cy4lSSqeWwyXeTZoq16tndiCP12hC8uQsPJdIu5C6Kf22fD8UbBk71so7s/6VwpUOQ=="
  1242. "resolved" "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.3.1.tgz"
  1243. "version" "29.3.1"
  1244. dependencies:
  1245. "@jest/types" "^29.3.1"
  1246. "@jest/schemas@^29.0.0":
  1247. "integrity" "sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA=="
  1248. "resolved" "https://registry.npmjs.org/@jest/schemas/-/schemas-29.0.0.tgz"
  1249. "version" "29.0.0"
  1250. dependencies:
  1251. "@sinclair/typebox" "^0.24.1"
  1252. "@jest/types@^26.6.2":
  1253. "integrity" "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="
  1254. "resolved" "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"
  1255. "version" "26.6.2"
  1256. dependencies:
  1257. "@types/istanbul-lib-coverage" "^2.0.0"
  1258. "@types/istanbul-reports" "^3.0.0"
  1259. "@types/node" "*"
  1260. "@types/yargs" "^15.0.0"
  1261. "chalk" "^4.0.0"
  1262. "@jest/types@^27.5.1":
  1263. "integrity" "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw=="
  1264. "resolved" "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz"
  1265. "version" "27.5.1"
  1266. dependencies:
  1267. "@types/istanbul-lib-coverage" "^2.0.0"
  1268. "@types/istanbul-reports" "^3.0.0"
  1269. "@types/node" "*"
  1270. "@types/yargs" "^16.0.0"
  1271. "chalk" "^4.0.0"
  1272. "@jest/types@^29.3.1":
  1273. "integrity" "sha512-d0S0jmmTpjnhCmNpApgX3jrUZgZ22ivKJRvL2lli5hpCRoNnp1f85r2/wpKfXuYu8E7Jjh1hGfhPyup1NM5AmA=="
  1274. "resolved" "https://registry.npmjs.org/@jest/types/-/types-29.3.1.tgz"
  1275. "version" "29.3.1"
  1276. dependencies:
  1277. "@jest/schemas" "^29.0.0"
  1278. "@types/istanbul-lib-coverage" "^2.0.0"
  1279. "@types/istanbul-reports" "^3.0.0"
  1280. "@types/node" "*"
  1281. "@types/yargs" "^17.0.8"
  1282. "chalk" "^4.0.0"
  1283. "@jridgewell/gen-mapping@^0.1.0":
  1284. "integrity" "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="
  1285. "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
  1286. "version" "0.1.1"
  1287. dependencies:
  1288. "@jridgewell/set-array" "^1.0.0"
  1289. "@jridgewell/sourcemap-codec" "^1.4.10"
  1290. "@jridgewell/gen-mapping@^0.3.2":
  1291. "integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="
  1292. "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"
  1293. "version" "0.3.2"
  1294. dependencies:
  1295. "@jridgewell/set-array" "^1.0.1"
  1296. "@jridgewell/sourcemap-codec" "^1.4.10"
  1297. "@jridgewell/trace-mapping" "^0.3.9"
  1298. "@jridgewell/resolve-uri@3.1.0":
  1299. "integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
  1300. "resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
  1301. "version" "3.1.0"
  1302. "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
  1303. "integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
  1304. "resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
  1305. "version" "1.1.2"
  1306. "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@1.4.14":
  1307. "integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
  1308. "resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
  1309. "version" "1.4.14"
  1310. "@jridgewell/trace-mapping@^0.3.9":
  1311. "integrity" "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="
  1312. "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"
  1313. "version" "0.3.17"
  1314. dependencies:
  1315. "@jridgewell/resolve-uri" "3.1.0"
  1316. "@jridgewell/sourcemap-codec" "1.4.14"
  1317. "@nodelib/fs.scandir@2.1.5":
  1318. "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
  1319. "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
  1320. "version" "2.1.5"
  1321. dependencies:
  1322. "@nodelib/fs.stat" "2.0.5"
  1323. "run-parallel" "^1.1.9"
  1324. "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
  1325. "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
  1326. "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
  1327. "version" "2.0.5"
  1328. "@nodelib/fs.walk@^1.2.3":
  1329. "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
  1330. "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
  1331. "version" "1.2.8"
  1332. dependencies:
  1333. "@nodelib/fs.scandir" "2.1.5"
  1334. "fastq" "^1.6.0"
  1335. "@npmcli/fs@^1.0.0":
  1336. "integrity" "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ=="
  1337. "resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz"
  1338. "version" "1.1.1"
  1339. dependencies:
  1340. "@gar/promisify" "^1.0.1"
  1341. "semver" "^7.3.5"
  1342. "@npmcli/move-file@^1.0.1":
  1343. "integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="
  1344. "resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
  1345. "version" "1.1.2"
  1346. dependencies:
  1347. "mkdirp" "^1.0.4"
  1348. "rimraf" "^3.0.2"
  1349. "@popmotion/easing@^1.0.1":
  1350. "integrity" "sha512-IkdW0TNmRnWTeWI7aGQIVDbKXPWHVEYdGgd5ZR4SH/Ty/61p63jCjrPxX1XrR7IGkl08bjhJROStD7j+RKgoIw=="
  1351. "resolved" "https://registry.npmjs.org/@popmotion/easing/-/easing-1.0.2.tgz"
  1352. "version" "1.0.2"
  1353. "@react-native-community/cli-clean@^9.2.1":
  1354. "integrity" "sha512-dyNWFrqRe31UEvNO+OFWmQ4hmqA07bR9Ief/6NnGwx67IO9q83D5PEAf/o96ML6jhSbDwCmpPKhPwwBbsyM3mQ=="
  1355. "resolved" "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-9.2.1.tgz"
  1356. "version" "9.2.1"
  1357. dependencies:
  1358. "@react-native-community/cli-tools" "^9.2.1"
  1359. "chalk" "^4.1.2"
  1360. "execa" "^1.0.0"
  1361. "prompts" "^2.4.0"
  1362. "@react-native-community/cli-config@^9.2.1":
  1363. "integrity" "sha512-gHJlBBXUgDN9vrr3aWkRqnYrPXZLztBDQoY97Mm5Yo6MidsEpYo2JIP6FH4N/N2p1TdjxJL4EFtdd/mBpiR2MQ=="
  1364. "resolved" "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-9.2.1.tgz"
  1365. "version" "9.2.1"
  1366. dependencies:
  1367. "@react-native-community/cli-tools" "^9.2.1"
  1368. "cosmiconfig" "^5.1.0"
  1369. "deepmerge" "^3.2.0"
  1370. "glob" "^7.1.3"
  1371. "joi" "^17.2.1"
  1372. "@react-native-community/cli-debugger-ui@^9.0.0":
  1373. "integrity" "sha512-7hH05ZwU9Tp0yS6xJW0bqcZPVt0YCK7gwj7gnRu1jDNN2kughf6Lg0Ys29rAvtZ7VO1PK5c1O+zs7yFnylQDUA=="
  1374. "resolved" "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-9.0.0.tgz"
  1375. "version" "9.0.0"
  1376. dependencies:
  1377. "serve-static" "^1.13.1"
  1378. "@react-native-community/cli-doctor@^9.2.1":
  1379. "integrity" "sha512-/fiuG2eDGC2/OrXMOWI5ifq4X1gdYTQhvW2m0TT5Lk1LuFiZsbTCp1lR+XILKekuTvmYNjEGdVpeDpdIWlXdEA=="
  1380. "resolved" "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-9.3.0.tgz"
  1381. "version" "9.3.0"
  1382. dependencies:
  1383. "@react-native-community/cli-config" "^9.2.1"
  1384. "@react-native-community/cli-platform-ios" "^9.3.0"
  1385. "@react-native-community/cli-tools" "^9.2.1"
  1386. "chalk" "^4.1.2"
  1387. "command-exists" "^1.2.8"
  1388. "envinfo" "^7.7.2"
  1389. "execa" "^1.0.0"
  1390. "hermes-profile-transformer" "^0.0.6"
  1391. "ip" "^1.1.5"
  1392. "node-stream-zip" "^1.9.1"
  1393. "ora" "^5.4.1"
  1394. "prompts" "^2.4.0"
  1395. "semver" "^6.3.0"
  1396. "strip-ansi" "^5.2.0"
  1397. "sudo-prompt" "^9.0.0"
  1398. "wcwidth" "^1.0.1"
  1399. "@react-native-community/cli-hermes@^9.2.1":
  1400. "integrity" "sha512-Mq4PK8m5YqIdaVq5IdRfp4qK09aVO+aiCtd6vjzjNUgk1+1X5cgUqV6L65h4N+TFJYJHcp2AnB+ik1FAYXvYPQ=="
  1401. "resolved" "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-9.3.1.tgz"
  1402. "version" "9.3.1"
  1403. dependencies:
  1404. "@react-native-community/cli-platform-android" "^9.3.1"
  1405. "@react-native-community/cli-tools" "^9.2.1"
  1406. "chalk" "^4.1.2"
  1407. "hermes-profile-transformer" "^0.0.6"
  1408. "ip" "^1.1.5"
  1409. "@react-native-community/cli-platform-android@^9.3.1":
  1410. "integrity" "sha512-m0bQ6Twewl7OEZoVf79I2GZmsDqh+Gh0bxfxWgwxobsKDxLx8/RNItAo1lVtTCgzuCR75cX4EEO8idIF9jYhew=="
  1411. "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-9.3.1.tgz"
  1412. "version" "9.3.1"
  1413. dependencies:
  1414. "@react-native-community/cli-tools" "^9.2.1"
  1415. "chalk" "^4.1.2"
  1416. "execa" "^1.0.0"
  1417. "fs-extra" "^8.1.0"
  1418. "glob" "^7.1.3"
  1419. "logkitty" "^0.7.1"
  1420. "slash" "^3.0.0"
  1421. "@react-native-community/cli-platform-android@9.2.1":
  1422. "integrity" "sha512-VamCZ8nido3Q3Orhj6pBIx48itORNPLJ7iTfy3nucD1qISEDih3DOzCaQCtmqdEBgUkNkNl0O+cKgq5A3th3Zg=="
  1423. "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-9.2.1.tgz"
  1424. "version" "9.2.1"
  1425. dependencies:
  1426. "@react-native-community/cli-tools" "^9.2.1"
  1427. "chalk" "^4.1.2"
  1428. "execa" "^1.0.0"
  1429. "fs-extra" "^8.1.0"
  1430. "glob" "^7.1.3"
  1431. "logkitty" "^0.7.1"
  1432. "slash" "^3.0.0"
  1433. "@react-native-community/cli-platform-ios@^9.3.0":
  1434. "integrity" "sha512-nihTX53BhF2Q8p4B67oG3RGe1XwggoGBrMb6vXdcu2aN0WeXJOXdBLgR900DAA1O8g7oy1Sudu6we+JsVTKnjw=="
  1435. "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-9.3.0.tgz"
  1436. "version" "9.3.0"
  1437. dependencies:
  1438. "@react-native-community/cli-tools" "^9.2.1"
  1439. "chalk" "^4.1.2"
  1440. "execa" "^1.0.0"
  1441. "glob" "^7.1.3"
  1442. "ora" "^5.4.1"
  1443. "@react-native-community/cli-platform-ios@9.2.1":
  1444. "integrity" "sha512-dEgvkI6CFgPk3vs8IOR0toKVUjIFwe4AsXFvWWJL5qhrIzW9E5Owi0zPkSvzXsMlfYMbVX0COfVIK539ZxguSg=="
  1445. "resolved" "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-9.2.1.tgz"
  1446. "version" "9.2.1"
  1447. dependencies:
  1448. "@react-native-community/cli-tools" "^9.2.1"
  1449. "chalk" "^4.1.2"
  1450. "execa" "^1.0.0"
  1451. "glob" "^7.1.3"
  1452. "ora" "^5.4.1"
  1453. "@react-native-community/cli-plugin-metro@^9.2.1":
  1454. "integrity" "sha512-byBGBH6jDfUvcHGFA45W/sDwMlliv7flJ8Ns9foCh3VsIeYYPoDjjK7SawE9cPqRdMAD4SY7EVwqJnOtRbwLiQ=="
  1455. "resolved" "https://registry.npmjs.org/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-9.2.1.tgz"
  1456. "version" "9.2.1"
  1457. dependencies:
  1458. "@react-native-community/cli-server-api" "^9.2.1"
  1459. "@react-native-community/cli-tools" "^9.2.1"
  1460. "chalk" "^4.1.2"
  1461. "metro" "0.72.3"
  1462. "metro-config" "0.72.3"
  1463. "metro-core" "0.72.3"
  1464. "metro-react-native-babel-transformer" "0.72.3"
  1465. "metro-resolver" "0.72.3"
  1466. "metro-runtime" "0.72.3"
  1467. "readline" "^1.3.0"
  1468. "@react-native-community/cli-server-api@^9.2.1":
  1469. "integrity" "sha512-EI+9MUxEbWBQhWw2PkhejXfkcRqPl+58+whlXJvKHiiUd7oVbewFs0uLW0yZffUutt4FGx6Uh88JWEgwOzAdkw=="
  1470. "resolved" "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-9.2.1.tgz"
  1471. "version" "9.2.1"
  1472. dependencies:
  1473. "@react-native-community/cli-debugger-ui" "^9.0.0"
  1474. "@react-native-community/cli-tools" "^9.2.1"
  1475. "compression" "^1.7.1"
  1476. "connect" "^3.6.5"
  1477. "errorhandler" "^1.5.0"
  1478. "nocache" "^3.0.1"
  1479. "pretty-format" "^26.6.2"
  1480. "serve-static" "^1.13.1"
  1481. "ws" "^7.5.1"
  1482. "@react-native-community/cli-tools@^9.2.1":
  1483. "integrity" "sha512-bHmL/wrKmBphz25eMtoJQgwwmeCylbPxqFJnFSbkqJPXQz3ManQ6q/gVVMqFyz7D3v+riaus/VXz3sEDa97uiQ=="
  1484. "resolved" "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-9.2.1.tgz"
  1485. "version" "9.2.1"
  1486. dependencies:
  1487. "appdirsjs" "^1.2.4"
  1488. "chalk" "^4.1.2"
  1489. "find-up" "^5.0.0"
  1490. "mime" "^2.4.1"
  1491. "node-fetch" "^2.6.0"
  1492. "open" "^6.2.0"
  1493. "ora" "^5.4.1"
  1494. "semver" "^6.3.0"
  1495. "shell-quote" "^1.7.3"
  1496. "@react-native-community/cli-types@^9.1.0":
  1497. "integrity" "sha512-KDybF9XHvafLEILsbiKwz5Iobd+gxRaPyn4zSaAerBxedug4er5VUWa8Szy+2GeYKZzMh/gsb1o9lCToUwdT/g=="
  1498. "resolved" "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-9.1.0.tgz"
  1499. "version" "9.1.0"
  1500. dependencies:
  1501. "joi" "^17.2.1"
  1502. "@react-native-community/cli@9.2.1":
  1503. "integrity" "sha512-feMYS5WXXKF4TSWnCXozHxtWq36smyhGaENXlkiRESfYZ1mnCUlPfOanNCAvNvBqdyh9d4o0HxhYKX1g9l6DCQ=="
  1504. "resolved" "https://registry.npmjs.org/@react-native-community/cli/-/cli-9.2.1.tgz"
  1505. "version" "9.2.1"
  1506. dependencies:
  1507. "@react-native-community/cli-clean" "^9.2.1"
  1508. "@react-native-community/cli-config" "^9.2.1"
  1509. "@react-native-community/cli-debugger-ui" "^9.0.0"
  1510. "@react-native-community/cli-doctor" "^9.2.1"
  1511. "@react-native-community/cli-hermes" "^9.2.1"
  1512. "@react-native-community/cli-plugin-metro" "^9.2.1"
  1513. "@react-native-community/cli-server-api" "^9.2.1"
  1514. "@react-native-community/cli-tools" "^9.2.1"
  1515. "@react-native-community/cli-types" "^9.1.0"
  1516. "chalk" "^4.1.2"
  1517. "commander" "^9.4.0"
  1518. "execa" "^1.0.0"
  1519. "find-up" "^4.1.0"
  1520. "fs-extra" "^8.1.0"
  1521. "graceful-fs" "^4.1.3"
  1522. "prompts" "^2.4.0"
  1523. "semver" "^6.3.0"
  1524. "@react-native/assets@1.0.0":
  1525. "integrity" "sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ=="
  1526. "resolved" "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz"
  1527. "version" "1.0.0"
  1528. "@react-native/normalize-color@^2.0.0":
  1529. "integrity" "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA=="
  1530. "resolved" "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-2.1.0.tgz"
  1531. "version" "2.1.0"
  1532. "@react-native/normalize-color@2.0.0":
  1533. "integrity" "sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw=="
  1534. "resolved" "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-2.0.0.tgz"
  1535. "version" "2.0.0"
  1536. "@react-native/polyfills@2.0.0":
  1537. "integrity" "sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ=="
  1538. "resolved" "https://registry.npmjs.org/@react-native/polyfills/-/polyfills-2.0.0.tgz"
  1539. "version" "2.0.0"
  1540. "@react-navigation/bottom-tabs@^6.4.0":
  1541. "integrity" "sha512-b12o0aVe+A9bUVP31kQLVcZ5l4Inm/7XhpSS5FvwhoI9L2iwofK1tt98uEQd79NIAklfui+IqRqr2X6XKkygbA=="
  1542. "resolved" "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-6.4.1.tgz"
  1543. "version" "6.4.1"
  1544. dependencies:
  1545. "@react-navigation/elements" "^1.3.7"
  1546. "color" "^4.2.3"
  1547. "warn-once" "^0.1.0"
  1548. "@react-navigation/core@^6.4.1":
  1549. "integrity" "sha512-M1rTS+qaw84ZItvObwFTjuvXfrJRnXL2uJJeiDVwSvu7/30Wp6bkL3/MfLUEA6I4CzJhL74iRSfCKSVe7kVhlw=="
  1550. "resolved" "https://registry.npmjs.org/@react-navigation/core/-/core-6.4.1.tgz"
  1551. "version" "6.4.1"
  1552. dependencies:
  1553. "@react-navigation/routers" "^6.1.3"
  1554. "escape-string-regexp" "^4.0.0"
  1555. "nanoid" "^3.1.23"
  1556. "query-string" "^7.0.0"
  1557. "react-is" "^16.13.0"
  1558. "use-latest-callback" "^0.1.5"
  1559. "@react-navigation/elements@^1.3.7":
  1560. "integrity" "sha512-OZg2N/dd2tl6qkfrWvmUjFsYsbEyHEv4NbZSBuT+CR+d1pzmexN2IeVmi4cEMoR7U7GwhFcHRevF36yBsjU/dw=="
  1561. "resolved" "https://registry.npmjs.org/@react-navigation/elements/-/elements-1.3.7.tgz"
  1562. "version" "1.3.7"
  1563. "@react-navigation/native-stack@^6.9.1":
  1564. "integrity" "sha512-W5CYX+mYVyOYUgWoN15O34Pv/JieX2/pU09yh+kacxPHPEm4gYTQM/OIHACOov5T2WyiNSU6iIHjfzQ6e7M9zw=="
  1565. "resolved" "https://registry.npmjs.org/@react-navigation/native-stack/-/native-stack-6.9.2.tgz"
  1566. "version" "6.9.2"
  1567. dependencies:
  1568. "@react-navigation/elements" "^1.3.7"
  1569. "warn-once" "^0.1.0"
  1570. "@react-navigation/native@^6.0.0", "@react-navigation/native@^6.0.13":
  1571. "integrity" "sha512-Z95bJrRkZerBJq6Qc/xjA/kibPpB+UvPeMWS1CBhRF8FaX1483UdHqPqSbW879tPwjP2R4XfoA4dtoEHswrOjA=="
  1572. "resolved" "https://registry.npmjs.org/@react-navigation/native/-/native-6.0.14.tgz"
  1573. "version" "6.0.14"
  1574. dependencies:
  1575. "@react-navigation/core" "^6.4.1"
  1576. "escape-string-regexp" "^4.0.0"
  1577. "fast-deep-equal" "^3.1.3"
  1578. "nanoid" "^3.1.23"
  1579. "@react-navigation/routers@^6.1.3":
  1580. "integrity" "sha512-idJotMEzHc3haWsCh7EvnnZMKxvaS4YF/x2UyFBkNFiEFUaEo/1ioQU6qqmVLspdEv4bI/dLm97hQo7qD8Yl7Q=="
  1581. "resolved" "https://registry.npmjs.org/@react-navigation/routers/-/routers-6.1.3.tgz"
  1582. "version" "6.1.3"
  1583. dependencies:
  1584. "nanoid" "^3.1.23"
  1585. "@segment/loosely-validate-event@^2.0.0":
  1586. "integrity" "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw=="
  1587. "resolved" "https://registry.npmjs.org/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz"
  1588. "version" "2.0.0"
  1589. dependencies:
  1590. "component-type" "^1.2.1"
  1591. "join-component" "^1.1.0"
  1592. "@sideway/address@^4.1.3":
  1593. "integrity" "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw=="
  1594. "resolved" "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz"
  1595. "version" "4.1.4"
  1596. dependencies:
  1597. "@hapi/hoek" "^9.0.0"
  1598. "@sideway/formula@^3.0.0":
  1599. "integrity" "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg=="
  1600. "resolved" "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz"
  1601. "version" "3.0.0"
  1602. "@sideway/pinpoint@^2.0.0":
  1603. "integrity" "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="
  1604. "resolved" "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz"
  1605. "version" "2.0.0"
  1606. "@sinclair/typebox@^0.24.1":
  1607. "integrity" "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="
  1608. "resolved" "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz"
  1609. "version" "0.24.51"
  1610. "@types/hammerjs@^2.0.36":
  1611. "integrity" "sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA=="
  1612. "resolved" "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.41.tgz"
  1613. "version" "2.0.41"
  1614. "@types/invariant@^2.2.29":
  1615. "integrity" "sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg=="
  1616. "resolved" "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.35.tgz"
  1617. "version" "2.2.35"
  1618. "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
  1619. "integrity" "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
  1620. "resolved" "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz"
  1621. "version" "2.0.4"
  1622. "@types/istanbul-lib-report@*":
  1623. "integrity" "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg=="
  1624. "resolved" "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
  1625. "version" "3.0.0"
  1626. dependencies:
  1627. "@types/istanbul-lib-coverage" "*"
  1628. "@types/istanbul-reports@^3.0.0":
  1629. "integrity" "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="
  1630. "resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"
  1631. "version" "3.0.1"
  1632. dependencies:
  1633. "@types/istanbul-lib-report" "*"
  1634. "@types/node@*":
  1635. "integrity" "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg=="
  1636. "resolved" "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz"
  1637. "version" "18.11.9"
  1638. "@types/node@^10.0.5":
  1639. "integrity" "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw=="
  1640. "resolved" "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz"
  1641. "version" "10.17.60"
  1642. "@types/yargs-parser@*":
  1643. "integrity" "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="
  1644. "resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz"
  1645. "version" "21.0.0"
  1646. "@types/yargs@^15.0.0":
  1647. "integrity" "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ=="
  1648. "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz"
  1649. "version" "15.0.14"
  1650. dependencies:
  1651. "@types/yargs-parser" "*"
  1652. "@types/yargs@^16.0.0":
  1653. "integrity" "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw=="
  1654. "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz"
  1655. "version" "16.0.4"
  1656. dependencies:
  1657. "@types/yargs-parser" "*"
  1658. "@types/yargs@^17.0.8":
  1659. "integrity" "sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg=="
  1660. "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.13.tgz"
  1661. "version" "17.0.13"
  1662. dependencies:
  1663. "@types/yargs-parser" "*"
  1664. "@urql/core@>=2.3.1", "@urql/core@2.3.6":
  1665. "integrity" "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw=="
  1666. "resolved" "https://registry.npmjs.org/@urql/core/-/core-2.3.6.tgz"
  1667. "version" "2.3.6"
  1668. dependencies:
  1669. "@graphql-typed-document-node/core" "^3.1.0"
  1670. "wonka" "^4.0.14"
  1671. "@urql/exchange-retry@0.3.0":
  1672. "integrity" "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg=="
  1673. "resolved" "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz"
  1674. "version" "0.3.0"
  1675. dependencies:
  1676. "@urql/core" ">=2.3.1"
  1677. "wonka" "^4.0.14"
  1678. "@xmldom/xmldom@~0.7.0":
  1679. "integrity" "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA=="
  1680. "resolved" "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.9.tgz"
  1681. "version" "0.7.9"
  1682. "abort-controller@^3.0.0":
  1683. "integrity" "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
  1684. "resolved" "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz"
  1685. "version" "3.0.0"
  1686. dependencies:
  1687. "event-target-shim" "^5.0.0"
  1688. "absolute-path@^0.0.0":
  1689. "integrity" "sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA=="
  1690. "resolved" "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz"
  1691. "version" "0.0.0"
  1692. "accepts@^1.3.7", "accepts@^1.3.8", "accepts@~1.3.5", "accepts@~1.3.7":
  1693. "integrity" "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="
  1694. "resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"
  1695. "version" "1.3.8"
  1696. dependencies:
  1697. "mime-types" "~2.1.34"
  1698. "negotiator" "0.6.3"
  1699. "agent-base@6":
  1700. "integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="
  1701. "resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"
  1702. "version" "6.0.2"
  1703. dependencies:
  1704. "debug" "4"
  1705. "aggregate-error@^3.0.0":
  1706. "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="
  1707. "resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"
  1708. "version" "3.1.0"
  1709. dependencies:
  1710. "clean-stack" "^2.0.0"
  1711. "indent-string" "^4.0.0"
  1712. "animated-pose@^1.0.0", "animated-pose@^1.2.0":
  1713. "integrity" "sha512-7XtulKltEIt/E+7jOz4+pCduZENRI3DU/8zvqzCGmKTAmPJiXeT34P4oYmZ83PzKd4orJqv0kN3D7Zh0COjPWg=="
  1714. "resolved" "https://registry.npmjs.org/animated-pose/-/animated-pose-1.2.3.tgz"
  1715. "version" "1.2.3"
  1716. dependencies:
  1717. "@popmotion/easing" "^1.0.1"
  1718. "hey-listen" "^1.0.5"
  1719. "pose-core" "^2.0.3"
  1720. "anser@^1.4.9":
  1721. "integrity" "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww=="
  1722. "resolved" "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz"
  1723. "version" "1.4.10"
  1724. "ansi-escapes@^3.1.0":
  1725. "integrity" "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="
  1726. "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"
  1727. "version" "3.2.0"
  1728. "ansi-escapes@^4.2.1":
  1729. "integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="
  1730. "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
  1731. "version" "4.3.2"
  1732. dependencies:
  1733. "type-fest" "^0.21.3"
  1734. "ansi-fragments@^0.2.1":
  1735. "integrity" "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w=="
  1736. "resolved" "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz"
  1737. "version" "0.2.1"
  1738. dependencies:
  1739. "colorette" "^1.0.7"
  1740. "slice-ansi" "^2.0.0"
  1741. "strip-ansi" "^5.0.0"
  1742. "ansi-regex@^4.1.0":
  1743. "integrity" "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="
  1744. "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz"
  1745. "version" "4.1.1"
  1746. "ansi-regex@^5.0.0", "ansi-regex@^5.0.1":
  1747. "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
  1748. "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
  1749. "version" "5.0.1"
  1750. "ansi-styles@^3.2.0", "ansi-styles@^3.2.1":
  1751. "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
  1752. "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
  1753. "version" "3.2.1"
  1754. dependencies:
  1755. "color-convert" "^1.9.0"
  1756. "ansi-styles@^4.0.0":
  1757. "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
  1758. "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
  1759. "version" "4.3.0"
  1760. dependencies:
  1761. "color-convert" "^2.0.1"
  1762. "ansi-styles@^4.1.0":
  1763. "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
  1764. "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
  1765. "version" "4.3.0"
  1766. dependencies:
  1767. "color-convert" "^2.0.1"
  1768. "any-promise@^1.0.0":
  1769. "integrity" "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
  1770. "resolved" "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz"
  1771. "version" "1.3.0"
  1772. "anymatch@^3.0.3":
  1773. "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
  1774. "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
  1775. "version" "3.1.2"
  1776. dependencies:
  1777. "normalize-path" "^3.0.0"
  1778. "picomatch" "^2.0.4"
  1779. "appdirsjs@^1.2.4":
  1780. "integrity" "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw=="
  1781. "resolved" "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz"
  1782. "version" "1.2.7"
  1783. "application-config-path@^0.1.0":
  1784. "integrity" "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q=="
  1785. "resolved" "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz"
  1786. "version" "0.1.0"
  1787. "arg@4.1.0":
  1788. "integrity" "sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg=="
  1789. "resolved" "https://registry.npmjs.org/arg/-/arg-4.1.0.tgz"
  1790. "version" "4.1.0"
  1791. "argparse@^1.0.7":
  1792. "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
  1793. "resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
  1794. "version" "1.0.10"
  1795. dependencies:
  1796. "sprintf-js" "~1.0.2"
  1797. "argparse@^2.0.1":
  1798. "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
  1799. "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
  1800. "version" "2.0.1"
  1801. "arr-diff@^4.0.0":
  1802. "integrity" "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA=="
  1803. "resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
  1804. "version" "4.0.0"
  1805. "arr-flatten@^1.1.0":
  1806. "integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
  1807. "resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
  1808. "version" "1.1.0"
  1809. "arr-union@^3.1.0":
  1810. "integrity" "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q=="
  1811. "resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
  1812. "version" "3.1.0"
  1813. "array-union@^2.1.0":
  1814. "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
  1815. "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
  1816. "version" "2.1.0"
  1817. "array-unique@^0.3.2":
  1818. "integrity" "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="
  1819. "resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
  1820. "version" "0.3.2"
  1821. "asap@~2.0.3", "asap@~2.0.6":
  1822. "integrity" "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
  1823. "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
  1824. "version" "2.0.6"
  1825. "assign-symbols@^1.0.0":
  1826. "integrity" "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw=="
  1827. "resolved" "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"
  1828. "version" "1.0.0"
  1829. "ast-types@0.14.2":
  1830. "integrity" "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA=="
  1831. "resolved" "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz"
  1832. "version" "0.14.2"
  1833. dependencies:
  1834. "tslib" "^2.0.1"
  1835. "astral-regex@^1.0.0":
  1836. "integrity" "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="
  1837. "resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"
  1838. "version" "1.0.0"
  1839. "async-limiter@~1.0.0":
  1840. "integrity" "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
  1841. "resolved" "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"
  1842. "version" "1.0.1"
  1843. "async@^3.2.2":
  1844. "integrity" "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ=="
  1845. "resolved" "https://registry.npmjs.org/async/-/async-3.2.4.tgz"
  1846. "version" "3.2.4"
  1847. "asynckit@^0.4.0":
  1848. "integrity" "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
  1849. "resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
  1850. "version" "0.4.0"
  1851. "at-least-node@^1.0.0":
  1852. "integrity" "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="
  1853. "resolved" "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz"
  1854. "version" "1.0.0"
  1855. "atob@^2.1.2":
  1856. "integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
  1857. "resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
  1858. "version" "2.1.2"
  1859. "babel-core@^7.0.0-bridge.0":
  1860. "integrity" "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg=="
  1861. "resolved" "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz"
  1862. "version" "7.0.0-bridge.0"
  1863. "babel-plugin-module-resolver@^4.1.0":
  1864. "integrity" "sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA=="
  1865. "resolved" "https://registry.npmjs.org/babel-plugin-module-resolver/-/babel-plugin-module-resolver-4.1.0.tgz"
  1866. "version" "4.1.0"
  1867. dependencies:
  1868. "find-babel-config" "^1.2.0"
  1869. "glob" "^7.1.6"
  1870. "pkg-up" "^3.1.0"
  1871. "reselect" "^4.0.0"
  1872. "resolve" "^1.13.1"
  1873. "babel-plugin-polyfill-corejs2@^0.3.3":
  1874. "integrity" "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q=="
  1875. "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz"
  1876. "version" "0.3.3"
  1877. dependencies:
  1878. "@babel/compat-data" "^7.17.7"
  1879. "@babel/helper-define-polyfill-provider" "^0.3.3"
  1880. "semver" "^6.1.1"
  1881. "babel-plugin-polyfill-corejs3@^0.6.0":
  1882. "integrity" "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA=="
  1883. "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz"
  1884. "version" "0.6.0"
  1885. dependencies:
  1886. "@babel/helper-define-polyfill-provider" "^0.3.3"
  1887. "core-js-compat" "^3.25.1"
  1888. "babel-plugin-polyfill-regenerator@^0.4.1":
  1889. "integrity" "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw=="
  1890. "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz"
  1891. "version" "0.4.1"
  1892. dependencies:
  1893. "@babel/helper-define-polyfill-provider" "^0.3.3"
  1894. "babel-plugin-react-native-web@~0.18.2":
  1895. "integrity" "sha512-2UiwS6G7XKJvpo0X5OFkzGjHGFuNx9J+DgEG8TEmm+X5S0z6EB59W11RDEZghdKzsQzVbs1jB+2VHBuVgjMTiw=="
  1896. "resolved" "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.10.tgz"
  1897. "version" "0.18.10"
  1898. "babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0":
  1899. "integrity" "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ=="
  1900. "resolved" "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz"
  1901. "version" "7.0.0-beta.0"
  1902. "babel-preset-expo@~9.2.2":
  1903. "integrity" "sha512-69cSPObZWFz0AaUT6IhCu2VzPVTICUtXzhX5ecoDttFe+9wb9yMV8m7rBNZptJQ3wtiKB5iEL7/wvtKygPz/mQ=="
  1904. "resolved" "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-9.2.2.tgz"
  1905. "version" "9.2.2"
  1906. dependencies:
  1907. "@babel/plugin-proposal-decorators" "^7.12.9"
  1908. "@babel/plugin-proposal-object-rest-spread" "^7.12.13"
  1909. "@babel/plugin-transform-react-jsx" "^7.12.17"
  1910. "@babel/preset-env" "^7.12.9"
  1911. "babel-plugin-module-resolver" "^4.1.0"
  1912. "babel-plugin-react-native-web" "~0.18.2"
  1913. "metro-react-native-babel-preset" "0.72.3"
  1914. "babel-preset-fbjs@^3.4.0":
  1915. "integrity" "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow=="
  1916. "resolved" "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz"
  1917. "version" "3.4.0"
  1918. dependencies:
  1919. "@babel/plugin-proposal-class-properties" "^7.0.0"
  1920. "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
  1921. "@babel/plugin-syntax-class-properties" "^7.0.0"
  1922. "@babel/plugin-syntax-flow" "^7.0.0"
  1923. "@babel/plugin-syntax-jsx" "^7.0.0"
  1924. "@babel/plugin-syntax-object-rest-spread" "^7.0.0"
  1925. "@babel/plugin-transform-arrow-functions" "^7.0.0"
  1926. "@babel/plugin-transform-block-scoped-functions" "^7.0.0"
  1927. "@babel/plugin-transform-block-scoping" "^7.0.0"
  1928. "@babel/plugin-transform-classes" "^7.0.0"
  1929. "@babel/plugin-transform-computed-properties" "^7.0.0"
  1930. "@babel/plugin-transform-destructuring" "^7.0.0"
  1931. "@babel/plugin-transform-flow-strip-types" "^7.0.0"
  1932. "@babel/plugin-transform-for-of" "^7.0.0"
  1933. "@babel/plugin-transform-function-name" "^7.0.0"
  1934. "@babel/plugin-transform-literals" "^7.0.0"
  1935. "@babel/plugin-transform-member-expression-literals" "^7.0.0"
  1936. "@babel/plugin-transform-modules-commonjs" "^7.0.0"
  1937. "@babel/plugin-transform-object-super" "^7.0.0"
  1938. "@babel/plugin-transform-parameters" "^7.0.0"
  1939. "@babel/plugin-transform-property-literals" "^7.0.0"
  1940. "@babel/plugin-transform-react-display-name" "^7.0.0"
  1941. "@babel/plugin-transform-react-jsx" "^7.0.0"
  1942. "@babel/plugin-transform-shorthand-properties" "^7.0.0"
  1943. "@babel/plugin-transform-spread" "^7.0.0"
  1944. "@babel/plugin-transform-template-literals" "^7.0.0"
  1945. "babel-plugin-syntax-trailing-function-commas" "^7.0.0-beta.0"
  1946. "balanced-match@^1.0.0":
  1947. "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
  1948. "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
  1949. "version" "1.0.2"
  1950. "base@^0.11.1":
  1951. "integrity" "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="
  1952. "resolved" "https://registry.npmjs.org/base/-/base-0.11.2.tgz"
  1953. "version" "0.11.2"
  1954. dependencies:
  1955. "cache-base" "^1.0.1"
  1956. "class-utils" "^0.3.5"
  1957. "component-emitter" "^1.2.1"
  1958. "define-property" "^1.0.0"
  1959. "isobject" "^3.0.1"
  1960. "mixin-deep" "^1.2.0"
  1961. "pascalcase" "^0.1.1"
  1962. "base64-js@^1.1.2", "base64-js@^1.2.3", "base64-js@^1.3.1", "base64-js@^1.5.1":
  1963. "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
  1964. "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
  1965. "version" "1.5.1"
  1966. "better-opn@~3.0.2":
  1967. "integrity" "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ=="
  1968. "resolved" "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz"
  1969. "version" "3.0.2"
  1970. dependencies:
  1971. "open" "^8.0.4"
  1972. "big-integer@1.6.x":
  1973. "integrity" "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg=="
  1974. "resolved" "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz"
  1975. "version" "1.6.51"
  1976. "bl@^4.1.0":
  1977. "integrity" "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="
  1978. "resolved" "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
  1979. "version" "4.1.0"
  1980. dependencies:
  1981. "buffer" "^5.5.0"
  1982. "inherits" "^2.0.4"
  1983. "readable-stream" "^3.4.0"
  1984. "blueimp-md5@^2.10.0":
  1985. "integrity" "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w=="
  1986. "resolved" "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz"
  1987. "version" "2.19.0"
  1988. "body-parser@1.19.0":
  1989. "integrity" "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="
  1990. "resolved" "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"
  1991. "version" "1.19.0"
  1992. dependencies:
  1993. "bytes" "3.1.0"
  1994. "content-type" "~1.0.4"
  1995. "debug" "2.6.9"
  1996. "depd" "~1.1.2"
  1997. "http-errors" "1.7.2"
  1998. "iconv-lite" "0.4.24"
  1999. "on-finished" "~2.3.0"
  2000. "qs" "6.7.0"
  2001. "raw-body" "2.4.0"
  2002. "type-is" "~1.6.17"
  2003. "bplist-creator@0.1.0":
  2004. "integrity" "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg=="
  2005. "resolved" "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz"
  2006. "version" "0.1.0"
  2007. dependencies:
  2008. "stream-buffers" "2.2.x"
  2009. "bplist-parser@^0.3.1":
  2010. "integrity" "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ=="
  2011. "resolved" "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz"
  2012. "version" "0.3.2"
  2013. dependencies:
  2014. "big-integer" "1.6.x"
  2015. "bplist-parser@0.3.1":
  2016. "integrity" "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA=="
  2017. "resolved" "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz"
  2018. "version" "0.3.1"
  2019. dependencies:
  2020. "big-integer" "1.6.x"
  2021. "brace-expansion@^1.1.7":
  2022. "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
  2023. "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
  2024. "version" "1.1.11"
  2025. dependencies:
  2026. "balanced-match" "^1.0.0"
  2027. "concat-map" "0.0.1"
  2028. "braces@^2.3.1":
  2029. "integrity" "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="
  2030. "resolved" "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"
  2031. "version" "2.3.2"
  2032. dependencies:
  2033. "arr-flatten" "^1.1.0"
  2034. "array-unique" "^0.3.2"
  2035. "extend-shallow" "^2.0.1"
  2036. "fill-range" "^4.0.0"
  2037. "isobject" "^3.0.1"
  2038. "repeat-element" "^1.1.2"
  2039. "snapdragon" "^0.8.1"
  2040. "snapdragon-node" "^2.0.1"
  2041. "split-string" "^3.0.2"
  2042. "to-regex" "^3.0.1"
  2043. "braces@^3.0.2":
  2044. "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
  2045. "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
  2046. "version" "3.0.2"
  2047. dependencies:
  2048. "fill-range" "^7.0.1"
  2049. "browserslist@^4.21.3", "browserslist@^4.21.4", "browserslist@>= 4.21.0":
  2050. "integrity" "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw=="
  2051. "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"
  2052. "version" "4.21.4"
  2053. dependencies:
  2054. "caniuse-lite" "^1.0.30001400"
  2055. "electron-to-chromium" "^1.4.251"
  2056. "node-releases" "^2.0.6"
  2057. "update-browserslist-db" "^1.0.9"
  2058. "bser@2.1.1":
  2059. "integrity" "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="
  2060. "resolved" "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz"
  2061. "version" "2.1.1"
  2062. dependencies:
  2063. "node-int64" "^0.4.0"
  2064. "buffer-alloc-unsafe@^1.1.0":
  2065. "integrity" "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
  2066. "resolved" "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"
  2067. "version" "1.1.0"
  2068. "buffer-alloc@^1.1.0":
  2069. "integrity" "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow=="
  2070. "resolved" "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz"
  2071. "version" "1.2.0"
  2072. dependencies:
  2073. "buffer-alloc-unsafe" "^1.1.0"
  2074. "buffer-fill" "^1.0.0"
  2075. "buffer-fill@^1.0.0":
  2076. "integrity" "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="
  2077. "resolved" "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"
  2078. "version" "1.0.0"
  2079. "buffer-from@^1.0.0":
  2080. "integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
  2081. "resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
  2082. "version" "1.1.2"
  2083. "buffer@^5.5.0":
  2084. "integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
  2085. "resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
  2086. "version" "5.7.1"
  2087. dependencies:
  2088. "base64-js" "^1.3.1"
  2089. "ieee754" "^1.1.13"
  2090. "builtins@^1.0.3":
  2091. "integrity" "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ=="
  2092. "resolved" "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz"
  2093. "version" "1.0.3"
  2094. "bytes@3.0.0":
  2095. "integrity" "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw=="
  2096. "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"
  2097. "version" "3.0.0"
  2098. "bytes@3.1.0":
  2099. "integrity" "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
  2100. "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"
  2101. "version" "3.1.0"
  2102. "cacache@^15.3.0":
  2103. "integrity" "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="
  2104. "resolved" "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz"
  2105. "version" "15.3.0"
  2106. dependencies:
  2107. "@npmcli/fs" "^1.0.0"
  2108. "@npmcli/move-file" "^1.0.1"
  2109. "chownr" "^2.0.0"
  2110. "fs-minipass" "^2.0.0"
  2111. "glob" "^7.1.4"
  2112. "infer-owner" "^1.0.4"
  2113. "lru-cache" "^6.0.0"
  2114. "minipass" "^3.1.1"
  2115. "minipass-collect" "^1.0.2"
  2116. "minipass-flush" "^1.0.5"
  2117. "minipass-pipeline" "^1.2.2"
  2118. "mkdirp" "^1.0.3"
  2119. "p-map" "^4.0.0"
  2120. "promise-inflight" "^1.0.1"
  2121. "rimraf" "^3.0.2"
  2122. "ssri" "^8.0.1"
  2123. "tar" "^6.0.2"
  2124. "unique-filename" "^1.1.1"
  2125. "cache-base@^1.0.1":
  2126. "integrity" "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="
  2127. "resolved" "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"
  2128. "version" "1.0.1"
  2129. dependencies:
  2130. "collection-visit" "^1.0.0"
  2131. "component-emitter" "^1.2.1"
  2132. "get-value" "^2.0.6"
  2133. "has-value" "^1.0.0"
  2134. "isobject" "^3.0.1"
  2135. "set-value" "^2.0.0"
  2136. "to-object-path" "^0.3.0"
  2137. "union-value" "^1.0.0"
  2138. "unset-value" "^1.0.0"
  2139. "caller-callsite@^2.0.0":
  2140. "integrity" "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ=="
  2141. "resolved" "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz"
  2142. "version" "2.0.0"
  2143. dependencies:
  2144. "callsites" "^2.0.0"
  2145. "caller-path@^2.0.0":
  2146. "integrity" "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A=="
  2147. "resolved" "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz"
  2148. "version" "2.0.0"
  2149. dependencies:
  2150. "caller-callsite" "^2.0.0"
  2151. "callsites@^2.0.0":
  2152. "integrity" "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ=="
  2153. "resolved" "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz"
  2154. "version" "2.0.0"
  2155. "camelcase@^5.0.0":
  2156. "integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
  2157. "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
  2158. "version" "5.3.1"
  2159. "camelcase@^6.0.0":
  2160. "integrity" "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
  2161. "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"
  2162. "version" "6.3.0"
  2163. "caniuse-lite@^1.0.30001400":
  2164. "integrity" "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ=="
  2165. "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz"
  2166. "version" "1.0.30001431"
  2167. "chalk@^2.0.0", "chalk@^2.0.1", "chalk@^2.4.2":
  2168. "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
  2169. "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
  2170. "version" "2.4.2"
  2171. dependencies:
  2172. "ansi-styles" "^3.2.1"
  2173. "escape-string-regexp" "^1.0.5"
  2174. "supports-color" "^5.3.0"
  2175. "chalk@^4.0.0":
  2176. "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
  2177. "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
  2178. "version" "4.1.2"
  2179. dependencies:
  2180. "ansi-styles" "^4.1.0"
  2181. "supports-color" "^7.1.0"
  2182. "chalk@^4.1.0", "chalk@^4.1.2":
  2183. "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
  2184. "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
  2185. "version" "4.1.2"
  2186. dependencies:
  2187. "ansi-styles" "^4.1.0"
  2188. "supports-color" "^7.1.0"
  2189. "charenc@~0.0.1", "charenc@0.0.2":
  2190. "integrity" "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA=="
  2191. "resolved" "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz"
  2192. "version" "0.0.2"
  2193. "chownr@^2.0.0":
  2194. "integrity" "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="
  2195. "resolved" "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz"
  2196. "version" "2.0.0"
  2197. "ci-info@^2.0.0":
  2198. "integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
  2199. "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz"
  2200. "version" "2.0.0"
  2201. "ci-info@^3.2.0", "ci-info@^3.3.0":
  2202. "integrity" "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw=="
  2203. "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz"
  2204. "version" "3.5.0"
  2205. "class-utils@^0.3.5":
  2206. "integrity" "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="
  2207. "resolved" "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"
  2208. "version" "0.3.6"
  2209. dependencies:
  2210. "arr-union" "^3.1.0"
  2211. "define-property" "^0.2.5"
  2212. "isobject" "^3.0.0"
  2213. "static-extend" "^0.1.1"
  2214. "clean-stack@^2.0.0":
  2215. "integrity" "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="
  2216. "resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"
  2217. "version" "2.2.0"
  2218. "cli-cursor@^2.1.0":
  2219. "integrity" "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw=="
  2220. "resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"
  2221. "version" "2.1.0"
  2222. dependencies:
  2223. "restore-cursor" "^2.0.0"
  2224. "cli-cursor@^3.1.0":
  2225. "integrity" "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="
  2226. "resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz"
  2227. "version" "3.1.0"
  2228. dependencies:
  2229. "restore-cursor" "^3.1.0"
  2230. "cli-spinners@^2.0.0", "cli-spinners@^2.5.0":
  2231. "integrity" "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw=="
  2232. "resolved" "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz"
  2233. "version" "2.7.0"
  2234. "cliui@^6.0.0":
  2235. "integrity" "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ=="
  2236. "resolved" "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"
  2237. "version" "6.0.0"
  2238. dependencies:
  2239. "string-width" "^4.2.0"
  2240. "strip-ansi" "^6.0.0"
  2241. "wrap-ansi" "^6.2.0"
  2242. "clone-deep@^4.0.1":
  2243. "integrity" "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ=="
  2244. "resolved" "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz"
  2245. "version" "4.0.1"
  2246. dependencies:
  2247. "is-plain-object" "^2.0.4"
  2248. "kind-of" "^6.0.2"
  2249. "shallow-clone" "^3.0.0"
  2250. "clone@^1.0.2":
  2251. "integrity" "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="
  2252. "resolved" "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"
  2253. "version" "1.0.4"
  2254. "clone@^2.1.2":
  2255. "integrity" "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w=="
  2256. "resolved" "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz"
  2257. "version" "2.1.2"
  2258. "collection-visit@^1.0.0":
  2259. "integrity" "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw=="
  2260. "resolved" "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"
  2261. "version" "1.0.0"
  2262. dependencies:
  2263. "map-visit" "^1.0.0"
  2264. "object-visit" "^1.0.0"
  2265. "color-convert@^1.9.0":
  2266. "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
  2267. "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
  2268. "version" "1.9.3"
  2269. dependencies:
  2270. "color-name" "1.1.3"
  2271. "color-convert@^2.0.1":
  2272. "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
  2273. "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
  2274. "version" "2.0.1"
  2275. dependencies:
  2276. "color-name" "~1.1.4"
  2277. "color-name@^1.0.0", "color-name@1.1.3":
  2278. "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
  2279. "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
  2280. "version" "1.1.3"
  2281. "color-name@~1.1.4":
  2282. "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
  2283. "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
  2284. "version" "1.1.4"
  2285. "color-string@^1.9.0":
  2286. "integrity" "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="
  2287. "resolved" "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz"
  2288. "version" "1.9.1"
  2289. dependencies:
  2290. "color-name" "^1.0.0"
  2291. "simple-swizzle" "^0.2.2"
  2292. "color@^4.2.3":
  2293. "integrity" "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A=="
  2294. "resolved" "https://registry.npmjs.org/color/-/color-4.2.3.tgz"
  2295. "version" "4.2.3"
  2296. dependencies:
  2297. "color-convert" "^2.0.1"
  2298. "color-string" "^1.9.0"
  2299. "colorette@^1.0.7":
  2300. "integrity" "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="
  2301. "resolved" "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz"
  2302. "version" "1.4.0"
  2303. "combined-stream@^1.0.8":
  2304. "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="
  2305. "resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
  2306. "version" "1.0.8"
  2307. dependencies:
  2308. "delayed-stream" "~1.0.0"
  2309. "command-exists@^1.2.4", "command-exists@^1.2.8":
  2310. "integrity" "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="
  2311. "resolved" "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz"
  2312. "version" "1.2.9"
  2313. "commander@^4.0.0":
  2314. "integrity" "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="
  2315. "resolved" "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz"
  2316. "version" "4.1.1"
  2317. "commander@^7.2.0":
  2318. "integrity" "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
  2319. "resolved" "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"
  2320. "version" "7.2.0"
  2321. "commander@^9.4.0":
  2322. "integrity" "sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw=="
  2323. "resolved" "https://registry.npmjs.org/commander/-/commander-9.4.1.tgz"
  2324. "version" "9.4.1"
  2325. "commander@~2.13.0":
  2326. "integrity" "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA=="
  2327. "resolved" "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz"
  2328. "version" "2.13.0"
  2329. "commondir@^1.0.1":
  2330. "integrity" "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="
  2331. "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
  2332. "version" "1.0.1"
  2333. "compare-versions@^3.4.0":
  2334. "integrity" "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA=="
  2335. "resolved" "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz"
  2336. "version" "3.6.0"
  2337. "component-emitter@^1.2.1":
  2338. "integrity" "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
  2339. "resolved" "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"
  2340. "version" "1.3.0"
  2341. "component-type@^1.2.1":
  2342. "integrity" "sha512-Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg=="
  2343. "resolved" "https://registry.npmjs.org/component-type/-/component-type-1.2.1.tgz"
  2344. "version" "1.2.1"
  2345. "compressible@~2.0.16":
  2346. "integrity" "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="
  2347. "resolved" "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz"
  2348. "version" "2.0.18"
  2349. dependencies:
  2350. "mime-db" ">= 1.43.0 < 2"
  2351. "compression@^1.7.1":
  2352. "integrity" "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="
  2353. "resolved" "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"
  2354. "version" "1.7.4"
  2355. dependencies:
  2356. "accepts" "~1.3.5"
  2357. "bytes" "3.0.0"
  2358. "compressible" "~2.0.16"
  2359. "debug" "2.6.9"
  2360. "on-headers" "~1.0.2"
  2361. "safe-buffer" "5.1.2"
  2362. "vary" "~1.1.2"
  2363. "concat-map@0.0.1":
  2364. "integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
  2365. "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
  2366. "version" "0.0.1"
  2367. "connect@^3.6.5", "connect@^3.7.0":
  2368. "integrity" "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ=="
  2369. "resolved" "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz"
  2370. "version" "3.7.0"
  2371. dependencies:
  2372. "debug" "2.6.9"
  2373. "finalhandler" "1.1.2"
  2374. "parseurl" "~1.3.3"
  2375. "utils-merge" "1.0.1"
  2376. "content-type@~1.0.4":
  2377. "integrity" "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
  2378. "resolved" "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"
  2379. "version" "1.0.4"
  2380. "convert-source-map@^1.7.0":
  2381. "integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
  2382. "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"
  2383. "version" "1.9.0"
  2384. "copy-descriptor@^0.1.0":
  2385. "integrity" "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw=="
  2386. "resolved" "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"
  2387. "version" "0.1.1"
  2388. "core-js-compat@^3.25.1":
  2389. "integrity" "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A=="
  2390. "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz"
  2391. "version" "3.26.0"
  2392. dependencies:
  2393. "browserslist" "^4.21.4"
  2394. "core-util-is@~1.0.0":
  2395. "integrity" "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
  2396. "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
  2397. "version" "1.0.3"
  2398. "cosmiconfig@^5.0.5", "cosmiconfig@^5.1.0":
  2399. "integrity" "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA=="
  2400. "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz"
  2401. "version" "5.2.1"
  2402. dependencies:
  2403. "import-fresh" "^2.0.0"
  2404. "is-directory" "^0.3.1"
  2405. "js-yaml" "^3.13.1"
  2406. "parse-json" "^4.0.0"
  2407. "cross-fetch@^3.1.5":
  2408. "integrity" "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw=="
  2409. "resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz"
  2410. "version" "3.1.5"
  2411. dependencies:
  2412. "node-fetch" "2.6.7"
  2413. "cross-spawn@^6.0.0", "cross-spawn@^6.0.5":
  2414. "integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="
  2415. "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
  2416. "version" "6.0.5"
  2417. dependencies:
  2418. "nice-try" "^1.0.4"
  2419. "path-key" "^2.0.1"
  2420. "semver" "^5.5.0"
  2421. "shebang-command" "^1.2.0"
  2422. "which" "^1.2.9"
  2423. "crypt@~0.0.1", "crypt@0.0.2":
  2424. "integrity" "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow=="
  2425. "resolved" "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz"
  2426. "version" "0.0.2"
  2427. "crypto-random-string@^1.0.0":
  2428. "integrity" "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg=="
  2429. "resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"
  2430. "version" "1.0.0"
  2431. "crypto-random-string@^2.0.0":
  2432. "integrity" "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
  2433. "resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz"
  2434. "version" "2.0.0"
  2435. "dag-map@~1.0.0":
  2436. "integrity" "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw=="
  2437. "resolved" "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz"
  2438. "version" "1.0.2"
  2439. "dayjs@^1.8.15":
  2440. "integrity" "sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ=="
  2441. "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.11.6.tgz"
  2442. "version" "1.11.6"
  2443. "debug@^2.2.0":
  2444. "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
  2445. "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
  2446. "version" "2.6.9"
  2447. dependencies:
  2448. "ms" "2.0.0"
  2449. "debug@^2.3.3":
  2450. "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
  2451. "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
  2452. "version" "2.6.9"
  2453. dependencies:
  2454. "ms" "2.0.0"
  2455. "debug@^3.1.0":
  2456. "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="
  2457. "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
  2458. "version" "3.2.7"
  2459. dependencies:
  2460. "ms" "^2.1.1"
  2461. "debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.1", "debug@^4.3.2", "debug@^4.3.4", "debug@4":
  2462. "integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
  2463. "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
  2464. "version" "4.3.4"
  2465. dependencies:
  2466. "ms" "2.1.2"
  2467. "debug@2.6.9":
  2468. "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
  2469. "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
  2470. "version" "2.6.9"
  2471. dependencies:
  2472. "ms" "2.0.0"
  2473. "decamelize@^1.2.0":
  2474. "integrity" "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="
  2475. "resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
  2476. "version" "1.2.0"
  2477. "decode-uri-component@^0.2.0":
  2478. "integrity" "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og=="
  2479. "resolved" "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
  2480. "version" "0.2.0"
  2481. "deep-extend@^0.6.0":
  2482. "integrity" "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
  2483. "resolved" "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"
  2484. "version" "0.6.0"
  2485. "deepmerge@^3.2.0":
  2486. "integrity" "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA=="
  2487. "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz"
  2488. "version" "3.3.0"
  2489. "default-gateway@^4.2.0":
  2490. "integrity" "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA=="
  2491. "resolved" "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz"
  2492. "version" "4.2.0"
  2493. dependencies:
  2494. "execa" "^1.0.0"
  2495. "ip-regex" "^2.1.0"
  2496. "defaults@^1.0.3":
  2497. "integrity" "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A=="
  2498. "resolved" "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz"
  2499. "version" "1.0.4"
  2500. dependencies:
  2501. "clone" "^1.0.2"
  2502. "define-lazy-prop@^2.0.0":
  2503. "integrity" "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="
  2504. "resolved" "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"
  2505. "version" "2.0.0"
  2506. "define-property@^0.2.5":
  2507. "integrity" "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA=="
  2508. "resolved" "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"
  2509. "version" "0.2.5"
  2510. dependencies:
  2511. "is-descriptor" "^0.1.0"
  2512. "define-property@^1.0.0":
  2513. "integrity" "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA=="
  2514. "resolved" "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"
  2515. "version" "1.0.0"
  2516. dependencies:
  2517. "is-descriptor" "^1.0.0"
  2518. "define-property@^2.0.2":
  2519. "integrity" "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="
  2520. "resolved" "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"
  2521. "version" "2.0.2"
  2522. dependencies:
  2523. "is-descriptor" "^1.0.2"
  2524. "isobject" "^3.0.1"
  2525. "del@^6.0.0":
  2526. "integrity" "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg=="
  2527. "resolved" "https://registry.npmjs.org/del/-/del-6.1.1.tgz"
  2528. "version" "6.1.1"
  2529. dependencies:
  2530. "globby" "^11.0.1"
  2531. "graceful-fs" "^4.2.4"
  2532. "is-glob" "^4.0.1"
  2533. "is-path-cwd" "^2.2.0"
  2534. "is-path-inside" "^3.0.2"
  2535. "p-map" "^4.0.0"
  2536. "rimraf" "^3.0.2"
  2537. "slash" "^3.0.0"
  2538. "delayed-stream@~1.0.0":
  2539. "integrity" "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
  2540. "resolved" "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
  2541. "version" "1.0.0"
  2542. "denodeify@^1.2.1":
  2543. "integrity" "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg=="
  2544. "resolved" "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz"
  2545. "version" "1.2.1"
  2546. "depd@~1.1.2":
  2547. "integrity" "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="
  2548. "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"
  2549. "version" "1.1.2"
  2550. "depd@2.0.0":
  2551. "integrity" "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
  2552. "resolved" "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"
  2553. "version" "2.0.0"
  2554. "destroy@1.2.0":
  2555. "integrity" "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
  2556. "resolved" "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz"
  2557. "version" "1.2.0"
  2558. "dir-glob@^3.0.1":
  2559. "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="
  2560. "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
  2561. "version" "3.0.1"
  2562. dependencies:
  2563. "path-type" "^4.0.0"
  2564. "ee-first@1.1.1":
  2565. "integrity" "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
  2566. "resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
  2567. "version" "1.1.1"
  2568. "electron-to-chromium@^1.4.251":
  2569. "integrity" "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="
  2570. "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"
  2571. "version" "1.4.284"
  2572. "emoji-regex@^8.0.0":
  2573. "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
  2574. "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
  2575. "version" "8.0.0"
  2576. "encodeurl@~1.0.2":
  2577. "integrity" "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
  2578. "resolved" "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"
  2579. "version" "1.0.2"
  2580. "end-of-stream@^1.1.0":
  2581. "integrity" "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="
  2582. "resolved" "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"
  2583. "version" "1.4.4"
  2584. dependencies:
  2585. "once" "^1.4.0"
  2586. "env-editor@^0.4.1":
  2587. "integrity" "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA=="
  2588. "resolved" "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz"
  2589. "version" "0.4.2"
  2590. "envinfo@^7.7.2":
  2591. "integrity" "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw=="
  2592. "resolved" "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz"
  2593. "version" "7.8.1"
  2594. "eol@^0.9.1":
  2595. "integrity" "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg=="
  2596. "resolved" "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz"
  2597. "version" "0.9.1"
  2598. "error-ex@^1.3.1":
  2599. "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="
  2600. "resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
  2601. "version" "1.3.2"
  2602. dependencies:
  2603. "is-arrayish" "^0.2.1"
  2604. "error-stack-parser@^2.0.6":
  2605. "integrity" "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ=="
  2606. "resolved" "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz"
  2607. "version" "2.1.4"
  2608. dependencies:
  2609. "stackframe" "^1.3.4"
  2610. "errorhandler@^1.5.0":
  2611. "integrity" "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="
  2612. "resolved" "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz"
  2613. "version" "1.5.1"
  2614. dependencies:
  2615. "accepts" "~1.3.7"
  2616. "escape-html" "~1.0.3"
  2617. "escalade@^3.1.1":
  2618. "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
  2619. "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
  2620. "version" "3.1.1"
  2621. "escape-html@~1.0.3":
  2622. "integrity" "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
  2623. "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
  2624. "version" "1.0.3"
  2625. "escape-string-regexp@^1.0.5":
  2626. "integrity" "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
  2627. "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
  2628. "version" "1.0.5"
  2629. "escape-string-regexp@^4.0.0":
  2630. "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
  2631. "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
  2632. "version" "4.0.0"
  2633. "esprima@^4.0.0", "esprima@~4.0.0":
  2634. "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
  2635. "resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
  2636. "version" "4.0.1"
  2637. "estree-walker@^0.6.1":
  2638. "integrity" "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w=="
  2639. "resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz"
  2640. "version" "0.6.1"
  2641. "esutils@^2.0.2":
  2642. "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
  2643. "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
  2644. "version" "2.0.3"
  2645. "etag@~1.8.1":
  2646. "integrity" "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
  2647. "resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"
  2648. "version" "1.8.1"
  2649. "event-target-shim@^5.0.0", "event-target-shim@^5.0.1":
  2650. "integrity" "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
  2651. "resolved" "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz"
  2652. "version" "5.0.1"
  2653. "exec-async@^2.2.0":
  2654. "integrity" "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw=="
  2655. "resolved" "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz"
  2656. "version" "2.2.0"
  2657. "execa@^1.0.0":
  2658. "integrity" "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="
  2659. "resolved" "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz"
  2660. "version" "1.0.0"
  2661. dependencies:
  2662. "cross-spawn" "^6.0.0"
  2663. "get-stream" "^4.0.0"
  2664. "is-stream" "^1.1.0"
  2665. "npm-run-path" "^2.0.0"
  2666. "p-finally" "^1.0.0"
  2667. "signal-exit" "^3.0.0"
  2668. "strip-eof" "^1.0.0"
  2669. "expand-brackets@^2.1.4":
  2670. "integrity" "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA=="
  2671. "resolved" "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"
  2672. "version" "2.1.4"
  2673. dependencies:
  2674. "debug" "^2.3.3"
  2675. "define-property" "^0.2.5"
  2676. "extend-shallow" "^2.0.1"
  2677. "posix-character-classes" "^0.1.0"
  2678. "regex-not" "^1.0.0"
  2679. "snapdragon" "^0.8.1"
  2680. "to-regex" "^3.0.1"
  2681. "expo-application@~5.0.1":
  2682. "integrity" "sha512-bThxK5zH/Lc2tkCvEXGjfM7ayvOVmPWYcWzXsMIU1RtG73TyXo4cq+73FvfDNIWn6gKS0WyMcmoPB3WXEV/jsw=="
  2683. "resolved" "https://registry.npmjs.org/expo-application/-/expo-application-5.0.1.tgz"
  2684. "version" "5.0.1"
  2685. "expo-asset@~8.6.2":
  2686. "integrity" "sha512-XqlXjkuUCEiojbHwbHPjQs1oboRz6w3eV96+9NBD+wb3EUqgAAYY2Do+IWyVCAl8UIFbFi3xzMiqk0Xm9+H8uQ=="
  2687. "resolved" "https://registry.npmjs.org/expo-asset/-/expo-asset-8.6.2.tgz"
  2688. "version" "8.6.2"
  2689. dependencies:
  2690. "blueimp-md5" "^2.10.0"
  2691. "expo-constants" "~14.0.0"
  2692. "expo-file-system" "~15.1.0"
  2693. "invariant" "^2.2.4"
  2694. "md5-file" "^3.2.3"
  2695. "path-browserify" "^1.0.0"
  2696. "url-parse" "^1.5.9"
  2697. "expo-constants@~14.0.0", "expo-constants@~14.0.2":
  2698. "integrity" "sha512-wzV3nrzTXTI8yG0tfas3fnqCfKV6YE+1GphEREyVDAShEB6mBInX1b6HgtpHFy2wOtnml+lPVmTCeGtjjLnZhA=="
  2699. "resolved" "https://registry.npmjs.org/expo-constants/-/expo-constants-14.0.2.tgz"
  2700. "version" "14.0.2"
  2701. dependencies:
  2702. "@expo/config" "~7.0.2"
  2703. "uuid" "^3.3.2"
  2704. "expo-error-recovery@~4.0.1":
  2705. "integrity" "sha512-wceptnRX+N3qCSVTNbIchUFu3GmY30onRH5L66OF8HMLpAIQfrZMLxJfz7SAMJTcr3jxsJ11vSa2l2RaPKgHsQ=="
  2706. "resolved" "https://registry.npmjs.org/expo-error-recovery/-/expo-error-recovery-4.0.1.tgz"
  2707. "version" "4.0.1"
  2708. "expo-file-system@~15.1.0", "expo-file-system@~15.1.1":
  2709. "integrity" "sha512-MYYDKxjLo9VOkvGHqym5EOAUS+ero9O66X5zI+EXJzqNznKvnfScdXeeAaQzShmWtmLkdVDCoYFGOaTvTA1wTQ=="
  2710. "resolved" "https://registry.npmjs.org/expo-file-system/-/expo-file-system-15.1.1.tgz"
  2711. "version" "15.1.1"
  2712. dependencies:
  2713. "uuid" "^3.4.0"
  2714. "expo-font@~11.0.1":
  2715. "integrity" "sha512-LGAIluWZfru0J0n87dzb6pwAB6TVMTEiLcsd/ktozzbn4DlN7SeQy40+ruU6bvAKCOGrnRneYbKSIOGkrd7oNg=="
  2716. "resolved" "https://registry.npmjs.org/expo-font/-/expo-font-11.0.1.tgz"
  2717. "version" "11.0.1"
  2718. dependencies:
  2719. "fontfaceobserver" "^2.1.0"
  2720. "expo-keep-awake@~11.0.1":
  2721. "integrity" "sha512-44ZjgLE4lnce2d40Pv8xsjMVc6R5GvgHOwZfkLYtGmgYG9TYrEJeEj5UfSeweXPL3pBFhXKfFU8xpGYMaHdP0A=="
  2722. "resolved" "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-11.0.1.tgz"
  2723. "version" "11.0.1"
  2724. "expo-modules-autolinking@>=0.8.1", "expo-modules-autolinking@1.0.0":
  2725. "integrity" "sha512-MoRRkOVMoGUH/Lr8XS6UmBIZT/qrwbRt2IzUBALcM6MWZKtDn9Uct9XgMRxue82FJhRCfy9p1xZJVKHBRo4zEA=="
  2726. "resolved" "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.0.0.tgz"
  2727. "version" "1.0.0"
  2728. dependencies:
  2729. "chalk" "^4.1.0"
  2730. "commander" "^7.2.0"
  2731. "fast-glob" "^3.2.5"
  2732. "find-up" "^5.0.0"
  2733. "fs-extra" "^9.1.0"
  2734. "expo-modules-core@1.0.2":
  2735. "integrity" "sha512-xVy/EoAKnqMDgRGaichL3jG0sHh+I0VL3vluPkUJAAiakscMgdXQIknIlFr0IX9ZWRbNP5zk6lTMjZjAZopizw=="
  2736. "resolved" "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.0.2.tgz"
  2737. "version" "1.0.2"
  2738. dependencies:
  2739. "compare-versions" "^3.4.0"
  2740. "invariant" "^2.2.4"
  2741. "expo-status-bar@~1.4.2":
  2742. "integrity" "sha512-ZWjO6D4ARGYfAd3SWDD3STNudHDhyBZDZjhhseqoEmsf7bS9ykny8KKOhlzJW24qIQNPhkgdvHhaw9fQwMJy3Q=="
  2743. "resolved" "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-1.4.2.tgz"
  2744. "version" "1.4.2"
  2745. "expo@*", "expo@~47.0.3":
  2746. "integrity" "sha512-EpWV8ZljTIEQSVPdZxaWoOrJIAPqpBEF+RDyUoDMchXp4TB40CrAKwRuWo7baMsQLfwKgs7izJyaTp+9DsLqGw=="
  2747. "resolved" "https://registry.npmjs.org/expo/-/expo-47.0.3.tgz"
  2748. "version" "47.0.3"
  2749. dependencies:
  2750. "@babel/runtime" "^7.14.0"
  2751. "@expo/cli" "0.4.8"
  2752. "@expo/config" "7.0.3"
  2753. "@expo/config-plugins" "5.0.4"
  2754. "@expo/vector-icons" "^13.0.0"
  2755. "babel-preset-expo" "~9.2.2"
  2756. "cross-spawn" "^6.0.5"
  2757. "expo-application" "~5.0.1"
  2758. "expo-asset" "~8.6.2"
  2759. "expo-constants" "~14.0.2"
  2760. "expo-file-system" "~15.1.1"
  2761. "expo-font" "~11.0.1"
  2762. "expo-keep-awake" "~11.0.1"
  2763. "expo-modules-autolinking" "1.0.0"
  2764. "expo-modules-core" "1.0.2"
  2765. "fbemitter" "^3.0.0"
  2766. "getenv" "^1.0.0"
  2767. "invariant" "^2.2.4"
  2768. "md5-file" "^3.2.3"
  2769. "node-fetch" "^2.6.7"
  2770. "pretty-format" "^26.5.2"
  2771. "uuid" "^3.4.0"
  2772. optionalDependencies:
  2773. "expo-error-recovery" "~4.0.1"
  2774. "extend-shallow@^2.0.1":
  2775. "integrity" "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug=="
  2776. "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
  2777. "version" "2.0.1"
  2778. dependencies:
  2779. "is-extendable" "^0.1.0"
  2780. "extend-shallow@^3.0.0", "extend-shallow@^3.0.2":
  2781. "integrity" "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q=="
  2782. "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"
  2783. "version" "3.0.2"
  2784. dependencies:
  2785. "assign-symbols" "^1.0.0"
  2786. "is-extendable" "^1.0.1"
  2787. "extglob@^2.0.4":
  2788. "integrity" "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="
  2789. "resolved" "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"
  2790. "version" "2.0.4"
  2791. dependencies:
  2792. "array-unique" "^0.3.2"
  2793. "define-property" "^1.0.0"
  2794. "expand-brackets" "^2.1.4"
  2795. "extend-shallow" "^2.0.1"
  2796. "fragment-cache" "^0.2.1"
  2797. "regex-not" "^1.0.0"
  2798. "snapdragon" "^0.8.1"
  2799. "to-regex" "^3.0.1"
  2800. "fast-deep-equal@^3.1.3":
  2801. "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
  2802. "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
  2803. "version" "3.1.3"
  2804. "fast-glob@^3.2.5", "fast-glob@^3.2.9":
  2805. "integrity" "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w=="
  2806. "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"
  2807. "version" "3.2.12"
  2808. dependencies:
  2809. "@nodelib/fs.stat" "^2.0.2"
  2810. "@nodelib/fs.walk" "^1.2.3"
  2811. "glob-parent" "^5.1.2"
  2812. "merge2" "^1.3.0"
  2813. "micromatch" "^4.0.4"
  2814. "fastq@^1.6.0":
  2815. "integrity" "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="
  2816. "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"
  2817. "version" "1.13.0"
  2818. dependencies:
  2819. "reusify" "^1.0.4"
  2820. "fb-watchman@^2.0.0":
  2821. "integrity" "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA=="
  2822. "resolved" "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz"
  2823. "version" "2.0.2"
  2824. dependencies:
  2825. "bser" "2.1.1"
  2826. "fbemitter@^3.0.0":
  2827. "integrity" "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw=="
  2828. "resolved" "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz"
  2829. "version" "3.0.0"
  2830. dependencies:
  2831. "fbjs" "^3.0.0"
  2832. "fbjs-css-vars@^1.0.0":
  2833. "integrity" "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ=="
  2834. "resolved" "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz"
  2835. "version" "1.0.2"
  2836. "fbjs@^3.0.0":
  2837. "integrity" "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ=="
  2838. "resolved" "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz"
  2839. "version" "3.0.4"
  2840. dependencies:
  2841. "cross-fetch" "^3.1.5"
  2842. "fbjs-css-vars" "^1.0.0"
  2843. "loose-envify" "^1.0.0"
  2844. "object-assign" "^4.1.0"
  2845. "promise" "^7.1.1"
  2846. "setimmediate" "^1.0.5"
  2847. "ua-parser-js" "^0.7.30"
  2848. "fetch-retry@^4.1.1":
  2849. "integrity" "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA=="
  2850. "resolved" "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz"
  2851. "version" "4.1.1"
  2852. "fill-range@^4.0.0":
  2853. "integrity" "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ=="
  2854. "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"
  2855. "version" "4.0.0"
  2856. dependencies:
  2857. "extend-shallow" "^2.0.1"
  2858. "is-number" "^3.0.0"
  2859. "repeat-string" "^1.6.1"
  2860. "to-regex-range" "^2.1.0"
  2861. "fill-range@^7.0.1":
  2862. "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="
  2863. "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
  2864. "version" "7.0.1"
  2865. dependencies:
  2866. "to-regex-range" "^5.0.1"
  2867. "filter-obj@^1.1.0":
  2868. "integrity" "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ=="
  2869. "resolved" "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz"
  2870. "version" "1.1.0"
  2871. "finalhandler@1.1.2":
  2872. "integrity" "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="
  2873. "resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"
  2874. "version" "1.1.2"
  2875. dependencies:
  2876. "debug" "2.6.9"
  2877. "encodeurl" "~1.0.2"
  2878. "escape-html" "~1.0.3"
  2879. "on-finished" "~2.3.0"
  2880. "parseurl" "~1.3.3"
  2881. "statuses" "~1.5.0"
  2882. "unpipe" "~1.0.0"
  2883. "find-babel-config@^1.2.0":
  2884. "integrity" "sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA=="
  2885. "resolved" "https://registry.npmjs.org/find-babel-config/-/find-babel-config-1.2.0.tgz"
  2886. "version" "1.2.0"
  2887. dependencies:
  2888. "json5" "^0.5.1"
  2889. "path-exists" "^3.0.0"
  2890. "find-cache-dir@^2.0.0":
  2891. "integrity" "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ=="
  2892. "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz"
  2893. "version" "2.1.0"
  2894. dependencies:
  2895. "commondir" "^1.0.1"
  2896. "make-dir" "^2.0.0"
  2897. "pkg-dir" "^3.0.0"
  2898. "find-cache-dir@^3.0.0":
  2899. "integrity" "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="
  2900. "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"
  2901. "version" "3.3.2"
  2902. dependencies:
  2903. "commondir" "^1.0.1"
  2904. "make-dir" "^3.0.2"
  2905. "pkg-dir" "^4.1.0"
  2906. "find-up@^3.0.0":
  2907. "integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="
  2908. "resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"
  2909. "version" "3.0.0"
  2910. dependencies:
  2911. "locate-path" "^3.0.0"
  2912. "find-up@^4.0.0":
  2913. "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="
  2914. "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
  2915. "version" "4.1.0"
  2916. dependencies:
  2917. "locate-path" "^5.0.0"
  2918. "path-exists" "^4.0.0"
  2919. "find-up@^4.1.0":
  2920. "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="
  2921. "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
  2922. "version" "4.1.0"
  2923. dependencies:
  2924. "locate-path" "^5.0.0"
  2925. "path-exists" "^4.0.0"
  2926. "find-up@^5.0.0", "find-up@~5.0.0":
  2927. "integrity" "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="
  2928. "resolved" "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
  2929. "version" "5.0.0"
  2930. dependencies:
  2931. "locate-path" "^6.0.0"
  2932. "path-exists" "^4.0.0"
  2933. "find-yarn-workspace-root@~2.0.0":
  2934. "integrity" "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ=="
  2935. "resolved" "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz"
  2936. "version" "2.0.0"
  2937. dependencies:
  2938. "micromatch" "^4.0.2"
  2939. "flow-parser@^0.121.0", "flow-parser@0.*":
  2940. "integrity" "sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg=="
  2941. "resolved" "https://registry.npmjs.org/flow-parser/-/flow-parser-0.121.0.tgz"
  2942. "version" "0.121.0"
  2943. "fontfaceobserver@^2.1.0":
  2944. "integrity" "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg=="
  2945. "resolved" "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz"
  2946. "version" "2.3.0"
  2947. "for-in@^1.0.2":
  2948. "integrity" "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ=="
  2949. "resolved" "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
  2950. "version" "1.0.2"
  2951. "form-data@^3.0.1":
  2952. "integrity" "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg=="
  2953. "resolved" "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz"
  2954. "version" "3.0.1"
  2955. dependencies:
  2956. "asynckit" "^0.4.0"
  2957. "combined-stream" "^1.0.8"
  2958. "mime-types" "^2.1.12"
  2959. "fragment-cache@^0.2.1":
  2960. "integrity" "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA=="
  2961. "resolved" "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"
  2962. "version" "0.2.1"
  2963. dependencies:
  2964. "map-cache" "^0.2.2"
  2965. "freeport-async@2.0.0":
  2966. "integrity" "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ=="
  2967. "resolved" "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz"
  2968. "version" "2.0.0"
  2969. "fresh@0.5.2":
  2970. "integrity" "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
  2971. "resolved" "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
  2972. "version" "0.5.2"
  2973. "fs-extra@^1.0.0":
  2974. "integrity" "sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ=="
  2975. "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"
  2976. "version" "1.0.0"
  2977. dependencies:
  2978. "graceful-fs" "^4.1.2"
  2979. "jsonfile" "^2.1.0"
  2980. "klaw" "^1.0.0"
  2981. "fs-extra@^8.1.0", "fs-extra@~8.1.0", "fs-extra@8.1.0":
  2982. "integrity" "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="
  2983. "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"
  2984. "version" "8.1.0"
  2985. dependencies:
  2986. "graceful-fs" "^4.2.0"
  2987. "jsonfile" "^4.0.0"
  2988. "universalify" "^0.1.0"
  2989. "fs-extra@^9.0.0":
  2990. "integrity" "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="
  2991. "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"
  2992. "version" "9.1.0"
  2993. dependencies:
  2994. "at-least-node" "^1.0.0"
  2995. "graceful-fs" "^4.2.0"
  2996. "jsonfile" "^6.0.1"
  2997. "universalify" "^2.0.0"
  2998. "fs-extra@^9.1.0":
  2999. "integrity" "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="
  3000. "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"
  3001. "version" "9.1.0"
  3002. dependencies:
  3003. "at-least-node" "^1.0.0"
  3004. "graceful-fs" "^4.2.0"
  3005. "jsonfile" "^6.0.1"
  3006. "universalify" "^2.0.0"
  3007. "fs-extra@9.0.0":
  3008. "integrity" "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g=="
  3009. "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.0.tgz"
  3010. "version" "9.0.0"
  3011. dependencies:
  3012. "at-least-node" "^1.0.0"
  3013. "graceful-fs" "^4.2.0"
  3014. "jsonfile" "^6.0.1"
  3015. "universalify" "^1.0.0"
  3016. "fs-minipass@^2.0.0":
  3017. "integrity" "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="
  3018. "resolved" "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz"
  3019. "version" "2.1.0"
  3020. dependencies:
  3021. "minipass" "^3.0.0"
  3022. "fs.realpath@^1.0.0":
  3023. "integrity" "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
  3024. "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
  3025. "version" "1.0.0"
  3026. "fsevents@^2.1.2", "fsevents@~2.3.2":
  3027. "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
  3028. "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
  3029. "version" "2.3.2"
  3030. "function-bind@^1.1.1":
  3031. "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
  3032. "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
  3033. "version" "1.1.1"
  3034. "gensync@^1.0.0-beta.2":
  3035. "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="
  3036. "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
  3037. "version" "1.0.0-beta.2"
  3038. "get-caller-file@^2.0.1":
  3039. "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
  3040. "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
  3041. "version" "2.0.5"
  3042. "get-port@^3.2.0":
  3043. "integrity" "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg=="
  3044. "resolved" "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz"
  3045. "version" "3.2.0"
  3046. "get-stream@^4.0.0":
  3047. "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="
  3048. "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"
  3049. "version" "4.1.0"
  3050. dependencies:
  3051. "pump" "^3.0.0"
  3052. "get-value@^2.0.3", "get-value@^2.0.6":
  3053. "integrity" "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA=="
  3054. "resolved" "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"
  3055. "version" "2.0.6"
  3056. "getenv@^1.0.0":
  3057. "integrity" "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg=="
  3058. "resolved" "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz"
  3059. "version" "1.0.0"
  3060. "glob-parent@^5.1.2":
  3061. "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
  3062. "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
  3063. "version" "5.1.2"
  3064. dependencies:
  3065. "is-glob" "^4.0.1"
  3066. "glob@^6.0.1":
  3067. "integrity" "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A=="
  3068. "resolved" "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"
  3069. "version" "6.0.4"
  3070. dependencies:
  3071. "inflight" "^1.0.4"
  3072. "inherits" "2"
  3073. "minimatch" "2 || 3"
  3074. "once" "^1.3.0"
  3075. "path-is-absolute" "^1.0.0"
  3076. "glob@^7.1.2", "glob@^7.1.3", "glob@^7.1.4", "glob@^7.1.6", "glob@7.1.6":
  3077. "integrity" "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="
  3078. "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"
  3079. "version" "7.1.6"
  3080. dependencies:
  3081. "fs.realpath" "^1.0.0"
  3082. "inflight" "^1.0.4"
  3083. "inherits" "2"
  3084. "minimatch" "^3.0.4"
  3085. "once" "^1.3.0"
  3086. "path-is-absolute" "^1.0.0"
  3087. "globals@^11.1.0":
  3088. "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
  3089. "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
  3090. "version" "11.12.0"
  3091. "globby@^11.0.1":
  3092. "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="
  3093. "resolved" "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
  3094. "version" "11.1.0"
  3095. dependencies:
  3096. "array-union" "^2.1.0"
  3097. "dir-glob" "^3.0.1"
  3098. "fast-glob" "^3.2.9"
  3099. "ignore" "^5.2.0"
  3100. "merge2" "^1.4.1"
  3101. "slash" "^3.0.0"
  3102. "graceful-fs@^4.1.11", "graceful-fs@^4.1.2", "graceful-fs@^4.1.3", "graceful-fs@^4.1.6", "graceful-fs@^4.1.9", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4", "graceful-fs@^4.2.9":
  3103. "integrity" "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
  3104. "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"
  3105. "version" "4.2.10"
  3106. "graphql-tag@^2.10.1":
  3107. "integrity" "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg=="
  3108. "resolved" "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz"
  3109. "version" "2.12.6"
  3110. dependencies:
  3111. "tslib" "^2.1.0"
  3112. "graphql@^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0", "graphql@^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", "graphql@15.8.0":
  3113. "integrity" "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw=="
  3114. "resolved" "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz"
  3115. "version" "15.8.0"
  3116. "has-flag@^3.0.0":
  3117. "integrity" "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
  3118. "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
  3119. "version" "3.0.0"
  3120. "has-flag@^4.0.0":
  3121. "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
  3122. "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
  3123. "version" "4.0.0"
  3124. "has-value@^0.3.1":
  3125. "integrity" "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q=="
  3126. "resolved" "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"
  3127. "version" "0.3.1"
  3128. dependencies:
  3129. "get-value" "^2.0.3"
  3130. "has-values" "^0.1.4"
  3131. "isobject" "^2.0.0"
  3132. "has-value@^1.0.0":
  3133. "integrity" "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw=="
  3134. "resolved" "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"
  3135. "version" "1.0.0"
  3136. dependencies:
  3137. "get-value" "^2.0.6"
  3138. "has-values" "^1.0.0"
  3139. "isobject" "^3.0.0"
  3140. "has-values@^0.1.4":
  3141. "integrity" "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ=="
  3142. "resolved" "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"
  3143. "version" "0.1.4"
  3144. "has-values@^1.0.0":
  3145. "integrity" "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ=="
  3146. "resolved" "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"
  3147. "version" "1.0.0"
  3148. dependencies:
  3149. "is-number" "^3.0.0"
  3150. "kind-of" "^4.0.0"
  3151. "has@^1.0.3":
  3152. "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="
  3153. "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
  3154. "version" "1.0.3"
  3155. dependencies:
  3156. "function-bind" "^1.1.1"
  3157. "hermes-estree@0.8.0":
  3158. "integrity" "sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q=="
  3159. "resolved" "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.8.0.tgz"
  3160. "version" "0.8.0"
  3161. "hermes-parser@0.8.0":
  3162. "integrity" "sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA=="
  3163. "resolved" "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.8.0.tgz"
  3164. "version" "0.8.0"
  3165. dependencies:
  3166. "hermes-estree" "0.8.0"
  3167. "hermes-profile-transformer@^0.0.6":
  3168. "integrity" "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ=="
  3169. "resolved" "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz"
  3170. "version" "0.0.6"
  3171. dependencies:
  3172. "source-map" "^0.7.3"
  3173. "hey-listen@^1.0.5":
  3174. "integrity" "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q=="
  3175. "resolved" "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz"
  3176. "version" "1.0.8"
  3177. "hoist-non-react-statics@^3.3.0":
  3178. "integrity" "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="
  3179. "resolved" "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz"
  3180. "version" "3.3.2"
  3181. dependencies:
  3182. "react-is" "^16.7.0"
  3183. "hosted-git-info@^3.0.2":
  3184. "integrity" "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw=="
  3185. "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz"
  3186. "version" "3.0.8"
  3187. dependencies:
  3188. "lru-cache" "^6.0.0"
  3189. "http-errors@1.7.2":
  3190. "integrity" "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="
  3191. "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz"
  3192. "version" "1.7.2"
  3193. dependencies:
  3194. "depd" "~1.1.2"
  3195. "inherits" "2.0.3"
  3196. "setprototypeof" "1.1.1"
  3197. "statuses" ">= 1.5.0 < 2"
  3198. "toidentifier" "1.0.0"
  3199. "http-errors@2.0.0":
  3200. "integrity" "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="
  3201. "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz"
  3202. "version" "2.0.0"
  3203. dependencies:
  3204. "depd" "2.0.0"
  3205. "inherits" "2.0.4"
  3206. "setprototypeof" "1.2.0"
  3207. "statuses" "2.0.1"
  3208. "toidentifier" "1.0.1"
  3209. "https-proxy-agent@^5.0.1":
  3210. "integrity" "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="
  3211. "resolved" "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz"
  3212. "version" "5.0.1"
  3213. dependencies:
  3214. "agent-base" "6"
  3215. "debug" "4"
  3216. "iconv-lite@0.4.24":
  3217. "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="
  3218. "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
  3219. "version" "0.4.24"
  3220. dependencies:
  3221. "safer-buffer" ">= 2.1.2 < 3"
  3222. "ieee754@^1.1.13":
  3223. "integrity" "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
  3224. "resolved" "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
  3225. "version" "1.2.1"
  3226. "ignore@^5.2.0":
  3227. "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="
  3228. "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"
  3229. "version" "5.2.0"
  3230. "image-size@^0.6.0":
  3231. "integrity" "sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA=="
  3232. "resolved" "https://registry.npmjs.org/image-size/-/image-size-0.6.3.tgz"
  3233. "version" "0.6.3"
  3234. "import-fresh@^2.0.0":
  3235. "integrity" "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg=="
  3236. "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz"
  3237. "version" "2.0.0"
  3238. dependencies:
  3239. "caller-path" "^2.0.0"
  3240. "resolve-from" "^3.0.0"
  3241. "imurmurhash@^0.1.4":
  3242. "integrity" "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="
  3243. "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
  3244. "version" "0.1.4"
  3245. "indent-string@^4.0.0":
  3246. "integrity" "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="
  3247. "resolved" "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"
  3248. "version" "4.0.0"
  3249. "infer-owner@^1.0.4":
  3250. "integrity" "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A=="
  3251. "resolved" "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz"
  3252. "version" "1.0.4"
  3253. "inflight@^1.0.4":
  3254. "integrity" "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="
  3255. "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
  3256. "version" "1.0.6"
  3257. dependencies:
  3258. "once" "^1.3.0"
  3259. "wrappy" "1"
  3260. "inherits@^2.0.3", "inherits@^2.0.4", "inherits@~2.0.3", "inherits@2", "inherits@2.0.4":
  3261. "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
  3262. "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
  3263. "version" "2.0.4"
  3264. "inherits@2.0.3":
  3265. "integrity" "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
  3266. "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
  3267. "version" "2.0.3"
  3268. "ini@~1.3.0":
  3269. "integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
  3270. "resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
  3271. "version" "1.3.8"
  3272. "internal-ip@4.3.0":
  3273. "integrity" "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg=="
  3274. "resolved" "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz"
  3275. "version" "4.3.0"
  3276. dependencies:
  3277. "default-gateway" "^4.2.0"
  3278. "ipaddr.js" "^1.9.0"
  3279. "invariant@^2.2.4":
  3280. "integrity" "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="
  3281. "resolved" "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"
  3282. "version" "2.2.4"
  3283. dependencies:
  3284. "loose-envify" "^1.0.0"
  3285. "ip-regex@^2.1.0":
  3286. "integrity" "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw=="
  3287. "resolved" "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz"
  3288. "version" "2.1.0"
  3289. "ip@^1.1.5":
  3290. "integrity" "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="
  3291. "resolved" "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz"
  3292. "version" "1.1.8"
  3293. "ipaddr.js@^1.9.0":
  3294. "integrity" "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
  3295. "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"
  3296. "version" "1.9.1"
  3297. "is-accessor-descriptor@^0.1.6":
  3298. "integrity" "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A=="
  3299. "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"
  3300. "version" "0.1.6"
  3301. dependencies:
  3302. "kind-of" "^3.0.2"
  3303. "is-accessor-descriptor@^1.0.0":
  3304. "integrity" "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="
  3305. "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"
  3306. "version" "1.0.0"
  3307. dependencies:
  3308. "kind-of" "^6.0.0"
  3309. "is-arrayish@^0.2.1":
  3310. "integrity" "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
  3311. "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
  3312. "version" "0.2.1"
  3313. "is-arrayish@^0.3.1":
  3314. "integrity" "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
  3315. "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz"
  3316. "version" "0.3.2"
  3317. "is-buffer@^1.1.5", "is-buffer@~1.1.1", "is-buffer@~1.1.6":
  3318. "integrity" "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
  3319. "resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
  3320. "version" "1.1.6"
  3321. "is-core-module@^2.9.0":
  3322. "integrity" "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="
  3323. "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"
  3324. "version" "2.11.0"
  3325. dependencies:
  3326. "has" "^1.0.3"
  3327. "is-data-descriptor@^0.1.4":
  3328. "integrity" "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg=="
  3329. "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"
  3330. "version" "0.1.4"
  3331. dependencies:
  3332. "kind-of" "^3.0.2"
  3333. "is-data-descriptor@^1.0.0":
  3334. "integrity" "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="
  3335. "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"
  3336. "version" "1.0.0"
  3337. dependencies:
  3338. "kind-of" "^6.0.0"
  3339. "is-descriptor@^0.1.0":
  3340. "integrity" "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="
  3341. "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"
  3342. "version" "0.1.6"
  3343. dependencies:
  3344. "is-accessor-descriptor" "^0.1.6"
  3345. "is-data-descriptor" "^0.1.4"
  3346. "kind-of" "^5.0.0"
  3347. "is-descriptor@^1.0.0", "is-descriptor@^1.0.2":
  3348. "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="
  3349. "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"
  3350. "version" "1.0.2"
  3351. dependencies:
  3352. "is-accessor-descriptor" "^1.0.0"
  3353. "is-data-descriptor" "^1.0.0"
  3354. "kind-of" "^6.0.2"
  3355. "is-directory@^0.3.1":
  3356. "integrity" "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw=="
  3357. "resolved" "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz"
  3358. "version" "0.3.1"
  3359. "is-docker@^2.0.0", "is-docker@^2.1.1":
  3360. "integrity" "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="
  3361. "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz"
  3362. "version" "2.2.1"
  3363. "is-extendable@^0.1.0", "is-extendable@^0.1.1":
  3364. "integrity" "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw=="
  3365. "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
  3366. "version" "0.1.1"
  3367. "is-extendable@^0.1.1":
  3368. "integrity" "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw=="
  3369. "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
  3370. "version" "0.1.1"
  3371. "is-extendable@^1.0.1":
  3372. "integrity" "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="
  3373. "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"
  3374. "version" "1.0.1"
  3375. dependencies:
  3376. "is-plain-object" "^2.0.4"
  3377. "is-extglob@^1.0.0":
  3378. "integrity" "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww=="
  3379. "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"
  3380. "version" "1.0.0"
  3381. "is-extglob@^2.1.1":
  3382. "integrity" "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
  3383. "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
  3384. "version" "2.1.1"
  3385. "is-fullwidth-code-point@^2.0.0":
  3386. "integrity" "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
  3387. "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
  3388. "version" "2.0.0"
  3389. "is-fullwidth-code-point@^3.0.0":
  3390. "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
  3391. "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
  3392. "version" "3.0.0"
  3393. "is-glob@^2.0.0":
  3394. "integrity" "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg=="
  3395. "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz"
  3396. "version" "2.0.1"
  3397. dependencies:
  3398. "is-extglob" "^1.0.0"
  3399. "is-glob@^4.0.1":
  3400. "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="
  3401. "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
  3402. "version" "4.0.3"
  3403. dependencies:
  3404. "is-extglob" "^2.1.1"
  3405. "is-interactive@^1.0.0":
  3406. "integrity" "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="
  3407. "resolved" "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz"
  3408. "version" "1.0.0"
  3409. "is-invalid-path@^0.1.0":
  3410. "integrity" "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ=="
  3411. "resolved" "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz"
  3412. "version" "0.1.0"
  3413. dependencies:
  3414. "is-glob" "^2.0.0"
  3415. "is-number@^3.0.0":
  3416. "integrity" "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg=="
  3417. "resolved" "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"
  3418. "version" "3.0.0"
  3419. dependencies:
  3420. "kind-of" "^3.0.2"
  3421. "is-number@^7.0.0":
  3422. "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
  3423. "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
  3424. "version" "7.0.0"
  3425. "is-path-cwd@^2.2.0":
  3426. "integrity" "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ=="
  3427. "resolved" "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz"
  3428. "version" "2.2.0"
  3429. "is-path-inside@^3.0.2":
  3430. "integrity" "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="
  3431. "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"
  3432. "version" "3.0.3"
  3433. "is-plain-object@^2.0.3", "is-plain-object@^2.0.4":
  3434. "integrity" "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="
  3435. "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
  3436. "version" "2.0.4"
  3437. dependencies:
  3438. "isobject" "^3.0.1"
  3439. "is-root@^2.1.0":
  3440. "integrity" "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg=="
  3441. "resolved" "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz"
  3442. "version" "2.1.0"
  3443. "is-stream@^1.1.0":
  3444. "integrity" "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ=="
  3445. "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
  3446. "version" "1.1.0"
  3447. "is-stream@^2.0.0":
  3448. "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="
  3449. "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
  3450. "version" "2.0.1"
  3451. "is-unicode-supported@^0.1.0":
  3452. "integrity" "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="
  3453. "resolved" "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"
  3454. "version" "0.1.0"
  3455. "is-valid-path@^0.1.1":
  3456. "integrity" "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A=="
  3457. "resolved" "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz"
  3458. "version" "0.1.1"
  3459. dependencies:
  3460. "is-invalid-path" "^0.1.0"
  3461. "is-windows@^1.0.2":
  3462. "integrity" "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
  3463. "resolved" "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
  3464. "version" "1.0.2"
  3465. "is-wsl@^1.1.0":
  3466. "integrity" "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw=="
  3467. "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz"
  3468. "version" "1.1.0"
  3469. "is-wsl@^2.1.1", "is-wsl@^2.2.0":
  3470. "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="
  3471. "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"
  3472. "version" "2.2.0"
  3473. dependencies:
  3474. "is-docker" "^2.0.0"
  3475. "isarray@~1.0.0", "isarray@1.0.0":
  3476. "integrity" "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
  3477. "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
  3478. "version" "1.0.0"
  3479. "isexe@^2.0.0":
  3480. "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
  3481. "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
  3482. "version" "2.0.0"
  3483. "isobject@^2.0.0":
  3484. "integrity" "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA=="
  3485. "resolved" "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"
  3486. "version" "2.1.0"
  3487. dependencies:
  3488. "isarray" "1.0.0"
  3489. "isobject@^3.0.0", "isobject@^3.0.1":
  3490. "integrity" "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg=="
  3491. "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
  3492. "version" "3.0.1"
  3493. "jest-get-type@^26.3.0":
  3494. "integrity" "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig=="
  3495. "resolved" "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz"
  3496. "version" "26.3.0"
  3497. "jest-regex-util@^27.0.6":
  3498. "integrity" "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg=="
  3499. "resolved" "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz"
  3500. "version" "27.5.1"
  3501. "jest-serializer@^27.0.6":
  3502. "integrity" "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w=="
  3503. "resolved" "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz"
  3504. "version" "27.5.1"
  3505. dependencies:
  3506. "@types/node" "*"
  3507. "graceful-fs" "^4.2.9"
  3508. "jest-util@^27.2.0":
  3509. "integrity" "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw=="
  3510. "resolved" "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz"
  3511. "version" "27.5.1"
  3512. dependencies:
  3513. "@jest/types" "^27.5.1"
  3514. "@types/node" "*"
  3515. "chalk" "^4.0.0"
  3516. "ci-info" "^3.2.0"
  3517. "graceful-fs" "^4.2.9"
  3518. "picomatch" "^2.2.3"
  3519. "jest-validate@^26.5.2":
  3520. "integrity" "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ=="
  3521. "resolved" "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz"
  3522. "version" "26.6.2"
  3523. dependencies:
  3524. "@jest/types" "^26.6.2"
  3525. "camelcase" "^6.0.0"
  3526. "chalk" "^4.0.0"
  3527. "jest-get-type" "^26.3.0"
  3528. "leven" "^3.1.0"
  3529. "pretty-format" "^26.6.2"
  3530. "jest-worker@^27.2.0":
  3531. "integrity" "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg=="
  3532. "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz"
  3533. "version" "27.5.1"
  3534. dependencies:
  3535. "@types/node" "*"
  3536. "merge-stream" "^2.0.0"
  3537. "supports-color" "^8.0.0"
  3538. "jimp-compact@0.16.1":
  3539. "integrity" "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww=="
  3540. "resolved" "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz"
  3541. "version" "0.16.1"
  3542. "joi@^17.2.1":
  3543. "integrity" "sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg=="
  3544. "resolved" "https://registry.npmjs.org/joi/-/joi-17.7.0.tgz"
  3545. "version" "17.7.0"
  3546. dependencies:
  3547. "@hapi/hoek" "^9.0.0"
  3548. "@hapi/topo" "^5.0.0"
  3549. "@sideway/address" "^4.1.3"
  3550. "@sideway/formula" "^3.0.0"
  3551. "@sideway/pinpoint" "^2.0.0"
  3552. "join-component@^1.1.0":
  3553. "integrity" "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ=="
  3554. "resolved" "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz"
  3555. "version" "1.1.0"
  3556. "js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0":
  3557. "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
  3558. "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
  3559. "version" "4.0.0"
  3560. "js-yaml@^3.13.1":
  3561. "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="
  3562. "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"
  3563. "version" "3.14.1"
  3564. dependencies:
  3565. "argparse" "^1.0.7"
  3566. "esprima" "^4.0.0"
  3567. "js-yaml@^4.1.0":
  3568. "integrity" "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="
  3569. "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"
  3570. "version" "4.1.0"
  3571. dependencies:
  3572. "argparse" "^2.0.1"
  3573. "jsc-android@^250230.2.1":
  3574. "integrity" "sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q=="
  3575. "resolved" "https://registry.npmjs.org/jsc-android/-/jsc-android-250230.2.1.tgz"
  3576. "version" "250230.2.1"
  3577. "jscodeshift@^0.13.1":
  3578. "integrity" "sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ=="
  3579. "resolved" "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.13.1.tgz"
  3580. "version" "0.13.1"
  3581. dependencies:
  3582. "@babel/core" "^7.13.16"
  3583. "@babel/parser" "^7.13.16"
  3584. "@babel/plugin-proposal-class-properties" "^7.13.0"
  3585. "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8"
  3586. "@babel/plugin-proposal-optional-chaining" "^7.13.12"
  3587. "@babel/plugin-transform-modules-commonjs" "^7.13.8"
  3588. "@babel/preset-flow" "^7.13.13"
  3589. "@babel/preset-typescript" "^7.13.0"
  3590. "@babel/register" "^7.13.16"
  3591. "babel-core" "^7.0.0-bridge.0"
  3592. "chalk" "^4.1.2"
  3593. "flow-parser" "0.*"
  3594. "graceful-fs" "^4.2.4"
  3595. "micromatch" "^3.1.10"
  3596. "neo-async" "^2.5.0"
  3597. "node-dir" "^0.1.17"
  3598. "recast" "^0.20.4"
  3599. "temp" "^0.8.4"
  3600. "write-file-atomic" "^2.3.0"
  3601. "jsesc@^2.5.1":
  3602. "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
  3603. "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
  3604. "version" "2.5.2"
  3605. "jsesc@~0.5.0":
  3606. "integrity" "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA=="
  3607. "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"
  3608. "version" "0.5.0"
  3609. "json-parse-better-errors@^1.0.1":
  3610. "integrity" "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="
  3611. "resolved" "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
  3612. "version" "1.0.2"
  3613. "json-schema-deref-sync@^0.13.0":
  3614. "integrity" "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg=="
  3615. "resolved" "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz"
  3616. "version" "0.13.0"
  3617. dependencies:
  3618. "clone" "^2.1.2"
  3619. "dag-map" "~1.0.0"
  3620. "is-valid-path" "^0.1.1"
  3621. "lodash" "^4.17.13"
  3622. "md5" "~2.2.0"
  3623. "memory-cache" "~0.2.0"
  3624. "traverse" "~0.6.6"
  3625. "valid-url" "~1.0.9"
  3626. "json5@^0.5.1":
  3627. "integrity" "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw=="
  3628. "resolved" "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"
  3629. "version" "0.5.1"
  3630. "json5@^1.0.1":
  3631. "integrity" "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="
  3632. "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"
  3633. "version" "1.0.1"
  3634. dependencies:
  3635. "minimist" "^1.2.0"
  3636. "json5@^2.2.1":
  3637. "integrity" "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="
  3638. "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz"
  3639. "version" "2.2.1"
  3640. "jsonfile@^2.1.0":
  3641. "integrity" "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw=="
  3642. "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz"
  3643. "version" "2.4.0"
  3644. optionalDependencies:
  3645. "graceful-fs" "^4.1.6"
  3646. "jsonfile@^4.0.0":
  3647. "integrity" "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg=="
  3648. "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
  3649. "version" "4.0.0"
  3650. optionalDependencies:
  3651. "graceful-fs" "^4.1.6"
  3652. "jsonfile@^6.0.1":
  3653. "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="
  3654. "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"
  3655. "version" "6.1.0"
  3656. dependencies:
  3657. "universalify" "^2.0.0"
  3658. optionalDependencies:
  3659. "graceful-fs" "^4.1.6"
  3660. "kind-of@^3.0.2", "kind-of@^3.0.3":
  3661. "integrity" "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ=="
  3662. "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
  3663. "version" "3.2.2"
  3664. dependencies:
  3665. "is-buffer" "^1.1.5"
  3666. "kind-of@^3.2.0":
  3667. "integrity" "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ=="
  3668. "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
  3669. "version" "3.2.2"
  3670. dependencies:
  3671. "is-buffer" "^1.1.5"
  3672. "kind-of@^4.0.0":
  3673. "integrity" "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw=="
  3674. "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"
  3675. "version" "4.0.0"
  3676. dependencies:
  3677. "is-buffer" "^1.1.5"
  3678. "kind-of@^5.0.0":
  3679. "integrity" "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
  3680. "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"
  3681. "version" "5.1.0"
  3682. "kind-of@^6.0.0", "kind-of@^6.0.2":
  3683. "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
  3684. "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
  3685. "version" "6.0.3"
  3686. "klaw@^1.0.0":
  3687. "integrity" "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw=="
  3688. "resolved" "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz"
  3689. "version" "1.3.1"
  3690. optionalDependencies:
  3691. "graceful-fs" "^4.1.9"
  3692. "kleur@^3.0.3":
  3693. "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
  3694. "resolved" "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"
  3695. "version" "3.0.3"
  3696. "leven@^3.1.0":
  3697. "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="
  3698. "resolved" "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"
  3699. "version" "3.1.0"
  3700. "lines-and-columns@^1.1.6":
  3701. "integrity" "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
  3702. "resolved" "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"
  3703. "version" "1.2.4"
  3704. "locate-path@^3.0.0":
  3705. "integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="
  3706. "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"
  3707. "version" "3.0.0"
  3708. dependencies:
  3709. "p-locate" "^3.0.0"
  3710. "path-exists" "^3.0.0"
  3711. "locate-path@^5.0.0":
  3712. "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="
  3713. "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
  3714. "version" "5.0.0"
  3715. dependencies:
  3716. "p-locate" "^4.1.0"
  3717. "locate-path@^6.0.0":
  3718. "integrity" "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="
  3719. "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
  3720. "version" "6.0.0"
  3721. dependencies:
  3722. "p-locate" "^5.0.0"
  3723. "lodash.debounce@^4.0.8":
  3724. "integrity" "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
  3725. "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"
  3726. "version" "4.0.8"
  3727. "lodash.throttle@^4.1.1":
  3728. "integrity" "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ=="
  3729. "resolved" "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz"
  3730. "version" "4.1.1"
  3731. "lodash@^4.17.13", "lodash@^4.17.21", "lodash@^4.17.4":
  3732. "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
  3733. "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
  3734. "version" "4.17.21"
  3735. "log-symbols@^2.2.0":
  3736. "integrity" "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg=="
  3737. "resolved" "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz"
  3738. "version" "2.2.0"
  3739. dependencies:
  3740. "chalk" "^2.0.1"
  3741. "log-symbols@^4.1.0":
  3742. "integrity" "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="
  3743. "resolved" "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz"
  3744. "version" "4.1.0"
  3745. dependencies:
  3746. "chalk" "^4.1.0"
  3747. "is-unicode-supported" "^0.1.0"
  3748. "logkitty@^0.7.1":
  3749. "integrity" "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ=="
  3750. "resolved" "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz"
  3751. "version" "0.7.1"
  3752. dependencies:
  3753. "ansi-fragments" "^0.2.1"
  3754. "dayjs" "^1.8.15"
  3755. "yargs" "^15.1.0"
  3756. "loose-envify@^1.0.0", "loose-envify@^1.1.0", "loose-envify@^1.4.0":
  3757. "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="
  3758. "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"
  3759. "version" "1.4.0"
  3760. dependencies:
  3761. "js-tokens" "^3.0.0 || ^4.0.0"
  3762. "lru-cache@^6.0.0":
  3763. "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="
  3764. "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
  3765. "version" "6.0.0"
  3766. dependencies:
  3767. "yallist" "^4.0.0"
  3768. "make-dir@^2.0.0", "make-dir@^2.1.0":
  3769. "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA=="
  3770. "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
  3771. "version" "2.1.0"
  3772. dependencies:
  3773. "pify" "^4.0.1"
  3774. "semver" "^5.6.0"
  3775. "make-dir@^3.0.2":
  3776. "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="
  3777. "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
  3778. "version" "3.1.0"
  3779. dependencies:
  3780. "semver" "^6.0.0"
  3781. "makeerror@1.0.12":
  3782. "integrity" "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="
  3783. "resolved" "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz"
  3784. "version" "1.0.12"
  3785. dependencies:
  3786. "tmpl" "1.0.5"
  3787. "map-cache@^0.2.2":
  3788. "integrity" "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg=="
  3789. "resolved" "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"
  3790. "version" "0.2.2"
  3791. "map-visit@^1.0.0":
  3792. "integrity" "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w=="
  3793. "resolved" "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"
  3794. "version" "1.0.0"
  3795. dependencies:
  3796. "object-visit" "^1.0.0"
  3797. "md5-file@^3.2.3":
  3798. "integrity" "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw=="
  3799. "resolved" "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz"
  3800. "version" "3.2.3"
  3801. dependencies:
  3802. "buffer-alloc" "^1.1.0"
  3803. "md5@^2.2.1":
  3804. "integrity" "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g=="
  3805. "resolved" "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz"
  3806. "version" "2.3.0"
  3807. dependencies:
  3808. "charenc" "0.0.2"
  3809. "crypt" "0.0.2"
  3810. "is-buffer" "~1.1.6"
  3811. "md5@~2.2.0":
  3812. "integrity" "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ=="
  3813. "resolved" "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz"
  3814. "version" "2.2.1"
  3815. dependencies:
  3816. "charenc" "~0.0.1"
  3817. "crypt" "~0.0.1"
  3818. "is-buffer" "~1.1.1"
  3819. "md5hex@^1.0.0":
  3820. "integrity" "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ=="
  3821. "resolved" "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz"
  3822. "version" "1.0.0"
  3823. "media-typer@0.3.0":
  3824. "integrity" "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
  3825. "resolved" "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"
  3826. "version" "0.3.0"
  3827. "memoize-one@^5.0.0":
  3828. "integrity" "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q=="
  3829. "resolved" "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz"
  3830. "version" "5.2.1"
  3831. "memory-cache@~0.2.0":
  3832. "integrity" "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA=="
  3833. "resolved" "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz"
  3834. "version" "0.2.0"
  3835. "merge-stream@^2.0.0":
  3836. "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
  3837. "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
  3838. "version" "2.0.0"
  3839. "merge2@^1.3.0", "merge2@^1.4.1":
  3840. "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
  3841. "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
  3842. "version" "1.4.1"
  3843. "metro-babel-transformer@0.72.3":
  3844. "integrity" "sha512-PTOR2zww0vJbWeeM3qN90WKENxCLzv9xrwWaNtwVlhcV8/diNdNe82sE1xIxLFI6OQuAVwNMv1Y7VsO2I7Ejrw=="
  3845. "resolved" "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.72.3.tgz"
  3846. "version" "0.72.3"
  3847. dependencies:
  3848. "@babel/core" "^7.14.0"
  3849. "hermes-parser" "0.8.0"
  3850. "metro-source-map" "0.72.3"
  3851. "nullthrows" "^1.1.1"
  3852. "metro-cache-key@0.72.3":
  3853. "integrity" "sha512-kQzmF5s3qMlzqkQcDwDxrOaVxJ2Bh6WRXWdzPnnhsq9LcD3B3cYqQbRBS+3tSuXmathb4gsOdhWslOuIsYS8Rg=="
  3854. "resolved" "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.72.3.tgz"
  3855. "version" "0.72.3"
  3856. "metro-cache@0.72.3":
  3857. "integrity" "sha512-++eyZzwkXvijWRV3CkDbueaXXGlVzH9GA52QWqTgAOgSHYp5jWaDwLQ8qpsMkQzpwSyIF4LLK9aI3eA7Xa132A=="
  3858. "resolved" "https://registry.npmjs.org/metro-cache/-/metro-cache-0.72.3.tgz"
  3859. "version" "0.72.3"
  3860. dependencies:
  3861. "metro-core" "0.72.3"
  3862. "rimraf" "^2.5.4"
  3863. "metro-config@0.72.3":
  3864. "integrity" "sha512-VEsAIVDkrIhgCByq8HKTWMBjJG6RlYwWSu1Gnv3PpHa0IyTjKJtB7wC02rbTjSaemcr82scldf2R+h6ygMEvsw=="
  3865. "resolved" "https://registry.npmjs.org/metro-config/-/metro-config-0.72.3.tgz"
  3866. "version" "0.72.3"
  3867. dependencies:
  3868. "cosmiconfig" "^5.0.5"
  3869. "jest-validate" "^26.5.2"
  3870. "metro" "0.72.3"
  3871. "metro-cache" "0.72.3"
  3872. "metro-core" "0.72.3"
  3873. "metro-runtime" "0.72.3"
  3874. "metro-core@0.72.3":
  3875. "integrity" "sha512-KuYWBMmLB4+LxSMcZ1dmWabVExNCjZe3KysgoECAIV+wyIc2r4xANq15GhS94xYvX1+RqZrxU1pa0jQ5OK+/6A=="
  3876. "resolved" "https://registry.npmjs.org/metro-core/-/metro-core-0.72.3.tgz"
  3877. "version" "0.72.3"
  3878. dependencies:
  3879. "lodash.throttle" "^4.1.1"
  3880. "metro-resolver" "0.72.3"
  3881. "metro-file-map@0.72.3":
  3882. "integrity" "sha512-LhuRnuZ2i2uxkpFsz1XCDIQSixxBkBG7oICAFyLyEMDGbcfeY6/NexphfLdJLTghkaoJR5ARFMiIxUg9fIY/pA=="
  3883. "resolved" "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.72.3.tgz"
  3884. "version" "0.72.3"
  3885. dependencies:
  3886. "abort-controller" "^3.0.0"
  3887. "anymatch" "^3.0.3"
  3888. "debug" "^2.2.0"
  3889. "fb-watchman" "^2.0.0"
  3890. "graceful-fs" "^4.2.4"
  3891. "invariant" "^2.2.4"
  3892. "jest-regex-util" "^27.0.6"
  3893. "jest-serializer" "^27.0.6"
  3894. "jest-util" "^27.2.0"
  3895. "jest-worker" "^27.2.0"
  3896. "micromatch" "^4.0.4"
  3897. "walker" "^1.0.7"
  3898. optionalDependencies:
  3899. "fsevents" "^2.1.2"
  3900. "metro-hermes-compiler@0.72.3":
  3901. "integrity" "sha512-QWDQASMiXNW3j8uIQbzIzCdGYv5PpAX/ZiF4/lTWqKRWuhlkP4auhVY4eqdAKj5syPx45ggpjkVE0p8hAPDZYg=="
  3902. "resolved" "https://registry.npmjs.org/metro-hermes-compiler/-/metro-hermes-compiler-0.72.3.tgz"
  3903. "version" "0.72.3"
  3904. "metro-inspector-proxy@0.72.3":
  3905. "integrity" "sha512-UPFkaq2k93RaOi+eqqt7UUmqy2ywCkuxJLasQ55+xavTUS+TQSyeTnTczaYn+YKw+izLTLllGcvqnQcZiWYhGw=="
  3906. "resolved" "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.72.3.tgz"
  3907. "version" "0.72.3"
  3908. dependencies:
  3909. "connect" "^3.6.5"
  3910. "debug" "^2.2.0"
  3911. "ws" "^7.5.1"
  3912. "yargs" "^15.3.1"
  3913. "metro-minify-uglify@0.72.3":
  3914. "integrity" "sha512-dPXqtMI8TQcj0g7ZrdhC8X3mx3m3rtjtMuHKGIiEXH9CMBvrET8IwrgujQw2rkPcXiSiX8vFDbGMIlfxefDsKA=="
  3915. "resolved" "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.72.3.tgz"
  3916. "version" "0.72.3"
  3917. dependencies:
  3918. "uglify-es" "^3.1.9"
  3919. "metro-react-native-babel-preset@0.72.3":
  3920. "integrity" "sha512-uJx9y/1NIqoYTp6ZW1osJ7U5ZrXGAJbOQ/Qzl05BdGYvN1S7Qmbzid6xOirgK0EIT0pJKEEh1s8qbassYZe4cw=="
  3921. "resolved" "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.72.3.tgz"
  3922. "version" "0.72.3"
  3923. dependencies:
  3924. "@babel/core" "^7.14.0"
  3925. "@babel/plugin-proposal-async-generator-functions" "^7.0.0"
  3926. "@babel/plugin-proposal-class-properties" "^7.0.0"
  3927. "@babel/plugin-proposal-export-default-from" "^7.0.0"
  3928. "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
  3929. "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
  3930. "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
  3931. "@babel/plugin-proposal-optional-chaining" "^7.0.0"
  3932. "@babel/plugin-syntax-dynamic-import" "^7.0.0"
  3933. "@babel/plugin-syntax-export-default-from" "^7.0.0"
  3934. "@babel/plugin-syntax-flow" "^7.2.0"
  3935. "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0"
  3936. "@babel/plugin-syntax-optional-chaining" "^7.0.0"
  3937. "@babel/plugin-transform-arrow-functions" "^7.0.0"
  3938. "@babel/plugin-transform-async-to-generator" "^7.0.0"
  3939. "@babel/plugin-transform-block-scoping" "^7.0.0"
  3940. "@babel/plugin-transform-classes" "^7.0.0"
  3941. "@babel/plugin-transform-computed-properties" "^7.0.0"
  3942. "@babel/plugin-transform-destructuring" "^7.0.0"
  3943. "@babel/plugin-transform-exponentiation-operator" "^7.0.0"
  3944. "@babel/plugin-transform-flow-strip-types" "^7.0.0"
  3945. "@babel/plugin-transform-function-name" "^7.0.0"
  3946. "@babel/plugin-transform-literals" "^7.0.0"
  3947. "@babel/plugin-transform-modules-commonjs" "^7.0.0"
  3948. "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0"
  3949. "@babel/plugin-transform-parameters" "^7.0.0"
  3950. "@babel/plugin-transform-react-display-name" "^7.0.0"
  3951. "@babel/plugin-transform-react-jsx" "^7.0.0"
  3952. "@babel/plugin-transform-react-jsx-self" "^7.0.0"
  3953. "@babel/plugin-transform-react-jsx-source" "^7.0.0"
  3954. "@babel/plugin-transform-runtime" "^7.0.0"
  3955. "@babel/plugin-transform-shorthand-properties" "^7.0.0"
  3956. "@babel/plugin-transform-spread" "^7.0.0"
  3957. "@babel/plugin-transform-sticky-regex" "^7.0.0"
  3958. "@babel/plugin-transform-template-literals" "^7.0.0"
  3959. "@babel/plugin-transform-typescript" "^7.5.0"
  3960. "@babel/plugin-transform-unicode-regex" "^7.0.0"
  3961. "@babel/template" "^7.0.0"
  3962. "react-refresh" "^0.4.0"
  3963. "metro-react-native-babel-transformer@0.72.3":
  3964. "integrity" "sha512-Ogst/M6ujYrl/+9mpEWqE3zF7l2mTuftDTy3L8wZYwX1pWUQWQpfU1aJBeWiLxt1XlIq+uriRjKzKoRoIK57EA=="
  3965. "resolved" "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.72.3.tgz"
  3966. "version" "0.72.3"
  3967. dependencies:
  3968. "@babel/core" "^7.14.0"
  3969. "babel-preset-fbjs" "^3.4.0"
  3970. "hermes-parser" "0.8.0"
  3971. "metro-babel-transformer" "0.72.3"
  3972. "metro-react-native-babel-preset" "0.72.3"
  3973. "metro-source-map" "0.72.3"
  3974. "nullthrows" "^1.1.1"
  3975. "metro-resolver@0.72.3":
  3976. "integrity" "sha512-wu9zSMGdxpKmfECE7FtCdpfC+vrWGTdVr57lDA0piKhZV6VN6acZIvqQ1yZKtS2WfKsngncv5VbB8Y5eHRQP3w=="
  3977. "resolved" "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.72.3.tgz"
  3978. "version" "0.72.3"
  3979. dependencies:
  3980. "absolute-path" "^0.0.0"
  3981. "metro-runtime@0.72.3":
  3982. "integrity" "sha512-3MhvDKfxMg2u7dmTdpFOfdR71NgNNo4tzAyJumDVQKwnHYHN44f2QFZQqpPBEmqhWlojNeOxsqFsjYgeyMx6VA=="
  3983. "resolved" "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.72.3.tgz"
  3984. "version" "0.72.3"
  3985. dependencies:
  3986. "@babel/runtime" "^7.0.0"
  3987. "react-refresh" "^0.4.0"
  3988. "metro-source-map@0.72.3":
  3989. "integrity" "sha512-eNtpjbjxSheXu/jYCIDrbNEKzMGOvYW6/ePYpRM7gDdEagUOqKOCsi3St8NJIQJzZCsxD2JZ2pYOiomUSkT1yQ=="
  3990. "resolved" "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.72.3.tgz"
  3991. "version" "0.72.3"
  3992. dependencies:
  3993. "@babel/traverse" "^7.14.0"
  3994. "@babel/types" "^7.0.0"
  3995. "invariant" "^2.2.4"
  3996. "metro-symbolicate" "0.72.3"
  3997. "nullthrows" "^1.1.1"
  3998. "ob1" "0.72.3"
  3999. "source-map" "^0.5.6"
  4000. "vlq" "^1.0.0"
  4001. "metro-symbolicate@0.72.3":
  4002. "integrity" "sha512-eXG0NX2PJzJ/jTG4q5yyYeN2dr1cUqUaY7worBB0SP5bRWRc3besfb+rXwfh49wTFiL5qR0oOawkU4ZiD4eHXw=="
  4003. "resolved" "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.72.3.tgz"
  4004. "version" "0.72.3"
  4005. dependencies:
  4006. "invariant" "^2.2.4"
  4007. "metro-source-map" "0.72.3"
  4008. "nullthrows" "^1.1.1"
  4009. "source-map" "^0.5.6"
  4010. "through2" "^2.0.1"
  4011. "vlq" "^1.0.0"
  4012. "metro-transform-plugins@0.72.3":
  4013. "integrity" "sha512-D+TcUvCKZbRua1+qujE0wV1onZvslW6cVTs7dLCyC2pv20lNHjFr1GtW01jN2fyKR2PcRyMjDCppFd9VwDKnSg=="
  4014. "resolved" "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.72.3.tgz"
  4015. "version" "0.72.3"
  4016. dependencies:
  4017. "@babel/core" "^7.14.0"
  4018. "@babel/generator" "^7.14.0"
  4019. "@babel/template" "^7.0.0"
  4020. "@babel/traverse" "^7.14.0"
  4021. "nullthrows" "^1.1.1"
  4022. "metro-transform-worker@0.72.3":
  4023. "integrity" "sha512-WsuWj9H7i6cHuJuy+BgbWht9DK5FOgJxHLGAyULD5FJdTG9rSMFaHDO5WfC0OwQU5h4w6cPT40iDuEGksM7+YQ=="
  4024. "resolved" "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.72.3.tgz"
  4025. "version" "0.72.3"
  4026. dependencies:
  4027. "@babel/core" "^7.14.0"
  4028. "@babel/generator" "^7.14.0"
  4029. "@babel/parser" "^7.14.0"
  4030. "@babel/types" "^7.0.0"
  4031. "babel-preset-fbjs" "^3.4.0"
  4032. "metro" "0.72.3"
  4033. "metro-babel-transformer" "0.72.3"
  4034. "metro-cache" "0.72.3"
  4035. "metro-cache-key" "0.72.3"
  4036. "metro-hermes-compiler" "0.72.3"
  4037. "metro-source-map" "0.72.3"
  4038. "metro-transform-plugins" "0.72.3"
  4039. "nullthrows" "^1.1.1"
  4040. "metro@0.72.3":
  4041. "integrity" "sha512-Hb3xTvPqex8kJ1hutQNZhQadUKUwmns/Du9GikmWKBFrkiG3k3xstGAyO5t5rN9JSUEzQT6y9SWzSSOGogUKIg=="
  4042. "resolved" "https://registry.npmjs.org/metro/-/metro-0.72.3.tgz"
  4043. "version" "0.72.3"
  4044. dependencies:
  4045. "@babel/code-frame" "^7.0.0"
  4046. "@babel/core" "^7.14.0"
  4047. "@babel/generator" "^7.14.0"
  4048. "@babel/parser" "^7.14.0"
  4049. "@babel/template" "^7.0.0"
  4050. "@babel/traverse" "^7.14.0"
  4051. "@babel/types" "^7.0.0"
  4052. "absolute-path" "^0.0.0"
  4053. "accepts" "^1.3.7"
  4054. "async" "^3.2.2"
  4055. "chalk" "^4.0.0"
  4056. "ci-info" "^2.0.0"
  4057. "connect" "^3.6.5"
  4058. "debug" "^2.2.0"
  4059. "denodeify" "^1.2.1"
  4060. "error-stack-parser" "^2.0.6"
  4061. "fs-extra" "^1.0.0"
  4062. "graceful-fs" "^4.2.4"
  4063. "hermes-parser" "0.8.0"
  4064. "image-size" "^0.6.0"
  4065. "invariant" "^2.2.4"
  4066. "jest-worker" "^27.2.0"
  4067. "lodash.throttle" "^4.1.1"
  4068. "metro-babel-transformer" "0.72.3"
  4069. "metro-cache" "0.72.3"
  4070. "metro-cache-key" "0.72.3"
  4071. "metro-config" "0.72.3"
  4072. "metro-core" "0.72.3"
  4073. "metro-file-map" "0.72.3"
  4074. "metro-hermes-compiler" "0.72.3"
  4075. "metro-inspector-proxy" "0.72.3"
  4076. "metro-minify-uglify" "0.72.3"
  4077. "metro-react-native-babel-preset" "0.72.3"
  4078. "metro-resolver" "0.72.3"
  4079. "metro-runtime" "0.72.3"
  4080. "metro-source-map" "0.72.3"
  4081. "metro-symbolicate" "0.72.3"
  4082. "metro-transform-plugins" "0.72.3"
  4083. "metro-transform-worker" "0.72.3"
  4084. "mime-types" "^2.1.27"
  4085. "node-fetch" "^2.2.0"
  4086. "nullthrows" "^1.1.1"
  4087. "rimraf" "^2.5.4"
  4088. "serialize-error" "^2.1.0"
  4089. "source-map" "^0.5.6"
  4090. "strip-ansi" "^6.0.0"
  4091. "temp" "0.8.3"
  4092. "throat" "^5.0.0"
  4093. "ws" "^7.5.1"
  4094. "yargs" "^15.3.1"
  4095. "micromatch@^3.1.10":
  4096. "integrity" "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="
  4097. "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"
  4098. "version" "3.1.10"
  4099. dependencies:
  4100. "arr-diff" "^4.0.0"
  4101. "array-unique" "^0.3.2"
  4102. "braces" "^2.3.1"
  4103. "define-property" "^2.0.2"
  4104. "extend-shallow" "^3.0.2"
  4105. "extglob" "^2.0.4"
  4106. "fragment-cache" "^0.2.1"
  4107. "kind-of" "^6.0.2"
  4108. "nanomatch" "^1.2.9"
  4109. "object.pick" "^1.3.0"
  4110. "regex-not" "^1.0.0"
  4111. "snapdragon" "^0.8.1"
  4112. "to-regex" "^3.0.2"
  4113. "micromatch@^4.0.2", "micromatch@^4.0.4":
  4114. "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="
  4115. "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
  4116. "version" "4.0.5"
  4117. dependencies:
  4118. "braces" "^3.0.2"
  4119. "picomatch" "^2.3.1"
  4120. "mime-db@>= 1.43.0 < 2", "mime-db@1.52.0":
  4121. "integrity" "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
  4122. "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"
  4123. "version" "1.52.0"
  4124. "mime-types@^2.1.12", "mime-types@^2.1.27", "mime-types@~2.1.24", "mime-types@~2.1.34":
  4125. "integrity" "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="
  4126. "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"
  4127. "version" "2.1.35"
  4128. dependencies:
  4129. "mime-db" "1.52.0"
  4130. "mime@^2.4.1", "mime@^2.4.4":
  4131. "integrity" "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="
  4132. "resolved" "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz"
  4133. "version" "2.6.0"
  4134. "mime@1.6.0":
  4135. "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
  4136. "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
  4137. "version" "1.6.0"
  4138. "mimic-fn@^1.0.0":
  4139. "integrity" "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="
  4140. "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz"
  4141. "version" "1.2.0"
  4142. "mimic-fn@^2.1.0":
  4143. "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
  4144. "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
  4145. "version" "2.1.0"
  4146. "minimatch@^3.0.2", "minimatch@^3.0.4", "minimatch@2 || 3":
  4147. "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="
  4148. "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
  4149. "version" "3.1.2"
  4150. dependencies:
  4151. "brace-expansion" "^1.1.7"
  4152. "minimist@^1.2.0", "minimist@^1.2.6":
  4153. "integrity" "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
  4154. "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"
  4155. "version" "1.2.7"
  4156. "minipass-collect@^1.0.2":
  4157. "integrity" "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA=="
  4158. "resolved" "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz"
  4159. "version" "1.0.2"
  4160. dependencies:
  4161. "minipass" "^3.0.0"
  4162. "minipass-flush@^1.0.5":
  4163. "integrity" "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw=="
  4164. "resolved" "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz"
  4165. "version" "1.0.5"
  4166. dependencies:
  4167. "minipass" "^3.0.0"
  4168. "minipass-pipeline@^1.2.2":
  4169. "integrity" "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A=="
  4170. "resolved" "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz"
  4171. "version" "1.2.4"
  4172. dependencies:
  4173. "minipass" "^3.0.0"
  4174. "minipass@^3.0.0", "minipass@^3.1.1", "minipass@3.1.6":
  4175. "integrity" "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ=="
  4176. "resolved" "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz"
  4177. "version" "3.1.6"
  4178. dependencies:
  4179. "yallist" "^4.0.0"
  4180. "minizlib@^2.1.1":
  4181. "integrity" "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="
  4182. "resolved" "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz"
  4183. "version" "2.1.2"
  4184. dependencies:
  4185. "minipass" "^3.0.0"
  4186. "yallist" "^4.0.0"
  4187. "mixin-deep@^1.2.0":
  4188. "integrity" "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA=="
  4189. "resolved" "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"
  4190. "version" "1.3.2"
  4191. dependencies:
  4192. "for-in" "^1.0.2"
  4193. "is-extendable" "^1.0.1"
  4194. "mkdirp@^0.5.1", "mkdirp@~0.5.1":
  4195. "integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="
  4196. "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"
  4197. "version" "0.5.6"
  4198. dependencies:
  4199. "minimist" "^1.2.6"
  4200. "mkdirp@^1.0.3":
  4201. "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
  4202. "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"
  4203. "version" "1.0.4"
  4204. "mkdirp@^1.0.4":
  4205. "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
  4206. "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"
  4207. "version" "1.0.4"
  4208. "ms@^2.1.1", "ms@2.1.2":
  4209. "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
  4210. "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
  4211. "version" "2.1.2"
  4212. "ms@2.0.0":
  4213. "integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
  4214. "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
  4215. "version" "2.0.0"
  4216. "ms@2.1.3":
  4217. "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
  4218. "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
  4219. "version" "2.1.3"
  4220. "mv@~2":
  4221. "integrity" "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg=="
  4222. "resolved" "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"
  4223. "version" "2.1.1"
  4224. dependencies:
  4225. "mkdirp" "~0.5.1"
  4226. "ncp" "~2.0.0"
  4227. "rimraf" "~2.4.0"
  4228. "mz@^2.7.0":
  4229. "integrity" "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="
  4230. "resolved" "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz"
  4231. "version" "2.7.0"
  4232. dependencies:
  4233. "any-promise" "^1.0.0"
  4234. "object-assign" "^4.0.1"
  4235. "thenify-all" "^1.0.0"
  4236. "nanoid@^3.1.23":
  4237. "integrity" "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="
  4238. "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"
  4239. "version" "3.3.4"
  4240. "nanomatch@^1.2.9":
  4241. "integrity" "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="
  4242. "resolved" "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"
  4243. "version" "1.2.13"
  4244. dependencies:
  4245. "arr-diff" "^4.0.0"
  4246. "array-unique" "^0.3.2"
  4247. "define-property" "^2.0.2"
  4248. "extend-shallow" "^3.0.2"
  4249. "fragment-cache" "^0.2.1"
  4250. "is-windows" "^1.0.2"
  4251. "kind-of" "^6.0.2"
  4252. "object.pick" "^1.3.0"
  4253. "regex-not" "^1.0.0"
  4254. "snapdragon" "^0.8.1"
  4255. "to-regex" "^3.0.1"
  4256. "ncp@~2.0.0":
  4257. "integrity" "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA=="
  4258. "resolved" "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"
  4259. "version" "2.0.0"
  4260. "negotiator@0.6.3":
  4261. "integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
  4262. "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"
  4263. "version" "0.6.3"
  4264. "neo-async@^2.5.0":
  4265. "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="
  4266. "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
  4267. "version" "2.6.2"
  4268. "nested-error-stacks@~2.0.1":
  4269. "integrity" "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A=="
  4270. "resolved" "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz"
  4271. "version" "2.0.1"
  4272. "nice-try@^1.0.4":
  4273. "integrity" "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="
  4274. "resolved" "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"
  4275. "version" "1.0.5"
  4276. "nocache@^3.0.1":
  4277. "integrity" "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw=="
  4278. "resolved" "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz"
  4279. "version" "3.0.4"
  4280. "node-dir@^0.1.17":
  4281. "integrity" "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg=="
  4282. "resolved" "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz"
  4283. "version" "0.1.17"
  4284. dependencies:
  4285. "minimatch" "^3.0.2"
  4286. "node-fetch@^2.2.0", "node-fetch@^2.6.0", "node-fetch@^2.6.1", "node-fetch@^2.6.7", "node-fetch@2.6.7":
  4287. "integrity" "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="
  4288. "resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz"
  4289. "version" "2.6.7"
  4290. dependencies:
  4291. "whatwg-url" "^5.0.0"
  4292. "node-forge@^1.2.1", "node-forge@^1.3.1":
  4293. "integrity" "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA=="
  4294. "resolved" "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz"
  4295. "version" "1.3.1"
  4296. "node-int64@^0.4.0":
  4297. "integrity" "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
  4298. "resolved" "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"
  4299. "version" "0.4.0"
  4300. "node-releases@^2.0.6":
  4301. "integrity" "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="
  4302. "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz"
  4303. "version" "2.0.6"
  4304. "node-stream-zip@^1.9.1":
  4305. "integrity" "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw=="
  4306. "resolved" "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz"
  4307. "version" "1.15.0"
  4308. "normalize-path@^3.0.0":
  4309. "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
  4310. "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
  4311. "version" "3.0.0"
  4312. "npm-package-arg@^7.0.0":
  4313. "integrity" "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g=="
  4314. "resolved" "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-7.0.0.tgz"
  4315. "version" "7.0.0"
  4316. dependencies:
  4317. "hosted-git-info" "^3.0.2"
  4318. "osenv" "^0.1.5"
  4319. "semver" "^5.6.0"
  4320. "validate-npm-package-name" "^3.0.0"
  4321. "npm-run-path@^2.0.0":
  4322. "integrity" "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw=="
  4323. "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
  4324. "version" "2.0.2"
  4325. dependencies:
  4326. "path-key" "^2.0.0"
  4327. "nullthrows@^1.1.1":
  4328. "integrity" "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw=="
  4329. "resolved" "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz"
  4330. "version" "1.1.1"
  4331. "ob1@0.72.3":
  4332. "integrity" "sha512-OnVto25Sj7Ghp0vVm2THsngdze3tVq0LOg9LUHsAVXMecpqOP0Y8zaATW8M9gEgs2lNEAcCqV0P/hlmOPhVRvg=="
  4333. "resolved" "https://registry.npmjs.org/ob1/-/ob1-0.72.3.tgz"
  4334. "version" "0.72.3"
  4335. "object-assign@^4.0.1", "object-assign@^4.1.0", "object-assign@^4.1.1":
  4336. "integrity" "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
  4337. "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
  4338. "version" "4.1.1"
  4339. "object-copy@^0.1.0":
  4340. "integrity" "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ=="
  4341. "resolved" "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"
  4342. "version" "0.1.0"
  4343. dependencies:
  4344. "copy-descriptor" "^0.1.0"
  4345. "define-property" "^0.2.5"
  4346. "kind-of" "^3.0.3"
  4347. "object-visit@^1.0.0":
  4348. "integrity" "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA=="
  4349. "resolved" "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"
  4350. "version" "1.0.1"
  4351. dependencies:
  4352. "isobject" "^3.0.0"
  4353. "object.pick@^1.3.0":
  4354. "integrity" "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ=="
  4355. "resolved" "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"
  4356. "version" "1.3.0"
  4357. dependencies:
  4358. "isobject" "^3.0.1"
  4359. "on-finished@~2.3.0":
  4360. "integrity" "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww=="
  4361. "resolved" "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"
  4362. "version" "2.3.0"
  4363. dependencies:
  4364. "ee-first" "1.1.1"
  4365. "on-finished@2.4.1":
  4366. "integrity" "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="
  4367. "resolved" "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz"
  4368. "version" "2.4.1"
  4369. dependencies:
  4370. "ee-first" "1.1.1"
  4371. "on-headers@~1.0.2":
  4372. "integrity" "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
  4373. "resolved" "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"
  4374. "version" "1.0.2"
  4375. "once@^1.3.0", "once@^1.3.1", "once@^1.4.0":
  4376. "integrity" "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="
  4377. "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
  4378. "version" "1.4.0"
  4379. dependencies:
  4380. "wrappy" "1"
  4381. "onetime@^2.0.0":
  4382. "integrity" "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ=="
  4383. "resolved" "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"
  4384. "version" "2.0.1"
  4385. dependencies:
  4386. "mimic-fn" "^1.0.0"
  4387. "onetime@^5.1.0":
  4388. "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="
  4389. "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
  4390. "version" "5.1.2"
  4391. dependencies:
  4392. "mimic-fn" "^2.1.0"
  4393. "open@^6.2.0":
  4394. "integrity" "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg=="
  4395. "resolved" "https://registry.npmjs.org/open/-/open-6.4.0.tgz"
  4396. "version" "6.4.0"
  4397. dependencies:
  4398. "is-wsl" "^1.1.0"
  4399. "open@^8.0.4", "open@^8.3.0":
  4400. "integrity" "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q=="
  4401. "resolved" "https://registry.npmjs.org/open/-/open-8.4.0.tgz"
  4402. "version" "8.4.0"
  4403. dependencies:
  4404. "define-lazy-prop" "^2.0.0"
  4405. "is-docker" "^2.1.1"
  4406. "is-wsl" "^2.2.0"
  4407. "ora@^5.4.1":
  4408. "integrity" "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ=="
  4409. "resolved" "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz"
  4410. "version" "5.4.1"
  4411. dependencies:
  4412. "bl" "^4.1.0"
  4413. "chalk" "^4.1.0"
  4414. "cli-cursor" "^3.1.0"
  4415. "cli-spinners" "^2.5.0"
  4416. "is-interactive" "^1.0.0"
  4417. "is-unicode-supported" "^0.1.0"
  4418. "log-symbols" "^4.1.0"
  4419. "strip-ansi" "^6.0.0"
  4420. "wcwidth" "^1.0.1"
  4421. "ora@3.4.0":
  4422. "integrity" "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg=="
  4423. "resolved" "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz"
  4424. "version" "3.4.0"
  4425. dependencies:
  4426. "chalk" "^2.4.2"
  4427. "cli-cursor" "^2.1.0"
  4428. "cli-spinners" "^2.0.0"
  4429. "log-symbols" "^2.2.0"
  4430. "strip-ansi" "^5.2.0"
  4431. "wcwidth" "^1.0.1"
  4432. "os-homedir@^1.0.0":
  4433. "integrity" "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ=="
  4434. "resolved" "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"
  4435. "version" "1.0.2"
  4436. "os-tmpdir@^1.0.0", "os-tmpdir@~1.0.2":
  4437. "integrity" "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="
  4438. "resolved" "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
  4439. "version" "1.0.2"
  4440. "osenv@^0.1.5":
  4441. "integrity" "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="
  4442. "resolved" "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz"
  4443. "version" "0.1.5"
  4444. dependencies:
  4445. "os-homedir" "^1.0.0"
  4446. "os-tmpdir" "^1.0.0"
  4447. "p-finally@^1.0.0":
  4448. "integrity" "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="
  4449. "resolved" "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
  4450. "version" "1.0.0"
  4451. "p-limit@^2.0.0":
  4452. "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="
  4453. "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
  4454. "version" "2.3.0"
  4455. dependencies:
  4456. "p-try" "^2.0.0"
  4457. "p-limit@^2.2.0":
  4458. "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="
  4459. "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
  4460. "version" "2.3.0"
  4461. dependencies:
  4462. "p-try" "^2.0.0"
  4463. "p-limit@^3.0.2":
  4464. "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="
  4465. "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
  4466. "version" "3.1.0"
  4467. dependencies:
  4468. "yocto-queue" "^0.1.0"
  4469. "p-locate@^3.0.0":
  4470. "integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="
  4471. "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"
  4472. "version" "3.0.0"
  4473. dependencies:
  4474. "p-limit" "^2.0.0"
  4475. "p-locate@^4.1.0":
  4476. "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="
  4477. "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
  4478. "version" "4.1.0"
  4479. dependencies:
  4480. "p-limit" "^2.2.0"
  4481. "p-locate@^5.0.0":
  4482. "integrity" "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="
  4483. "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
  4484. "version" "5.0.0"
  4485. dependencies:
  4486. "p-limit" "^3.0.2"
  4487. "p-map@^4.0.0":
  4488. "integrity" "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ=="
  4489. "resolved" "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz"
  4490. "version" "4.0.0"
  4491. dependencies:
  4492. "aggregate-error" "^3.0.0"
  4493. "p-try@^2.0.0":
  4494. "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
  4495. "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
  4496. "version" "2.2.0"
  4497. "parse-json@^4.0.0":
  4498. "integrity" "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw=="
  4499. "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"
  4500. "version" "4.0.0"
  4501. dependencies:
  4502. "error-ex" "^1.3.1"
  4503. "json-parse-better-errors" "^1.0.1"
  4504. "parse-png@^2.1.0":
  4505. "integrity" "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ=="
  4506. "resolved" "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz"
  4507. "version" "2.1.0"
  4508. dependencies:
  4509. "pngjs" "^3.3.0"
  4510. "parseurl@~1.3.3":
  4511. "integrity" "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
  4512. "resolved" "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"
  4513. "version" "1.3.3"
  4514. "pascalcase@^0.1.1":
  4515. "integrity" "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw=="
  4516. "resolved" "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"
  4517. "version" "0.1.1"
  4518. "password-prompt@^1.0.4":
  4519. "integrity" "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA=="
  4520. "resolved" "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz"
  4521. "version" "1.1.2"
  4522. dependencies:
  4523. "ansi-escapes" "^3.1.0"
  4524. "cross-spawn" "^6.0.5"
  4525. "path-browserify@^1.0.0":
  4526. "integrity" "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
  4527. "resolved" "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz"
  4528. "version" "1.0.1"
  4529. "path-exists@^3.0.0":
  4530. "integrity" "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ=="
  4531. "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
  4532. "version" "3.0.0"
  4533. "path-exists@^4.0.0":
  4534. "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
  4535. "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
  4536. "version" "4.0.0"
  4537. "path-is-absolute@^1.0.0":
  4538. "integrity" "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
  4539. "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
  4540. "version" "1.0.1"
  4541. "path-key@^2.0.0", "path-key@^2.0.1":
  4542. "integrity" "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw=="
  4543. "resolved" "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
  4544. "version" "2.0.1"
  4545. "path-parse@^1.0.5", "path-parse@^1.0.6", "path-parse@^1.0.7":
  4546. "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
  4547. "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
  4548. "version" "1.0.7"
  4549. "path-type@^4.0.0":
  4550. "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
  4551. "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
  4552. "version" "4.0.0"
  4553. "picocolors@^1.0.0":
  4554. "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
  4555. "resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
  4556. "version" "1.0.0"
  4557. "picomatch@^2.0.4", "picomatch@^2.2.3", "picomatch@^2.3.1":
  4558. "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
  4559. "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
  4560. "version" "2.3.1"
  4561. "pify@^4.0.1":
  4562. "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="
  4563. "resolved" "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"
  4564. "version" "4.0.1"
  4565. "pirates@^4.0.1", "pirates@^4.0.5":
  4566. "integrity" "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ=="
  4567. "resolved" "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz"
  4568. "version" "4.0.5"
  4569. "pkg-dir@^3.0.0":
  4570. "integrity" "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw=="
  4571. "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz"
  4572. "version" "3.0.0"
  4573. dependencies:
  4574. "find-up" "^3.0.0"
  4575. "pkg-dir@^4.1.0":
  4576. "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="
  4577. "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
  4578. "version" "4.2.0"
  4579. dependencies:
  4580. "find-up" "^4.0.0"
  4581. "pkg-up@^3.1.0":
  4582. "integrity" "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA=="
  4583. "resolved" "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz"
  4584. "version" "3.1.0"
  4585. dependencies:
  4586. "find-up" "^3.0.0"
  4587. "plist@^3.0.5":
  4588. "integrity" "sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA=="
  4589. "resolved" "https://registry.npmjs.org/plist/-/plist-3.0.6.tgz"
  4590. "version" "3.0.6"
  4591. dependencies:
  4592. "base64-js" "^1.5.1"
  4593. "xmlbuilder" "^15.1.1"
  4594. "pngjs@^3.3.0":
  4595. "integrity" "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w=="
  4596. "resolved" "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz"
  4597. "version" "3.4.0"
  4598. "pose-core@^2.0.3":
  4599. "integrity" "sha512-fV1sDfu80debHmKerikypqGoORMEUHVwGh/BlWnqUSmmzQGYIg8neDrdwe66hFeRO+adr2qS4ZERSu/ZVjOiSQ=="
  4600. "resolved" "https://registry.npmjs.org/pose-core/-/pose-core-2.1.1.tgz"
  4601. "version" "2.1.1"
  4602. dependencies:
  4603. "@types/invariant" "^2.2.29"
  4604. "@types/node" "^10.0.5"
  4605. "hey-listen" "^1.0.5"
  4606. "rollup-plugin-typescript2" "^0.25.2"
  4607. "tslib" "^1.10.0"
  4608. "typescript" "^3.7.2"
  4609. "posix-character-classes@^0.1.0":
  4610. "integrity" "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg=="
  4611. "resolved" "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"
  4612. "version" "0.1.1"
  4613. "pretty-bytes@5.6.0":
  4614. "integrity" "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg=="
  4615. "resolved" "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz"
  4616. "version" "5.6.0"
  4617. "pretty-format@^26.5.2", "pretty-format@^26.6.2":
  4618. "integrity" "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg=="
  4619. "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz"
  4620. "version" "26.6.2"
  4621. dependencies:
  4622. "@jest/types" "^26.6.2"
  4623. "ansi-regex" "^5.0.0"
  4624. "ansi-styles" "^4.0.0"
  4625. "react-is" "^17.0.1"
  4626. "process-nextick-args@~2.0.0":
  4627. "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
  4628. "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
  4629. "version" "2.0.1"
  4630. "progress@2.0.3":
  4631. "integrity" "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
  4632. "resolved" "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
  4633. "version" "2.0.3"
  4634. "promise-inflight@^1.0.1":
  4635. "integrity" "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="
  4636. "resolved" "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz"
  4637. "version" "1.0.1"
  4638. "promise@^7.1.1":
  4639. "integrity" "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg=="
  4640. "resolved" "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"
  4641. "version" "7.3.1"
  4642. dependencies:
  4643. "asap" "~2.0.3"
  4644. "promise@^8.0.3":
  4645. "integrity" "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg=="
  4646. "resolved" "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz"
  4647. "version" "8.3.0"
  4648. dependencies:
  4649. "asap" "~2.0.6"
  4650. "prompts@^2.3.2", "prompts@^2.4.0":
  4651. "integrity" "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="
  4652. "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz"
  4653. "version" "2.4.2"
  4654. dependencies:
  4655. "kleur" "^3.0.3"
  4656. "sisteransi" "^1.0.5"
  4657. "prop-types@^15.6.2", "prop-types@^15.7.2":
  4658. "integrity" "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="
  4659. "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"
  4660. "version" "15.8.1"
  4661. dependencies:
  4662. "loose-envify" "^1.4.0"
  4663. "object-assign" "^4.1.1"
  4664. "react-is" "^16.13.1"
  4665. "pump@^3.0.0":
  4666. "integrity" "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="
  4667. "resolved" "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
  4668. "version" "3.0.0"
  4669. dependencies:
  4670. "end-of-stream" "^1.1.0"
  4671. "once" "^1.3.1"
  4672. "qrcode-terminal@0.11.0":
  4673. "integrity" "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ=="
  4674. "resolved" "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz"
  4675. "version" "0.11.0"
  4676. "qs@6.7.0":
  4677. "integrity" "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
  4678. "resolved" "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"
  4679. "version" "6.7.0"
  4680. "query-string@^7.0.0":
  4681. "integrity" "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w=="
  4682. "resolved" "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz"
  4683. "version" "7.1.1"
  4684. dependencies:
  4685. "decode-uri-component" "^0.2.0"
  4686. "filter-obj" "^1.1.0"
  4687. "split-on-first" "^1.0.0"
  4688. "strict-uri-encode" "^2.0.0"
  4689. "querystringify@^2.1.1":
  4690. "integrity" "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
  4691. "resolved" "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz"
  4692. "version" "2.2.0"
  4693. "queue-microtask@^1.2.2":
  4694. "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
  4695. "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
  4696. "version" "1.2.3"
  4697. "range-parser@~1.2.1":
  4698. "integrity" "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
  4699. "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"
  4700. "version" "1.2.1"
  4701. "raw-body@2.4.0":
  4702. "integrity" "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="
  4703. "resolved" "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz"
  4704. "version" "2.4.0"
  4705. dependencies:
  4706. "bytes" "3.1.0"
  4707. "http-errors" "1.7.2"
  4708. "iconv-lite" "0.4.24"
  4709. "unpipe" "1.0.0"
  4710. "rc@~1.2.7":
  4711. "integrity" "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="
  4712. "resolved" "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"
  4713. "version" "1.2.8"
  4714. dependencies:
  4715. "deep-extend" "^0.6.0"
  4716. "ini" "~1.3.0"
  4717. "minimist" "^1.2.0"
  4718. "strip-json-comments" "~2.0.1"
  4719. "react-devtools-core@4.24.0":
  4720. "integrity" "sha512-Rw7FzYOOzcfyUPaAm9P3g0tFdGqGq2LLiAI+wjYcp6CsF3DeeMrRS3HZAho4s273C29G/DJhx0e8BpRE/QZNGg=="
  4721. "resolved" "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.24.0.tgz"
  4722. "version" "4.24.0"
  4723. dependencies:
  4724. "shell-quote" "^1.6.1"
  4725. "ws" "^7"
  4726. "react-freeze@^1.0.0":
  4727. "integrity" "sha512-ZnXwLQnGzrDpHBHiC56TXFXvmolPeMjTn1UOm610M4EXGzbEDR7oOIyS2ZiItgbs6eZc4oU/a0hpk8PrcKvv5g=="
  4728. "resolved" "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.3.tgz"
  4729. "version" "1.0.3"
  4730. "react-is@^16.12.0 || ^17.0.0 || ^18.0.0", "react-is@^17.0.1":
  4731. "integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
  4732. "resolved" "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
  4733. "version" "17.0.2"
  4734. "react-is@^16.13.0":
  4735. "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
  4736. "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
  4737. "version" "16.13.1"
  4738. "react-is@^16.13.1":
  4739. "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
  4740. "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
  4741. "version" "16.13.1"
  4742. "react-is@^16.7.0":
  4743. "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
  4744. "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
  4745. "version" "16.13.1"
  4746. "react-native-codegen@^0.70.6":
  4747. "integrity" "sha512-kdwIhH2hi+cFnG5Nb8Ji2JwmcCxnaOOo9440ov7XDzSvGfmUStnCzl+MCW8jLjqHcE4icT7N9y+xx4f50vfBTw=="
  4748. "resolved" "https://registry.npmjs.org/react-native-codegen/-/react-native-codegen-0.70.6.tgz"
  4749. "version" "0.70.6"
  4750. dependencies:
  4751. "@babel/parser" "^7.14.0"
  4752. "flow-parser" "^0.121.0"
  4753. "jscodeshift" "^0.13.1"
  4754. "nullthrows" "^1.1.1"
  4755. "react-native-custom-navigation-tabs@^3.0.1":
  4756. "integrity" "sha512-tJGo+8XHvkqJPmZgJAeOQZL8kWNeBzwFSOelTYdUHJaoei673lOE/wOhDt4l2fmaWqROFil7iUt1azJhCuJ6YQ=="
  4757. "resolved" "https://registry.npmjs.org/react-native-custom-navigation-tabs/-/react-native-custom-navigation-tabs-3.0.1.tgz"
  4758. "version" "3.0.1"
  4759. dependencies:
  4760. "react-native-pose" "^0.9.1"
  4761. "react-native-dropdown-select-list@^2.0.2":
  4762. "integrity" "sha512-dxbhsO6DHxN5Ex5koVIAWO5E9R6ENNzbVjSoBVi8dcQkd1ubD31eCmdJXd4+VzEpXZ2em61kzILqyksRkLtS5w=="
  4763. "resolved" "https://registry.npmjs.org/react-native-dropdown-select-list/-/react-native-dropdown-select-list-2.0.2.tgz"
  4764. "version" "2.0.2"
  4765. "react-native-gesture-handler@~2.8.0":
  4766. "integrity" "sha512-poOSfz/w0IyD6Qwq7aaIRRfEaVTl1ecQFoyiIbpOpfNTjm2B1niY2FLrdVQIOtIOe+K9nH55Qal04nr4jGkHdQ=="
  4767. "resolved" "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.8.0.tgz"
  4768. "version" "2.8.0"
  4769. dependencies:
  4770. "@egjs/hammerjs" "^2.0.17"
  4771. "hoist-non-react-statics" "^3.3.0"
  4772. "invariant" "^2.2.4"
  4773. "lodash" "^4.17.21"
  4774. "prop-types" "^15.7.2"
  4775. "react-native-gradle-plugin@^0.70.3":
  4776. "integrity" "sha512-oOanj84fJEXUg9FoEAQomA8ISG+DVIrTZ3qF7m69VQUJyOGYyDZmPqKcjvRku4KXlEH6hWO9i4ACLzNBh8gC0A=="
  4777. "resolved" "https://registry.npmjs.org/react-native-gradle-plugin/-/react-native-gradle-plugin-0.70.3.tgz"
  4778. "version" "0.70.3"
  4779. "react-native-iphone-x-helper@^1.0.3":
  4780. "integrity" "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg=="
  4781. "resolved" "https://registry.npmjs.org/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz"
  4782. "version" "1.3.1"
  4783. "react-native-keyboard-aware-scroll-view@^0.9.5":
  4784. "integrity" "sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA=="
  4785. "resolved" "https://registry.npmjs.org/react-native-keyboard-aware-scroll-view/-/react-native-keyboard-aware-scroll-view-0.9.5.tgz"
  4786. "version" "0.9.5"
  4787. dependencies:
  4788. "prop-types" "^15.6.2"
  4789. "react-native-iphone-x-helper" "^1.0.3"
  4790. "react-native-pose@^0.9.1":
  4791. "integrity" "sha512-JQ17SWXk6Hetlxfj3PO09/jYt5PMwu+MZ9YPcgRp5A//EtYXvfHS+IieXDnCg36wi74yZ80MvYx025//g/tqbQ=="
  4792. "resolved" "https://registry.npmjs.org/react-native-pose/-/react-native-pose-0.9.1.tgz"
  4793. "version" "0.9.1"
  4794. dependencies:
  4795. "animated-pose" "^1.2.0"
  4796. "react-pose-core" "^0.5.0"
  4797. "react-native-safe-area-context@>= 3.0.0", "react-native-safe-area-context@4.4.1":
  4798. "integrity" "sha512-N9XTjiuD73ZpVlejHrUWIFZc+6Z14co1K/p1IFMkImU7+avD69F3y+lhkqA2hN/+vljdZrBSiOwXPkuo43nFQA=="
  4799. "resolved" "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.4.1.tgz"
  4800. "version" "4.4.1"
  4801. "react-native-screens@>= 3.0.0", "react-native-screens@~3.18.0":
  4802. "integrity" "sha512-ANUEuvMUlsYJ1QKukEhzhfrvOUO9BVH9Nzg+6eWxpn3cfD/O83yPBOF8Mx6x5H/2+sMy+VS5x/chWOOo/U7QJw=="
  4803. "resolved" "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.18.2.tgz"
  4804. "version" "3.18.2"
  4805. dependencies:
  4806. "react-freeze" "^1.0.0"
  4807. "warn-once" "^0.1.0"
  4808. "react-native@*", "react-native@>=0.42.0", "react-native@>=0.48.4", "react-native@>=0.54.0", "react-native@0.70.5":
  4809. "integrity" "sha512-5NZM80LC3L+TIgQX/09yiyy48S73wMgpIgN5cCv3XTMR394+KpDI3rBZGH4aIgWWuwijz31YYVF5504+9n2Zfw=="
  4810. "resolved" "https://registry.npmjs.org/react-native/-/react-native-0.70.5.tgz"
  4811. "version" "0.70.5"
  4812. dependencies:
  4813. "@jest/create-cache-key-function" "^29.0.3"
  4814. "@react-native-community/cli" "9.2.1"
  4815. "@react-native-community/cli-platform-android" "9.2.1"
  4816. "@react-native-community/cli-platform-ios" "9.2.1"
  4817. "@react-native/assets" "1.0.0"
  4818. "@react-native/normalize-color" "2.0.0"
  4819. "@react-native/polyfills" "2.0.0"
  4820. "abort-controller" "^3.0.0"
  4821. "anser" "^1.4.9"
  4822. "base64-js" "^1.1.2"
  4823. "event-target-shim" "^5.0.1"
  4824. "invariant" "^2.2.4"
  4825. "jsc-android" "^250230.2.1"
  4826. "memoize-one" "^5.0.0"
  4827. "metro-react-native-babel-transformer" "0.72.3"
  4828. "metro-runtime" "0.72.3"
  4829. "metro-source-map" "0.72.3"
  4830. "mkdirp" "^0.5.1"
  4831. "nullthrows" "^1.1.1"
  4832. "pretty-format" "^26.5.2"
  4833. "promise" "^8.0.3"
  4834. "react-devtools-core" "4.24.0"
  4835. "react-native-codegen" "^0.70.6"
  4836. "react-native-gradle-plugin" "^0.70.3"
  4837. "react-refresh" "^0.4.0"
  4838. "react-shallow-renderer" "^16.15.0"
  4839. "regenerator-runtime" "^0.13.2"
  4840. "scheduler" "^0.22.0"
  4841. "stacktrace-parser" "^0.1.3"
  4842. "use-sync-external-store" "^1.0.0"
  4843. "whatwg-fetch" "^3.0.0"
  4844. "ws" "^6.1.4"
  4845. "react-pose-core@^0.5.0":
  4846. "integrity" "sha512-vzpeO0G47gDBxTQ2DZMKIbbz3BdEPT6dr3LoaxyZQWaPMBqYNY2hdi0cRLqqy5EWmvqorLY/vl/q3arNGBmUeg=="
  4847. "resolved" "https://registry.npmjs.org/react-pose-core/-/react-pose-core-0.5.0.tgz"
  4848. "version" "0.5.0"
  4849. dependencies:
  4850. "animated-pose" "^1.0.0"
  4851. "hey-listen" "^1.0.5"
  4852. "react-refresh@^0.4.0":
  4853. "integrity" "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA=="
  4854. "resolved" "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz"
  4855. "version" "0.4.3"
  4856. "react-shallow-renderer@^16.15.0":
  4857. "integrity" "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA=="
  4858. "resolved" "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz"
  4859. "version" "16.15.0"
  4860. dependencies:
  4861. "object-assign" "^4.1.1"
  4862. "react-is" "^16.12.0 || ^17.0.0 || ^18.0.0"
  4863. "react@*", "react@^16.0.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@>=17.0.0", "react@18.1.0":
  4864. "integrity" "sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ=="
  4865. "resolved" "https://registry.npmjs.org/react/-/react-18.1.0.tgz"
  4866. "version" "18.1.0"
  4867. dependencies:
  4868. "loose-envify" "^1.1.0"
  4869. "readable-stream@^3.4.0":
  4870. "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="
  4871. "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"
  4872. "version" "3.6.0"
  4873. dependencies:
  4874. "inherits" "^2.0.3"
  4875. "string_decoder" "^1.1.1"
  4876. "util-deprecate" "^1.0.1"
  4877. "readable-stream@~2.3.6":
  4878. "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="
  4879. "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"
  4880. "version" "2.3.7"
  4881. dependencies:
  4882. "core-util-is" "~1.0.0"
  4883. "inherits" "~2.0.3"
  4884. "isarray" "~1.0.0"
  4885. "process-nextick-args" "~2.0.0"
  4886. "safe-buffer" "~5.1.1"
  4887. "string_decoder" "~1.1.1"
  4888. "util-deprecate" "~1.0.1"
  4889. "readline@^1.3.0":
  4890. "integrity" "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg=="
  4891. "resolved" "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz"
  4892. "version" "1.3.0"
  4893. "recast@^0.20.4":
  4894. "integrity" "sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ=="
  4895. "resolved" "https://registry.npmjs.org/recast/-/recast-0.20.5.tgz"
  4896. "version" "0.20.5"
  4897. dependencies:
  4898. "ast-types" "0.14.2"
  4899. "esprima" "~4.0.0"
  4900. "source-map" "~0.6.1"
  4901. "tslib" "^2.0.1"
  4902. "regenerate-unicode-properties@^10.1.0":
  4903. "integrity" "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ=="
  4904. "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz"
  4905. "version" "10.1.0"
  4906. dependencies:
  4907. "regenerate" "^1.4.2"
  4908. "regenerate@^1.4.2":
  4909. "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
  4910. "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"
  4911. "version" "1.4.2"
  4912. "regenerator-runtime@^0.13.10", "regenerator-runtime@^0.13.2":
  4913. "integrity" "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="
  4914. "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz"
  4915. "version" "0.13.10"
  4916. "regenerator-transform@^0.15.0":
  4917. "integrity" "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="
  4918. "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz"
  4919. "version" "0.15.0"
  4920. dependencies:
  4921. "@babel/runtime" "^7.8.4"
  4922. "regex-not@^1.0.0", "regex-not@^1.0.2":
  4923. "integrity" "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="
  4924. "resolved" "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"
  4925. "version" "1.0.2"
  4926. dependencies:
  4927. "extend-shallow" "^3.0.2"
  4928. "safe-regex" "^1.1.0"
  4929. "regexpu-core@^5.1.0":
  4930. "integrity" "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ=="
  4931. "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz"
  4932. "version" "5.2.1"
  4933. dependencies:
  4934. "regenerate" "^1.4.2"
  4935. "regenerate-unicode-properties" "^10.1.0"
  4936. "regjsgen" "^0.7.1"
  4937. "regjsparser" "^0.9.1"
  4938. "unicode-match-property-ecmascript" "^2.0.0"
  4939. "unicode-match-property-value-ecmascript" "^2.0.0"
  4940. "regjsgen@^0.7.1":
  4941. "integrity" "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA=="
  4942. "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz"
  4943. "version" "0.7.1"
  4944. "regjsparser@^0.9.1":
  4945. "integrity" "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ=="
  4946. "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz"
  4947. "version" "0.9.1"
  4948. dependencies:
  4949. "jsesc" "~0.5.0"
  4950. "remove-trailing-slash@^0.1.0":
  4951. "integrity" "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA=="
  4952. "resolved" "https://registry.npmjs.org/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz"
  4953. "version" "0.1.1"
  4954. "repeat-element@^1.1.2":
  4955. "integrity" "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ=="
  4956. "resolved" "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz"
  4957. "version" "1.1.4"
  4958. "repeat-string@^1.6.1":
  4959. "integrity" "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w=="
  4960. "resolved" "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
  4961. "version" "1.6.1"
  4962. "require-directory@^2.1.1":
  4963. "integrity" "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
  4964. "resolved" "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
  4965. "version" "2.1.1"
  4966. "require-from-string@^2.0.2":
  4967. "integrity" "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
  4968. "resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"
  4969. "version" "2.0.2"
  4970. "require-main-filename@^2.0.0":
  4971. "integrity" "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
  4972. "resolved" "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"
  4973. "version" "2.0.0"
  4974. "requireg@^0.2.2":
  4975. "integrity" "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg=="
  4976. "resolved" "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz"
  4977. "version" "0.2.2"
  4978. dependencies:
  4979. "nested-error-stacks" "~2.0.1"
  4980. "rc" "~1.2.7"
  4981. "resolve" "~1.7.1"
  4982. "requires-port@^1.0.0":
  4983. "integrity" "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
  4984. "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"
  4985. "version" "1.0.0"
  4986. "reselect@^4.0.0":
  4987. "integrity" "sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A=="
  4988. "resolved" "https://registry.npmjs.org/reselect/-/reselect-4.1.7.tgz"
  4989. "version" "4.1.7"
  4990. "resolve-from@^3.0.0":
  4991. "integrity" "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw=="
  4992. "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz"
  4993. "version" "3.0.0"
  4994. "resolve-from@^5.0.0":
  4995. "integrity" "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="
  4996. "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
  4997. "version" "5.0.0"
  4998. "resolve-url@^0.2.1":
  4999. "integrity" "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="
  5000. "resolved" "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"
  5001. "version" "0.2.1"
  5002. "resolve@^1.13.1", "resolve@^1.14.2":
  5003. "integrity" "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="
  5004. "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"
  5005. "version" "1.22.1"
  5006. dependencies:
  5007. "is-core-module" "^2.9.0"
  5008. "path-parse" "^1.0.7"
  5009. "supports-preserve-symlinks-flag" "^1.0.0"
  5010. "resolve@~1.7.1":
  5011. "integrity" "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw=="
  5012. "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz"
  5013. "version" "1.7.1"
  5014. dependencies:
  5015. "path-parse" "^1.0.5"
  5016. "resolve@1.12.0":
  5017. "integrity" "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w=="
  5018. "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz"
  5019. "version" "1.12.0"
  5020. dependencies:
  5021. "path-parse" "^1.0.6"
  5022. "restore-cursor@^2.0.0":
  5023. "integrity" "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q=="
  5024. "resolved" "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"
  5025. "version" "2.0.0"
  5026. dependencies:
  5027. "onetime" "^2.0.0"
  5028. "signal-exit" "^3.0.2"
  5029. "restore-cursor@^3.1.0":
  5030. "integrity" "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA=="
  5031. "resolved" "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"
  5032. "version" "3.1.0"
  5033. dependencies:
  5034. "onetime" "^5.1.0"
  5035. "signal-exit" "^3.0.2"
  5036. "ret@~0.1.10":
  5037. "integrity" "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
  5038. "resolved" "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"
  5039. "version" "0.1.15"
  5040. "reusify@^1.0.4":
  5041. "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
  5042. "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
  5043. "version" "1.0.4"
  5044. "rimraf@^2.5.4", "rimraf@^2.6.2":
  5045. "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="
  5046. "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"
  5047. "version" "2.7.1"
  5048. dependencies:
  5049. "glob" "^7.1.3"
  5050. "rimraf@^3.0.2":
  5051. "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="
  5052. "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
  5053. "version" "3.0.2"
  5054. dependencies:
  5055. "glob" "^7.1.3"
  5056. "rimraf@~2.2.6":
  5057. "integrity" "sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg=="
  5058. "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"
  5059. "version" "2.2.8"
  5060. "rimraf@~2.4.0":
  5061. "integrity" "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ=="
  5062. "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"
  5063. "version" "2.4.5"
  5064. dependencies:
  5065. "glob" "^6.0.1"
  5066. "rimraf@~2.6.2":
  5067. "integrity" "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="
  5068. "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"
  5069. "version" "2.6.3"
  5070. dependencies:
  5071. "glob" "^7.1.3"
  5072. "rollup-plugin-typescript2@^0.25.2":
  5073. "integrity" "sha512-ADkSaidKBovJmf5VBnZBZe+WzaZwofuvYdzGAKTN/J4hN7QJCFYAq7IrH9caxlru6T5qhX41PNFS1S4HqhsGQg=="
  5074. "resolved" "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.25.3.tgz"
  5075. "version" "0.25.3"
  5076. dependencies:
  5077. "find-cache-dir" "^3.0.0"
  5078. "fs-extra" "8.1.0"
  5079. "resolve" "1.12.0"
  5080. "rollup-pluginutils" "2.8.1"
  5081. "tslib" "1.10.0"
  5082. "rollup-pluginutils@2.8.1":
  5083. "integrity" "sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg=="
  5084. "resolved" "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz"
  5085. "version" "2.8.1"
  5086. dependencies:
  5087. "estree-walker" "^0.6.1"
  5088. "rollup@>=1.26.3":
  5089. "integrity" "sha512-wqOV/vUJCYEbWsXvwCkgGWvgaEnsbn4jxBQWKpN816CqsmCimDmCNJI83c6if7QVD4v/zlyRzxN7U2yDT5rfoA=="
  5090. "resolved" "https://registry.npmjs.org/rollup/-/rollup-3.3.0.tgz"
  5091. "version" "3.3.0"
  5092. optionalDependencies:
  5093. "fsevents" "~2.3.2"
  5094. "run-parallel@^1.1.9":
  5095. "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="
  5096. "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
  5097. "version" "1.2.0"
  5098. dependencies:
  5099. "queue-microtask" "^1.2.2"
  5100. "safe-buffer@~5.1.0", "safe-buffer@~5.1.1", "safe-buffer@5.1.2":
  5101. "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
  5102. "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
  5103. "version" "5.1.2"
  5104. "safe-json-stringify@~1":
  5105. "integrity" "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg=="
  5106. "resolved" "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"
  5107. "version" "1.2.0"
  5108. "safe-regex@^1.1.0":
  5109. "integrity" "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg=="
  5110. "resolved" "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"
  5111. "version" "1.1.0"
  5112. dependencies:
  5113. "ret" "~0.1.10"
  5114. "safer-buffer@>= 2.1.2 < 3":
  5115. "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
  5116. "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
  5117. "version" "2.1.2"
  5118. "sax@>=0.6.0":
  5119. "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
  5120. "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"
  5121. "version" "1.2.4"
  5122. "scheduler@^0.22.0":
  5123. "integrity" "sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ=="
  5124. "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.22.0.tgz"
  5125. "version" "0.22.0"
  5126. dependencies:
  5127. "loose-envify" "^1.1.0"
  5128. "semver@^5.5.0":
  5129. "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
  5130. "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
  5131. "version" "5.7.1"
  5132. "semver@^5.6.0":
  5133. "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
  5134. "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
  5135. "version" "5.7.1"
  5136. "semver@^6.0.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.3.0":
  5137. "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
  5138. "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
  5139. "version" "6.3.0"
  5140. "semver@^7.3.5":
  5141. "integrity" "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="
  5142. "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
  5143. "version" "7.3.8"
  5144. dependencies:
  5145. "lru-cache" "^6.0.0"
  5146. "semver@7.3.2":
  5147. "integrity" "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="
  5148. "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"
  5149. "version" "7.3.2"
  5150. "send@^0.18.0", "send@0.18.0":
  5151. "integrity" "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg=="
  5152. "resolved" "https://registry.npmjs.org/send/-/send-0.18.0.tgz"
  5153. "version" "0.18.0"
  5154. dependencies:
  5155. "debug" "2.6.9"
  5156. "depd" "2.0.0"
  5157. "destroy" "1.2.0"
  5158. "encodeurl" "~1.0.2"
  5159. "escape-html" "~1.0.3"
  5160. "etag" "~1.8.1"
  5161. "fresh" "0.5.2"
  5162. "http-errors" "2.0.0"
  5163. "mime" "1.6.0"
  5164. "ms" "2.1.3"
  5165. "on-finished" "2.4.1"
  5166. "range-parser" "~1.2.1"
  5167. "statuses" "2.0.1"
  5168. "serialize-error@^2.1.0":
  5169. "integrity" "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw=="
  5170. "resolved" "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz"
  5171. "version" "2.1.0"
  5172. "serialize-error@6.0.0":
  5173. "integrity" "sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA=="
  5174. "resolved" "https://registry.npmjs.org/serialize-error/-/serialize-error-6.0.0.tgz"
  5175. "version" "6.0.0"
  5176. dependencies:
  5177. "type-fest" "^0.12.0"
  5178. "serve-static@^1.13.1":
  5179. "integrity" "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g=="
  5180. "resolved" "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz"
  5181. "version" "1.15.0"
  5182. dependencies:
  5183. "encodeurl" "~1.0.2"
  5184. "escape-html" "~1.0.3"
  5185. "parseurl" "~1.3.3"
  5186. "send" "0.18.0"
  5187. "set-blocking@^2.0.0":
  5188. "integrity" "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
  5189. "resolved" "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
  5190. "version" "2.0.0"
  5191. "set-value@^2.0.0", "set-value@^2.0.1":
  5192. "integrity" "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw=="
  5193. "resolved" "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"
  5194. "version" "2.0.1"
  5195. dependencies:
  5196. "extend-shallow" "^2.0.1"
  5197. "is-extendable" "^0.1.1"
  5198. "is-plain-object" "^2.0.3"
  5199. "split-string" "^3.0.1"
  5200. "setimmediate@^1.0.5":
  5201. "integrity" "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="
  5202. "resolved" "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz"
  5203. "version" "1.0.5"
  5204. "setprototypeof@1.1.1":
  5205. "integrity" "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
  5206. "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"
  5207. "version" "1.1.1"
  5208. "setprototypeof@1.2.0":
  5209. "integrity" "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
  5210. "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz"
  5211. "version" "1.2.0"
  5212. "shallow-clone@^3.0.0":
  5213. "integrity" "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA=="
  5214. "resolved" "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz"
  5215. "version" "3.0.1"
  5216. dependencies:
  5217. "kind-of" "^6.0.2"
  5218. "shebang-command@^1.2.0":
  5219. "integrity" "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg=="
  5220. "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
  5221. "version" "1.2.0"
  5222. dependencies:
  5223. "shebang-regex" "^1.0.0"
  5224. "shebang-regex@^1.0.0":
  5225. "integrity" "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ=="
  5226. "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
  5227. "version" "1.0.0"
  5228. "shell-quote@^1.6.1", "shell-quote@^1.7.3":
  5229. "integrity" "sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw=="
  5230. "resolved" "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.4.tgz"
  5231. "version" "1.7.4"
  5232. "signal-exit@^3.0.0", "signal-exit@^3.0.2":
  5233. "integrity" "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
  5234. "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"
  5235. "version" "3.0.7"
  5236. "simple-plist@^1.1.0":
  5237. "integrity" "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw=="
  5238. "resolved" "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz"
  5239. "version" "1.3.1"
  5240. dependencies:
  5241. "bplist-creator" "0.1.0"
  5242. "bplist-parser" "0.3.1"
  5243. "plist" "^3.0.5"
  5244. "simple-swizzle@^0.2.2":
  5245. "integrity" "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg=="
  5246. "resolved" "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz"
  5247. "version" "0.2.2"
  5248. dependencies:
  5249. "is-arrayish" "^0.3.1"
  5250. "sisteransi@^1.0.5":
  5251. "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
  5252. "resolved" "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz"
  5253. "version" "1.0.5"
  5254. "slash@^3.0.0":
  5255. "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
  5256. "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
  5257. "version" "3.0.0"
  5258. "slice-ansi@^2.0.0":
  5259. "integrity" "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ=="
  5260. "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"
  5261. "version" "2.1.0"
  5262. dependencies:
  5263. "ansi-styles" "^3.2.0"
  5264. "astral-regex" "^1.0.0"
  5265. "is-fullwidth-code-point" "^2.0.0"
  5266. "slugify@^1.3.4":
  5267. "integrity" "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ=="
  5268. "resolved" "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz"
  5269. "version" "1.6.5"
  5270. "snapdragon-node@^2.0.1":
  5271. "integrity" "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="
  5272. "resolved" "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"
  5273. "version" "2.1.1"
  5274. dependencies:
  5275. "define-property" "^1.0.0"
  5276. "isobject" "^3.0.0"
  5277. "snapdragon-util" "^3.0.1"
  5278. "snapdragon-util@^3.0.1":
  5279. "integrity" "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="
  5280. "resolved" "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"
  5281. "version" "3.0.1"
  5282. dependencies:
  5283. "kind-of" "^3.2.0"
  5284. "snapdragon@^0.8.1":
  5285. "integrity" "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="
  5286. "resolved" "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"
  5287. "version" "0.8.2"
  5288. dependencies:
  5289. "base" "^0.11.1"
  5290. "debug" "^2.2.0"
  5291. "define-property" "^0.2.5"
  5292. "extend-shallow" "^2.0.1"
  5293. "map-cache" "^0.2.2"
  5294. "source-map" "^0.5.6"
  5295. "source-map-resolve" "^0.5.0"
  5296. "use" "^3.1.0"
  5297. "source-map-resolve@^0.5.0":
  5298. "integrity" "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw=="
  5299. "resolved" "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"
  5300. "version" "0.5.3"
  5301. dependencies:
  5302. "atob" "^2.1.2"
  5303. "decode-uri-component" "^0.2.0"
  5304. "resolve-url" "^0.2.1"
  5305. "source-map-url" "^0.4.0"
  5306. "urix" "^0.1.0"
  5307. "source-map-support@^0.5.16":
  5308. "integrity" "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="
  5309. "resolved" "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz"
  5310. "version" "0.5.21"
  5311. dependencies:
  5312. "buffer-from" "^1.0.0"
  5313. "source-map" "^0.6.0"
  5314. "source-map-url@^0.4.0":
  5315. "integrity" "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw=="
  5316. "resolved" "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"
  5317. "version" "0.4.1"
  5318. "source-map@^0.5.6":
  5319. "integrity" "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ=="
  5320. "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
  5321. "version" "0.5.7"
  5322. "source-map@^0.6.0":
  5323. "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
  5324. "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
  5325. "version" "0.6.1"
  5326. "source-map@^0.7.3":
  5327. "integrity" "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="
  5328. "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz"
  5329. "version" "0.7.4"
  5330. "source-map@~0.6.1":
  5331. "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
  5332. "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
  5333. "version" "0.6.1"
  5334. "split-on-first@^1.0.0":
  5335. "integrity" "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="
  5336. "resolved" "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz"
  5337. "version" "1.1.0"
  5338. "split-string@^3.0.1", "split-string@^3.0.2":
  5339. "integrity" "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="
  5340. "resolved" "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"
  5341. "version" "3.1.0"
  5342. dependencies:
  5343. "extend-shallow" "^3.0.0"
  5344. "split@^1.0.1":
  5345. "integrity" "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="
  5346. "resolved" "https://registry.npmjs.org/split/-/split-1.0.1.tgz"
  5347. "version" "1.0.1"
  5348. dependencies:
  5349. "through" "2"
  5350. "sprintf-js@~1.0.2":
  5351. "integrity" "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
  5352. "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
  5353. "version" "1.0.3"
  5354. "ssri@^8.0.1":
  5355. "integrity" "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ=="
  5356. "resolved" "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz"
  5357. "version" "8.0.1"
  5358. dependencies:
  5359. "minipass" "^3.1.1"
  5360. "stackframe@^1.3.4":
  5361. "integrity" "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw=="
  5362. "resolved" "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz"
  5363. "version" "1.3.4"
  5364. "stacktrace-parser@^0.1.3":
  5365. "integrity" "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg=="
  5366. "resolved" "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz"
  5367. "version" "0.1.10"
  5368. dependencies:
  5369. "type-fest" "^0.7.1"
  5370. "static-extend@^0.1.1":
  5371. "integrity" "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g=="
  5372. "resolved" "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"
  5373. "version" "0.1.2"
  5374. dependencies:
  5375. "define-property" "^0.2.5"
  5376. "object-copy" "^0.1.0"
  5377. "statuses@>= 1.5.0 < 2", "statuses@~1.5.0":
  5378. "integrity" "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="
  5379. "resolved" "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"
  5380. "version" "1.5.0"
  5381. "statuses@2.0.1":
  5382. "integrity" "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="
  5383. "resolved" "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"
  5384. "version" "2.0.1"
  5385. "stream-buffers@2.2.x":
  5386. "integrity" "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg=="
  5387. "resolved" "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz"
  5388. "version" "2.2.0"
  5389. "strict-uri-encode@^2.0.0":
  5390. "integrity" "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ=="
  5391. "resolved" "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"
  5392. "version" "2.0.0"
  5393. "string_decoder@^1.1.1", "string_decoder@~1.1.1":
  5394. "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="
  5395. "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
  5396. "version" "1.1.1"
  5397. dependencies:
  5398. "safe-buffer" "~5.1.0"
  5399. "string-width@^4.1.0", "string-width@^4.2.0":
  5400. "integrity" "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="
  5401. "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
  5402. "version" "4.2.3"
  5403. dependencies:
  5404. "emoji-regex" "^8.0.0"
  5405. "is-fullwidth-code-point" "^3.0.0"
  5406. "strip-ansi" "^6.0.1"
  5407. "strip-ansi@^5.0.0", "strip-ansi@^5.2.0":
  5408. "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="
  5409. "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
  5410. "version" "5.2.0"
  5411. dependencies:
  5412. "ansi-regex" "^4.1.0"
  5413. "strip-ansi@^6.0.0":
  5414. "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="
  5415. "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
  5416. "version" "6.0.1"
  5417. dependencies:
  5418. "ansi-regex" "^5.0.1"
  5419. "strip-ansi@^6.0.1":
  5420. "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="
  5421. "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
  5422. "version" "6.0.1"
  5423. dependencies:
  5424. "ansi-regex" "^5.0.1"
  5425. "strip-eof@^1.0.0":
  5426. "integrity" "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q=="
  5427. "resolved" "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
  5428. "version" "1.0.0"
  5429. "strip-json-comments@~2.0.1":
  5430. "integrity" "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="
  5431. "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"
  5432. "version" "2.0.1"
  5433. "structured-headers@^0.4.1":
  5434. "integrity" "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg=="
  5435. "resolved" "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz"
  5436. "version" "0.4.1"
  5437. "sucrase@^3.20.0":
  5438. "integrity" "sha512-TK9600YInjuiIhVM3729rH4ZKPOsGeyXUwY+Ugu9eilNbdTFyHr6XcAGYbRVZPDgWj6tgI7bx95aaJjHnbffag=="
  5439. "resolved" "https://registry.npmjs.org/sucrase/-/sucrase-3.28.0.tgz"
  5440. "version" "3.28.0"
  5441. dependencies:
  5442. "commander" "^4.0.0"
  5443. "glob" "7.1.6"
  5444. "lines-and-columns" "^1.1.6"
  5445. "mz" "^2.7.0"
  5446. "pirates" "^4.0.1"
  5447. "ts-interface-checker" "^0.1.9"
  5448. "sudo-prompt@^8.2.0":
  5449. "integrity" "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw=="
  5450. "resolved" "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz"
  5451. "version" "8.2.5"
  5452. "sudo-prompt@^9.0.0":
  5453. "integrity" "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw=="
  5454. "resolved" "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz"
  5455. "version" "9.2.1"
  5456. "sudo-prompt@9.1.1":
  5457. "integrity" "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA=="
  5458. "resolved" "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz"
  5459. "version" "9.1.1"
  5460. "supports-color@^5.3.0":
  5461. "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="
  5462. "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
  5463. "version" "5.5.0"
  5464. dependencies:
  5465. "has-flag" "^3.0.0"
  5466. "supports-color@^7.0.0":
  5467. "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
  5468. "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
  5469. "version" "7.2.0"
  5470. dependencies:
  5471. "has-flag" "^4.0.0"
  5472. "supports-color@^7.1.0":
  5473. "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
  5474. "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
  5475. "version" "7.2.0"
  5476. dependencies:
  5477. "has-flag" "^4.0.0"
  5478. "supports-color@^8.0.0":
  5479. "integrity" "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="
  5480. "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"
  5481. "version" "8.1.1"
  5482. dependencies:
  5483. "has-flag" "^4.0.0"
  5484. "supports-hyperlinks@^2.0.0":
  5485. "integrity" "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA=="
  5486. "resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz"
  5487. "version" "2.3.0"
  5488. dependencies:
  5489. "has-flag" "^4.0.0"
  5490. "supports-color" "^7.0.0"
  5491. "supports-preserve-symlinks-flag@^1.0.0":
  5492. "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
  5493. "resolved" "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
  5494. "version" "1.0.0"
  5495. "tar@^6.0.2", "tar@^6.0.5":
  5496. "integrity" "sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw=="
  5497. "resolved" "https://registry.npmjs.org/tar/-/tar-6.1.12.tgz"
  5498. "version" "6.1.12"
  5499. dependencies:
  5500. "chownr" "^2.0.0"
  5501. "fs-minipass" "^2.0.0"
  5502. "minipass" "^3.0.0"
  5503. "minizlib" "^2.1.1"
  5504. "mkdirp" "^1.0.3"
  5505. "yallist" "^4.0.0"
  5506. "temp-dir@^1.0.0":
  5507. "integrity" "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ=="
  5508. "resolved" "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"
  5509. "version" "1.0.0"
  5510. "temp-dir@^2.0.0":
  5511. "integrity" "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg=="
  5512. "resolved" "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz"
  5513. "version" "2.0.0"
  5514. "temp@^0.8.4":
  5515. "integrity" "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg=="
  5516. "resolved" "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz"
  5517. "version" "0.8.4"
  5518. dependencies:
  5519. "rimraf" "~2.6.2"
  5520. "temp@0.8.3":
  5521. "integrity" "sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw=="
  5522. "resolved" "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz"
  5523. "version" "0.8.3"
  5524. dependencies:
  5525. "os-tmpdir" "^1.0.0"
  5526. "rimraf" "~2.2.6"
  5527. "tempy@^0.7.1":
  5528. "integrity" "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg=="
  5529. "resolved" "https://registry.npmjs.org/tempy/-/tempy-0.7.1.tgz"
  5530. "version" "0.7.1"
  5531. dependencies:
  5532. "del" "^6.0.0"
  5533. "is-stream" "^2.0.0"
  5534. "temp-dir" "^2.0.0"
  5535. "type-fest" "^0.16.0"
  5536. "unique-string" "^2.0.0"
  5537. "tempy@0.3.0":
  5538. "integrity" "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ=="
  5539. "resolved" "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz"
  5540. "version" "0.3.0"
  5541. dependencies:
  5542. "temp-dir" "^1.0.0"
  5543. "type-fest" "^0.3.1"
  5544. "unique-string" "^1.0.0"
  5545. "terminal-link@^2.1.1":
  5546. "integrity" "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="
  5547. "resolved" "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz"
  5548. "version" "2.1.1"
  5549. dependencies:
  5550. "ansi-escapes" "^4.2.1"
  5551. "supports-hyperlinks" "^2.0.0"
  5552. "text-table@^0.2.0":
  5553. "integrity" "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
  5554. "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
  5555. "version" "0.2.0"
  5556. "thenify-all@^1.0.0":
  5557. "integrity" "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA=="
  5558. "resolved" "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz"
  5559. "version" "1.6.0"
  5560. dependencies:
  5561. "thenify" ">= 3.1.0 < 4"
  5562. "thenify@>= 3.1.0 < 4":
  5563. "integrity" "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw=="
  5564. "resolved" "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz"
  5565. "version" "3.3.1"
  5566. dependencies:
  5567. "any-promise" "^1.0.0"
  5568. "throat@^5.0.0":
  5569. "integrity" "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA=="
  5570. "resolved" "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz"
  5571. "version" "5.0.0"
  5572. "through@2":
  5573. "integrity" "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
  5574. "resolved" "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
  5575. "version" "2.3.8"
  5576. "through2@^2.0.1":
  5577. "integrity" "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="
  5578. "resolved" "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"
  5579. "version" "2.0.5"
  5580. dependencies:
  5581. "readable-stream" "~2.3.6"
  5582. "xtend" "~4.0.1"
  5583. "tmp@^0.0.33":
  5584. "integrity" "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="
  5585. "resolved" "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"
  5586. "version" "0.0.33"
  5587. dependencies:
  5588. "os-tmpdir" "~1.0.2"
  5589. "tmpl@1.0.5":
  5590. "integrity" "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="
  5591. "resolved" "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz"
  5592. "version" "1.0.5"
  5593. "to-fast-properties@^2.0.0":
  5594. "integrity" "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="
  5595. "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
  5596. "version" "2.0.0"
  5597. "to-object-path@^0.3.0":
  5598. "integrity" "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg=="
  5599. "resolved" "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"
  5600. "version" "0.3.0"
  5601. dependencies:
  5602. "kind-of" "^3.0.2"
  5603. "to-regex-range@^2.1.0":
  5604. "integrity" "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg=="
  5605. "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"
  5606. "version" "2.1.1"
  5607. dependencies:
  5608. "is-number" "^3.0.0"
  5609. "repeat-string" "^1.6.1"
  5610. "to-regex-range@^5.0.1":
  5611. "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="
  5612. "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
  5613. "version" "5.0.1"
  5614. dependencies:
  5615. "is-number" "^7.0.0"
  5616. "to-regex@^3.0.1", "to-regex@^3.0.2":
  5617. "integrity" "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="
  5618. "resolved" "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"
  5619. "version" "3.0.2"
  5620. dependencies:
  5621. "define-property" "^2.0.2"
  5622. "extend-shallow" "^3.0.2"
  5623. "regex-not" "^1.0.2"
  5624. "safe-regex" "^1.1.0"
  5625. "toidentifier@1.0.0":
  5626. "integrity" "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
  5627. "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"
  5628. "version" "1.0.0"
  5629. "toidentifier@1.0.1":
  5630. "integrity" "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="
  5631. "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz"
  5632. "version" "1.0.1"
  5633. "tr46@~0.0.3":
  5634. "integrity" "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
  5635. "resolved" "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
  5636. "version" "0.0.3"
  5637. "traverse@~0.6.6":
  5638. "integrity" "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg=="
  5639. "resolved" "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz"
  5640. "version" "0.6.7"
  5641. "ts-interface-checker@^0.1.9":
  5642. "integrity" "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
  5643. "resolved" "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz"
  5644. "version" "0.1.13"
  5645. "tslib@^1.10.0":
  5646. "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
  5647. "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
  5648. "version" "1.14.1"
  5649. "tslib@^2.0.1", "tslib@^2.1.0", "tslib@^2.4.0":
  5650. "integrity" "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA=="
  5651. "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz"
  5652. "version" "2.4.1"
  5653. "tslib@1.10.0":
  5654. "integrity" "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
  5655. "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz"
  5656. "version" "1.10.0"
  5657. "type-fest@^0.12.0":
  5658. "integrity" "sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg=="
  5659. "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.12.0.tgz"
  5660. "version" "0.12.0"
  5661. "type-fest@^0.16.0":
  5662. "integrity" "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg=="
  5663. "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz"
  5664. "version" "0.16.0"
  5665. "type-fest@^0.21.3":
  5666. "integrity" "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
  5667. "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
  5668. "version" "0.21.3"
  5669. "type-fest@^0.3.1":
  5670. "integrity" "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ=="
  5671. "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz"
  5672. "version" "0.3.1"
  5673. "type-fest@^0.7.1":
  5674. "integrity" "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg=="
  5675. "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz"
  5676. "version" "0.7.1"
  5677. "type-is@~1.6.17":
  5678. "integrity" "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="
  5679. "resolved" "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"
  5680. "version" "1.6.18"
  5681. dependencies:
  5682. "media-typer" "0.3.0"
  5683. "mime-types" "~2.1.24"
  5684. "typescript@^3.7.2", "typescript@>=2.4.0":
  5685. "integrity" "sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q=="
  5686. "resolved" "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz"
  5687. "version" "3.9.10"
  5688. "ua-parser-js@^0.7.30":
  5689. "integrity" "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw=="
  5690. "resolved" "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz"
  5691. "version" "0.7.32"
  5692. "uglify-es@^3.1.9":
  5693. "integrity" "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ=="
  5694. "resolved" "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz"
  5695. "version" "3.3.9"
  5696. dependencies:
  5697. "commander" "~2.13.0"
  5698. "source-map" "~0.6.1"
  5699. "unicode-canonical-property-names-ecmascript@^2.0.0":
  5700. "integrity" "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="
  5701. "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"
  5702. "version" "2.0.0"
  5703. "unicode-match-property-ecmascript@^2.0.0":
  5704. "integrity" "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="
  5705. "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"
  5706. "version" "2.0.0"
  5707. dependencies:
  5708. "unicode-canonical-property-names-ecmascript" "^2.0.0"
  5709. "unicode-property-aliases-ecmascript" "^2.0.0"
  5710. "unicode-match-property-value-ecmascript@^2.0.0":
  5711. "integrity" "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="
  5712. "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"
  5713. "version" "2.0.0"
  5714. "unicode-property-aliases-ecmascript@^2.0.0":
  5715. "integrity" "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="
  5716. "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz"
  5717. "version" "2.1.0"
  5718. "union-value@^1.0.0":
  5719. "integrity" "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg=="
  5720. "resolved" "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"
  5721. "version" "1.0.1"
  5722. dependencies:
  5723. "arr-union" "^3.1.0"
  5724. "get-value" "^2.0.6"
  5725. "is-extendable" "^0.1.1"
  5726. "set-value" "^2.0.1"
  5727. "unique-filename@^1.1.1":
  5728. "integrity" "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ=="
  5729. "resolved" "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz"
  5730. "version" "1.1.1"
  5731. dependencies:
  5732. "unique-slug" "^2.0.0"
  5733. "unique-slug@^2.0.0":
  5734. "integrity" "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w=="
  5735. "resolved" "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz"
  5736. "version" "2.0.2"
  5737. dependencies:
  5738. "imurmurhash" "^0.1.4"
  5739. "unique-string@^1.0.0":
  5740. "integrity" "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg=="
  5741. "resolved" "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"
  5742. "version" "1.0.0"
  5743. dependencies:
  5744. "crypto-random-string" "^1.0.0"
  5745. "unique-string@^2.0.0":
  5746. "integrity" "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg=="
  5747. "resolved" "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz"
  5748. "version" "2.0.0"
  5749. dependencies:
  5750. "crypto-random-string" "^2.0.0"
  5751. "universalify@^0.1.0":
  5752. "integrity" "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="
  5753. "resolved" "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"
  5754. "version" "0.1.2"
  5755. "universalify@^1.0.0":
  5756. "integrity" "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug=="
  5757. "resolved" "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz"
  5758. "version" "1.0.0"
  5759. "universalify@^2.0.0":
  5760. "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="
  5761. "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"
  5762. "version" "2.0.0"
  5763. "unpipe@~1.0.0", "unpipe@1.0.0":
  5764. "integrity" "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
  5765. "resolved" "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
  5766. "version" "1.0.0"
  5767. "unset-value@^1.0.0":
  5768. "integrity" "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ=="
  5769. "resolved" "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"
  5770. "version" "1.0.0"
  5771. dependencies:
  5772. "has-value" "^0.3.1"
  5773. "isobject" "^3.0.0"
  5774. "update-browserslist-db@^1.0.9":
  5775. "integrity" "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="
  5776. "resolved" "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"
  5777. "version" "1.0.10"
  5778. dependencies:
  5779. "escalade" "^3.1.1"
  5780. "picocolors" "^1.0.0"
  5781. "urix@^0.1.0":
  5782. "integrity" "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg=="
  5783. "resolved" "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"
  5784. "version" "0.1.0"
  5785. "url-join@4.0.0":
  5786. "integrity" "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA=="
  5787. "resolved" "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz"
  5788. "version" "4.0.0"
  5789. "url-parse@^1.5.9":
  5790. "integrity" "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ=="
  5791. "resolved" "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz"
  5792. "version" "1.5.10"
  5793. dependencies:
  5794. "querystringify" "^2.1.1"
  5795. "requires-port" "^1.0.0"
  5796. "use-latest-callback@^0.1.5":
  5797. "integrity" "sha512-HtHatS2U4/h32NlkhupDsPlrbiD27gSH5swBdtXbCAlc6pfOFzaj0FehW/FO12rx8j2Vy4/lJScCiJyM01E+bQ=="
  5798. "resolved" "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.5.tgz"
  5799. "version" "0.1.5"
  5800. "use-sync-external-store@^1.0.0":
  5801. "integrity" "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA=="
  5802. "resolved" "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz"
  5803. "version" "1.2.0"
  5804. "use@^3.1.0":
  5805. "integrity" "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="
  5806. "resolved" "https://registry.npmjs.org/use/-/use-3.1.1.tgz"
  5807. "version" "3.1.1"
  5808. "util-deprecate@^1.0.1", "util-deprecate@~1.0.1":
  5809. "integrity" "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
  5810. "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
  5811. "version" "1.0.2"
  5812. "utils-merge@1.0.1":
  5813. "integrity" "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="
  5814. "resolved" "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
  5815. "version" "1.0.1"
  5816. "uuid@^3.3.2", "uuid@^3.4.0":
  5817. "integrity" "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
  5818. "resolved" "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
  5819. "version" "3.4.0"
  5820. "uuid@^7.0.3":
  5821. "integrity" "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg=="
  5822. "resolved" "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz"
  5823. "version" "7.0.3"
  5824. "uuid@^8.0.0":
  5825. "integrity" "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
  5826. "resolved" "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
  5827. "version" "8.3.2"
  5828. "uuid@^8.3.2":
  5829. "integrity" "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
  5830. "resolved" "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
  5831. "version" "8.3.2"
  5832. "valid-url@~1.0.9":
  5833. "integrity" "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA=="
  5834. "resolved" "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz"
  5835. "version" "1.0.9"
  5836. "validate-npm-package-name@^3.0.0":
  5837. "integrity" "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw=="
  5838. "resolved" "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz"
  5839. "version" "3.0.0"
  5840. dependencies:
  5841. "builtins" "^1.0.3"
  5842. "vary@~1.1.2":
  5843. "integrity" "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="
  5844. "resolved" "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"
  5845. "version" "1.1.2"
  5846. "vlq@^1.0.0":
  5847. "integrity" "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w=="
  5848. "resolved" "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz"
  5849. "version" "1.0.1"
  5850. "walker@^1.0.7":
  5851. "integrity" "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="
  5852. "resolved" "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz"
  5853. "version" "1.0.8"
  5854. dependencies:
  5855. "makeerror" "1.0.12"
  5856. "warn-once@^0.1.0":
  5857. "integrity" "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q=="
  5858. "resolved" "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz"
  5859. "version" "0.1.1"
  5860. "wcwidth@^1.0.1":
  5861. "integrity" "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="
  5862. "resolved" "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"
  5863. "version" "1.0.1"
  5864. dependencies:
  5865. "defaults" "^1.0.3"
  5866. "webidl-conversions@^3.0.0":
  5867. "integrity" "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
  5868. "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
  5869. "version" "3.0.1"
  5870. "whatwg-fetch@^3.0.0":
  5871. "integrity" "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA=="
  5872. "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"
  5873. "version" "3.6.2"
  5874. "whatwg-url@^5.0.0":
  5875. "integrity" "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="
  5876. "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
  5877. "version" "5.0.0"
  5878. dependencies:
  5879. "tr46" "~0.0.3"
  5880. "webidl-conversions" "^3.0.0"
  5881. "which-module@^2.0.0":
  5882. "integrity" "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q=="
  5883. "resolved" "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"
  5884. "version" "2.0.0"
  5885. "which@^1.2.9":
  5886. "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="
  5887. "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
  5888. "version" "1.3.1"
  5889. dependencies:
  5890. "isexe" "^2.0.0"
  5891. "wonka@^4.0.14":
  5892. "integrity" "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg=="
  5893. "resolved" "https://registry.npmjs.org/wonka/-/wonka-4.0.15.tgz"
  5894. "version" "4.0.15"
  5895. "wrap-ansi@^6.2.0":
  5896. "integrity" "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="
  5897. "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"
  5898. "version" "6.2.0"
  5899. dependencies:
  5900. "ansi-styles" "^4.0.0"
  5901. "string-width" "^4.1.0"
  5902. "strip-ansi" "^6.0.0"
  5903. "wrap-ansi@^7.0.0":
  5904. "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="
  5905. "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
  5906. "version" "7.0.0"
  5907. dependencies:
  5908. "ansi-styles" "^4.0.0"
  5909. "string-width" "^4.1.0"
  5910. "strip-ansi" "^6.0.0"
  5911. "wrappy@1":
  5912. "integrity" "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
  5913. "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
  5914. "version" "1.0.2"
  5915. "write-file-atomic@^2.3.0":
  5916. "integrity" "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ=="
  5917. "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz"
  5918. "version" "2.4.3"
  5919. dependencies:
  5920. "graceful-fs" "^4.1.11"
  5921. "imurmurhash" "^0.1.4"
  5922. "signal-exit" "^3.0.2"
  5923. "ws@^6.1.4":
  5924. "integrity" "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw=="
  5925. "resolved" "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz"
  5926. "version" "6.2.2"
  5927. dependencies:
  5928. "async-limiter" "~1.0.0"
  5929. "ws@^7.5.1":
  5930. "integrity" "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q=="
  5931. "resolved" "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz"
  5932. "version" "7.5.9"
  5933. "ws@^7":
  5934. "integrity" "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q=="
  5935. "resolved" "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz"
  5936. "version" "7.5.9"
  5937. "xcode@^3.0.1":
  5938. "integrity" "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA=="
  5939. "resolved" "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz"
  5940. "version" "3.0.1"
  5941. dependencies:
  5942. "simple-plist" "^1.1.0"
  5943. "uuid" "^7.0.3"
  5944. "xml2js@0.4.23":
  5945. "integrity" "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug=="
  5946. "resolved" "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz"
  5947. "version" "0.4.23"
  5948. dependencies:
  5949. "sax" ">=0.6.0"
  5950. "xmlbuilder" "~11.0.0"
  5951. "xmlbuilder@^14.0.0":
  5952. "integrity" "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg=="
  5953. "resolved" "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-14.0.0.tgz"
  5954. "version" "14.0.0"
  5955. "xmlbuilder@^15.1.1":
  5956. "integrity" "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg=="
  5957. "resolved" "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz"
  5958. "version" "15.1.1"
  5959. "xmlbuilder@~11.0.0":
  5960. "integrity" "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA=="
  5961. "resolved" "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz"
  5962. "version" "11.0.1"
  5963. "xtend@~4.0.1":
  5964. "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
  5965. "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
  5966. "version" "4.0.2"
  5967. "y18n@^4.0.0":
  5968. "integrity" "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
  5969. "resolved" "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"
  5970. "version" "4.0.3"
  5971. "yallist@^4.0.0":
  5972. "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
  5973. "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
  5974. "version" "4.0.0"
  5975. "yargs-parser@^18.1.2":
  5976. "integrity" "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="
  5977. "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"
  5978. "version" "18.1.3"
  5979. dependencies:
  5980. "camelcase" "^5.0.0"
  5981. "decamelize" "^1.2.0"
  5982. "yargs@^15.1.0", "yargs@^15.3.1":
  5983. "integrity" "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A=="
  5984. "resolved" "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz"
  5985. "version" "15.4.1"
  5986. dependencies:
  5987. "cliui" "^6.0.0"
  5988. "decamelize" "^1.2.0"
  5989. "find-up" "^4.1.0"
  5990. "get-caller-file" "^2.0.1"
  5991. "require-directory" "^2.1.1"
  5992. "require-main-filename" "^2.0.0"
  5993. "set-blocking" "^2.0.0"
  5994. "string-width" "^4.2.0"
  5995. "which-module" "^2.0.0"
  5996. "y18n" "^4.0.0"
  5997. "yargs-parser" "^18.1.2"
  5998. "yocto-queue@^0.1.0":
  5999. "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="
  6000. "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
  6001. "version" "0.1.0"