yarn.lock 211 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073
  1. # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
  2. # yarn lockfile v1
  3. "@ampproject/remapping@^2.0.0":
  4. version "2.1.1"
  5. resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.1.tgz"
  6. integrity sha512-Aolwjd7HSC2PyY0fDj/wA/EimQT4HfEnFYNp5s9CQlrdhyvWTtvZ5YzrUPu6R6/1jKiUlxu8bUhkdSnKHNAHMA==
  7. dependencies:
  8. "@jridgewell/trace-mapping" "^0.3.0"
  9. "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7":
  10. version "7.16.7"
  11. resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"
  12. integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
  13. dependencies:
  14. "@babel/highlight" "^7.16.7"
  15. "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.4", "@babel/compat-data@^7.16.8":
  16. version "7.17.0"
  17. resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz"
  18. integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==
  19. "@babel/core@^7.14.8":
  20. version "7.17.2"
  21. resolved "https://registry.npmjs.org/@babel/core/-/core-7.17.2.tgz"
  22. integrity sha512-R3VH5G42VSDolRHyUO4V2cfag8WHcZyxdq5Z/m8Xyb92lW/Erm/6kM+XtRFGf3Mulre3mveni2NHfEUws8wSvw==
  23. dependencies:
  24. "@ampproject/remapping" "^2.0.0"
  25. "@babel/code-frame" "^7.16.7"
  26. "@babel/generator" "^7.17.0"
  27. "@babel/helper-compilation-targets" "^7.16.7"
  28. "@babel/helper-module-transforms" "^7.16.7"
  29. "@babel/helpers" "^7.17.2"
  30. "@babel/parser" "^7.17.0"
  31. "@babel/template" "^7.16.7"
  32. "@babel/traverse" "^7.17.0"
  33. "@babel/types" "^7.17.0"
  34. convert-source-map "^1.7.0"
  35. debug "^4.1.0"
  36. gensync "^1.0.0-beta.2"
  37. json5 "^2.1.2"
  38. semver "^6.3.0"
  39. "@babel/generator@^7.17.0":
  40. version "7.17.0"
  41. resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.17.0.tgz"
  42. integrity sha512-I3Omiv6FGOC29dtlZhkfXO6pgkmukJSlT26QjVvS1DGZe/NzSVCPG41X0tS21oZkJYlovfj9qDWgKP+Cn4bXxw==
  43. dependencies:
  44. "@babel/types" "^7.17.0"
  45. jsesc "^2.5.1"
  46. source-map "^0.5.0"
  47. "@babel/helper-annotate-as-pure@^7.16.7":
  48. version "7.16.7"
  49. resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"
  50. integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==
  51. dependencies:
  52. "@babel/types" "^7.16.7"
  53. "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":
  54. version "7.16.7"
  55. resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz"
  56. integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==
  57. dependencies:
  58. "@babel/helper-explode-assignable-expression" "^7.16.7"
  59. "@babel/types" "^7.16.7"
  60. "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7":
  61. version "7.16.7"
  62. resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz"
  63. integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==
  64. dependencies:
  65. "@babel/compat-data" "^7.16.4"
  66. "@babel/helper-validator-option" "^7.16.7"
  67. browserslist "^4.17.5"
  68. semver "^6.3.0"
  69. "@babel/helper-create-class-features-plugin@^7.16.10", "@babel/helper-create-class-features-plugin@^7.16.7":
  70. version "7.17.1"
  71. resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.1.tgz"
  72. integrity sha512-JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ==
  73. dependencies:
  74. "@babel/helper-annotate-as-pure" "^7.16.7"
  75. "@babel/helper-environment-visitor" "^7.16.7"
  76. "@babel/helper-function-name" "^7.16.7"
  77. "@babel/helper-member-expression-to-functions" "^7.16.7"
  78. "@babel/helper-optimise-call-expression" "^7.16.7"
  79. "@babel/helper-replace-supers" "^7.16.7"
  80. "@babel/helper-split-export-declaration" "^7.16.7"
  81. "@babel/helper-create-regexp-features-plugin@^7.16.7":
  82. version "7.17.0"
  83. resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz"
  84. integrity sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==
  85. dependencies:
  86. "@babel/helper-annotate-as-pure" "^7.16.7"
  87. regexpu-core "^5.0.1"
  88. "@babel/helper-define-polyfill-provider@^0.3.1":
  89. version "0.3.1"
  90. resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz"
  91. integrity sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==
  92. dependencies:
  93. "@babel/helper-compilation-targets" "^7.13.0"
  94. "@babel/helper-module-imports" "^7.12.13"
  95. "@babel/helper-plugin-utils" "^7.13.0"
  96. "@babel/traverse" "^7.13.0"
  97. debug "^4.1.1"
  98. lodash.debounce "^4.0.8"
  99. resolve "^1.14.2"
  100. semver "^6.1.2"
  101. "@babel/helper-environment-visitor@^7.16.7":
  102. version "7.16.7"
  103. resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"
  104. integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==
  105. dependencies:
  106. "@babel/types" "^7.16.7"
  107. "@babel/helper-explode-assignable-expression@^7.16.7":
  108. version "7.16.7"
  109. resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz"
  110. integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==
  111. dependencies:
  112. "@babel/types" "^7.16.7"
  113. "@babel/helper-function-name@^7.16.7":
  114. version "7.16.7"
  115. resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"
  116. integrity sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==
  117. dependencies:
  118. "@babel/helper-get-function-arity" "^7.16.7"
  119. "@babel/template" "^7.16.7"
  120. "@babel/types" "^7.16.7"
  121. "@babel/helper-get-function-arity@^7.16.7":
  122. version "7.16.7"
  123. resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"
  124. integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==
  125. dependencies:
  126. "@babel/types" "^7.16.7"
  127. "@babel/helper-hoist-variables@^7.16.7":
  128. version "7.16.7"
  129. resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"
  130. integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==
  131. dependencies:
  132. "@babel/types" "^7.16.7"
  133. "@babel/helper-member-expression-to-functions@^7.16.7":
  134. version "7.16.7"
  135. resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz"
  136. integrity sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==
  137. dependencies:
  138. "@babel/types" "^7.16.7"
  139. "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
  140. version "7.16.7"
  141. resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"
  142. integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
  143. dependencies:
  144. "@babel/types" "^7.16.7"
  145. "@babel/helper-module-transforms@^7.16.7":
  146. version "7.16.7"
  147. resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz"
  148. integrity sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==
  149. dependencies:
  150. "@babel/helper-environment-visitor" "^7.16.7"
  151. "@babel/helper-module-imports" "^7.16.7"
  152. "@babel/helper-simple-access" "^7.16.7"
  153. "@babel/helper-split-export-declaration" "^7.16.7"
  154. "@babel/helper-validator-identifier" "^7.16.7"
  155. "@babel/template" "^7.16.7"
  156. "@babel/traverse" "^7.16.7"
  157. "@babel/types" "^7.16.7"
  158. "@babel/helper-optimise-call-expression@^7.16.7":
  159. version "7.16.7"
  160. resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"
  161. integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==
  162. dependencies:
  163. "@babel/types" "^7.16.7"
  164. "@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.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
  165. version "7.16.7"
  166. resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"
  167. integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==
  168. "@babel/helper-remap-async-to-generator@^7.16.8":
  169. version "7.16.8"
  170. resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"
  171. integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==
  172. dependencies:
  173. "@babel/helper-annotate-as-pure" "^7.16.7"
  174. "@babel/helper-wrap-function" "^7.16.8"
  175. "@babel/types" "^7.16.8"
  176. "@babel/helper-replace-supers@^7.16.7":
  177. version "7.16.7"
  178. resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"
  179. integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==
  180. dependencies:
  181. "@babel/helper-environment-visitor" "^7.16.7"
  182. "@babel/helper-member-expression-to-functions" "^7.16.7"
  183. "@babel/helper-optimise-call-expression" "^7.16.7"
  184. "@babel/traverse" "^7.16.7"
  185. "@babel/types" "^7.16.7"
  186. "@babel/helper-simple-access@^7.16.7":
  187. version "7.16.7"
  188. resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz"
  189. integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==
  190. dependencies:
  191. "@babel/types" "^7.16.7"
  192. "@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
  193. version "7.16.0"
  194. resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz"
  195. integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==
  196. dependencies:
  197. "@babel/types" "^7.16.0"
  198. "@babel/helper-split-export-declaration@^7.16.7":
  199. version "7.16.7"
  200. resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"
  201. integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==
  202. dependencies:
  203. "@babel/types" "^7.16.7"
  204. "@babel/helper-validator-identifier@^7.16.7":
  205. version "7.16.7"
  206. resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
  207. integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
  208. "@babel/helper-validator-option@^7.16.7":
  209. version "7.16.7"
  210. resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"
  211. integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==
  212. "@babel/helper-wrap-function@^7.16.8":
  213. version "7.16.8"
  214. resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz"
  215. integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==
  216. dependencies:
  217. "@babel/helper-function-name" "^7.16.7"
  218. "@babel/template" "^7.16.7"
  219. "@babel/traverse" "^7.16.8"
  220. "@babel/types" "^7.16.8"
  221. "@babel/helpers@^7.17.2":
  222. version "7.17.2"
  223. resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz"
  224. integrity sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==
  225. dependencies:
  226. "@babel/template" "^7.16.7"
  227. "@babel/traverse" "^7.17.0"
  228. "@babel/types" "^7.17.0"
  229. "@babel/highlight@^7.16.7":
  230. version "7.16.10"
  231. resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"
  232. integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
  233. dependencies:
  234. "@babel/helper-validator-identifier" "^7.16.7"
  235. chalk "^2.0.0"
  236. js-tokens "^4.0.0"
  237. "@babel/parser@^7.16.7", "@babel/parser@^7.17.0":
  238. version "7.17.0"
  239. resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.17.0.tgz"
  240. integrity sha512-VKXSCQx5D8S04ej+Dqsr1CzYvvWgf20jIw2D+YhQCrIlr2UZGaDds23Y0xg75/skOxpLCRpUZvk/1EAVkGoDOw==
  241. "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7":
  242. version "7.16.7"
  243. 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.16.7.tgz"
  244. integrity sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==
  245. dependencies:
  246. "@babel/helper-plugin-utils" "^7.16.7"
  247. "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.7":
  248. version "7.16.7"
  249. resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz"
  250. integrity sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==
  251. dependencies:
  252. "@babel/helper-plugin-utils" "^7.16.7"
  253. "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
  254. "@babel/plugin-proposal-optional-chaining" "^7.16.7"
  255. "@babel/plugin-proposal-async-generator-functions@^7.16.8":
  256. version "7.16.8"
  257. resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz"
  258. integrity sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==
  259. dependencies:
  260. "@babel/helper-plugin-utils" "^7.16.7"
  261. "@babel/helper-remap-async-to-generator" "^7.16.8"
  262. "@babel/plugin-syntax-async-generators" "^7.8.4"
  263. "@babel/plugin-proposal-class-properties@^7.16.7":
  264. version "7.16.7"
  265. resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz"
  266. integrity sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==
  267. dependencies:
  268. "@babel/helper-create-class-features-plugin" "^7.16.7"
  269. "@babel/helper-plugin-utils" "^7.16.7"
  270. "@babel/plugin-proposal-class-static-block@^7.16.7":
  271. version "7.16.7"
  272. resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz"
  273. integrity sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==
  274. dependencies:
  275. "@babel/helper-create-class-features-plugin" "^7.16.7"
  276. "@babel/helper-plugin-utils" "^7.16.7"
  277. "@babel/plugin-syntax-class-static-block" "^7.14.5"
  278. "@babel/plugin-proposal-dynamic-import@^7.16.7":
  279. version "7.16.7"
  280. resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"
  281. integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==
  282. dependencies:
  283. "@babel/helper-plugin-utils" "^7.16.7"
  284. "@babel/plugin-syntax-dynamic-import" "^7.8.3"
  285. "@babel/plugin-proposal-export-namespace-from@^7.16.7":
  286. version "7.16.7"
  287. resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz"
  288. integrity sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==
  289. dependencies:
  290. "@babel/helper-plugin-utils" "^7.16.7"
  291. "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
  292. "@babel/plugin-proposal-json-strings@^7.16.7":
  293. version "7.16.7"
  294. resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"
  295. integrity sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==
  296. dependencies:
  297. "@babel/helper-plugin-utils" "^7.16.7"
  298. "@babel/plugin-syntax-json-strings" "^7.8.3"
  299. "@babel/plugin-proposal-logical-assignment-operators@^7.16.7":
  300. version "7.16.7"
  301. resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz"
  302. integrity sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==
  303. dependencies:
  304. "@babel/helper-plugin-utils" "^7.16.7"
  305. "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
  306. "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7":
  307. version "7.16.7"
  308. resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"
  309. integrity sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==
  310. dependencies:
  311. "@babel/helper-plugin-utils" "^7.16.7"
  312. "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
  313. "@babel/plugin-proposal-numeric-separator@^7.16.7":
  314. version "7.16.7"
  315. resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"
  316. integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==
  317. dependencies:
  318. "@babel/helper-plugin-utils" "^7.16.7"
  319. "@babel/plugin-syntax-numeric-separator" "^7.10.4"
  320. "@babel/plugin-proposal-object-rest-spread@^7.16.7":
  321. version "7.16.7"
  322. resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz"
  323. integrity sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==
  324. dependencies:
  325. "@babel/compat-data" "^7.16.4"
  326. "@babel/helper-compilation-targets" "^7.16.7"
  327. "@babel/helper-plugin-utils" "^7.16.7"
  328. "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
  329. "@babel/plugin-transform-parameters" "^7.16.7"
  330. "@babel/plugin-proposal-optional-catch-binding@^7.16.7":
  331. version "7.16.7"
  332. resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz"
  333. integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==
  334. dependencies:
  335. "@babel/helper-plugin-utils" "^7.16.7"
  336. "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
  337. "@babel/plugin-proposal-optional-chaining@^7.16.7":
  338. version "7.16.7"
  339. resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"
  340. integrity sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==
  341. dependencies:
  342. "@babel/helper-plugin-utils" "^7.16.7"
  343. "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
  344. "@babel/plugin-syntax-optional-chaining" "^7.8.3"
  345. "@babel/plugin-proposal-private-methods@^7.16.11":
  346. version "7.16.11"
  347. resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz"
  348. integrity sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==
  349. dependencies:
  350. "@babel/helper-create-class-features-plugin" "^7.16.10"
  351. "@babel/helper-plugin-utils" "^7.16.7"
  352. "@babel/plugin-proposal-private-property-in-object@^7.16.7":
  353. version "7.16.7"
  354. resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz"
  355. integrity sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==
  356. dependencies:
  357. "@babel/helper-annotate-as-pure" "^7.16.7"
  358. "@babel/helper-create-class-features-plugin" "^7.16.7"
  359. "@babel/helper-plugin-utils" "^7.16.7"
  360. "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
  361. "@babel/plugin-proposal-unicode-property-regex@^7.16.7", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
  362. version "7.16.7"
  363. resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"
  364. integrity sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==
  365. dependencies:
  366. "@babel/helper-create-regexp-features-plugin" "^7.16.7"
  367. "@babel/helper-plugin-utils" "^7.16.7"
  368. "@babel/plugin-syntax-async-generators@^7.8.4":
  369. version "7.8.4"
  370. resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
  371. integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
  372. dependencies:
  373. "@babel/helper-plugin-utils" "^7.8.0"
  374. "@babel/plugin-syntax-class-properties@^7.12.13":
  375. version "7.12.13"
  376. resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
  377. integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
  378. dependencies:
  379. "@babel/helper-plugin-utils" "^7.12.13"
  380. "@babel/plugin-syntax-class-static-block@^7.14.5":
  381. version "7.14.5"
  382. resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"
  383. integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
  384. dependencies:
  385. "@babel/helper-plugin-utils" "^7.14.5"
  386. "@babel/plugin-syntax-dynamic-import@^7.8.3":
  387. version "7.8.3"
  388. resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"
  389. integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
  390. dependencies:
  391. "@babel/helper-plugin-utils" "^7.8.0"
  392. "@babel/plugin-syntax-export-namespace-from@^7.8.3":
  393. version "7.8.3"
  394. resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"
  395. integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
  396. dependencies:
  397. "@babel/helper-plugin-utils" "^7.8.3"
  398. "@babel/plugin-syntax-json-strings@^7.8.3":
  399. version "7.8.3"
  400. resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
  401. integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
  402. dependencies:
  403. "@babel/helper-plugin-utils" "^7.8.0"
  404. "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
  405. version "7.10.4"
  406. resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
  407. integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
  408. dependencies:
  409. "@babel/helper-plugin-utils" "^7.10.4"
  410. "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
  411. version "7.8.3"
  412. resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
  413. integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
  414. dependencies:
  415. "@babel/helper-plugin-utils" "^7.8.0"
  416. "@babel/plugin-syntax-numeric-separator@^7.10.4":
  417. version "7.10.4"
  418. resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
  419. integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
  420. dependencies:
  421. "@babel/helper-plugin-utils" "^7.10.4"
  422. "@babel/plugin-syntax-object-rest-spread@^7.8.3":
  423. version "7.8.3"
  424. resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
  425. integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
  426. dependencies:
  427. "@babel/helper-plugin-utils" "^7.8.0"
  428. "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
  429. version "7.8.3"
  430. resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
  431. integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
  432. dependencies:
  433. "@babel/helper-plugin-utils" "^7.8.0"
  434. "@babel/plugin-syntax-optional-chaining@^7.8.3":
  435. version "7.8.3"
  436. resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
  437. integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
  438. dependencies:
  439. "@babel/helper-plugin-utils" "^7.8.0"
  440. "@babel/plugin-syntax-private-property-in-object@^7.14.5":
  441. version "7.14.5"
  442. resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"
  443. integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
  444. dependencies:
  445. "@babel/helper-plugin-utils" "^7.14.5"
  446. "@babel/plugin-syntax-top-level-await@^7.14.5":
  447. version "7.14.5"
  448. resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
  449. integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
  450. dependencies:
  451. "@babel/helper-plugin-utils" "^7.14.5"
  452. "@babel/plugin-syntax-typescript@^7.16.7":
  453. version "7.16.7"
  454. resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz"
  455. integrity sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==
  456. dependencies:
  457. "@babel/helper-plugin-utils" "^7.16.7"
  458. "@babel/plugin-transform-arrow-functions@^7.16.7":
  459. version "7.16.7"
  460. resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz"
  461. integrity sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==
  462. dependencies:
  463. "@babel/helper-plugin-utils" "^7.16.7"
  464. "@babel/plugin-transform-async-to-generator@^7.16.8":
  465. version "7.16.8"
  466. resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"
  467. integrity sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==
  468. dependencies:
  469. "@babel/helper-module-imports" "^7.16.7"
  470. "@babel/helper-plugin-utils" "^7.16.7"
  471. "@babel/helper-remap-async-to-generator" "^7.16.8"
  472. "@babel/plugin-transform-block-scoped-functions@^7.16.7":
  473. version "7.16.7"
  474. resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz"
  475. integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==
  476. dependencies:
  477. "@babel/helper-plugin-utils" "^7.16.7"
  478. "@babel/plugin-transform-block-scoping@^7.16.7":
  479. version "7.16.7"
  480. resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"
  481. integrity sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==
  482. dependencies:
  483. "@babel/helper-plugin-utils" "^7.16.7"
  484. "@babel/plugin-transform-classes@^7.16.7":
  485. version "7.16.7"
  486. resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz"
  487. integrity sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==
  488. dependencies:
  489. "@babel/helper-annotate-as-pure" "^7.16.7"
  490. "@babel/helper-environment-visitor" "^7.16.7"
  491. "@babel/helper-function-name" "^7.16.7"
  492. "@babel/helper-optimise-call-expression" "^7.16.7"
  493. "@babel/helper-plugin-utils" "^7.16.7"
  494. "@babel/helper-replace-supers" "^7.16.7"
  495. "@babel/helper-split-export-declaration" "^7.16.7"
  496. globals "^11.1.0"
  497. "@babel/plugin-transform-computed-properties@^7.16.7":
  498. version "7.16.7"
  499. resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"
  500. integrity sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==
  501. dependencies:
  502. "@babel/helper-plugin-utils" "^7.16.7"
  503. "@babel/plugin-transform-destructuring@^7.16.7":
  504. version "7.16.7"
  505. resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz"
  506. integrity sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==
  507. dependencies:
  508. "@babel/helper-plugin-utils" "^7.16.7"
  509. "@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4":
  510. version "7.16.7"
  511. resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz"
  512. integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==
  513. dependencies:
  514. "@babel/helper-create-regexp-features-plugin" "^7.16.7"
  515. "@babel/helper-plugin-utils" "^7.16.7"
  516. "@babel/plugin-transform-duplicate-keys@^7.16.7":
  517. version "7.16.7"
  518. resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz"
  519. integrity sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==
  520. dependencies:
  521. "@babel/helper-plugin-utils" "^7.16.7"
  522. "@babel/plugin-transform-exponentiation-operator@^7.16.7":
  523. version "7.16.7"
  524. resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"
  525. integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==
  526. dependencies:
  527. "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7"
  528. "@babel/helper-plugin-utils" "^7.16.7"
  529. "@babel/plugin-transform-for-of@^7.16.7":
  530. version "7.16.7"
  531. resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz"
  532. integrity sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==
  533. dependencies:
  534. "@babel/helper-plugin-utils" "^7.16.7"
  535. "@babel/plugin-transform-function-name@^7.16.7":
  536. version "7.16.7"
  537. resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"
  538. integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==
  539. dependencies:
  540. "@babel/helper-compilation-targets" "^7.16.7"
  541. "@babel/helper-function-name" "^7.16.7"
  542. "@babel/helper-plugin-utils" "^7.16.7"
  543. "@babel/plugin-transform-literals@^7.16.7":
  544. version "7.16.7"
  545. resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz"
  546. integrity sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==
  547. dependencies:
  548. "@babel/helper-plugin-utils" "^7.16.7"
  549. "@babel/plugin-transform-member-expression-literals@^7.16.7":
  550. version "7.16.7"
  551. resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"
  552. integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==
  553. dependencies:
  554. "@babel/helper-plugin-utils" "^7.16.7"
  555. "@babel/plugin-transform-modules-amd@^7.16.7":
  556. version "7.16.7"
  557. resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz"
  558. integrity sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==
  559. dependencies:
  560. "@babel/helper-module-transforms" "^7.16.7"
  561. "@babel/helper-plugin-utils" "^7.16.7"
  562. babel-plugin-dynamic-import-node "^2.3.3"
  563. "@babel/plugin-transform-modules-commonjs@^7.16.8":
  564. version "7.16.8"
  565. resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz"
  566. integrity sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==
  567. dependencies:
  568. "@babel/helper-module-transforms" "^7.16.7"
  569. "@babel/helper-plugin-utils" "^7.16.7"
  570. "@babel/helper-simple-access" "^7.16.7"
  571. babel-plugin-dynamic-import-node "^2.3.3"
  572. "@babel/plugin-transform-modules-systemjs@^7.16.7":
  573. version "7.16.7"
  574. resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz"
  575. integrity sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==
  576. dependencies:
  577. "@babel/helper-hoist-variables" "^7.16.7"
  578. "@babel/helper-module-transforms" "^7.16.7"
  579. "@babel/helper-plugin-utils" "^7.16.7"
  580. "@babel/helper-validator-identifier" "^7.16.7"
  581. babel-plugin-dynamic-import-node "^2.3.3"
  582. "@babel/plugin-transform-modules-umd@^7.16.7":
  583. version "7.16.7"
  584. resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"
  585. integrity sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==
  586. dependencies:
  587. "@babel/helper-module-transforms" "^7.16.7"
  588. "@babel/helper-plugin-utils" "^7.16.7"
  589. "@babel/plugin-transform-named-capturing-groups-regex@^7.16.8":
  590. version "7.16.8"
  591. resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz"
  592. integrity sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==
  593. dependencies:
  594. "@babel/helper-create-regexp-features-plugin" "^7.16.7"
  595. "@babel/plugin-transform-new-target@^7.16.7":
  596. version "7.16.7"
  597. resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"
  598. integrity sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==
  599. dependencies:
  600. "@babel/helper-plugin-utils" "^7.16.7"
  601. "@babel/plugin-transform-object-super@^7.16.7":
  602. version "7.16.7"
  603. resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz"
  604. integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==
  605. dependencies:
  606. "@babel/helper-plugin-utils" "^7.16.7"
  607. "@babel/helper-replace-supers" "^7.16.7"
  608. "@babel/plugin-transform-parameters@^7.16.7":
  609. version "7.16.7"
  610. resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"
  611. integrity sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==
  612. dependencies:
  613. "@babel/helper-plugin-utils" "^7.16.7"
  614. "@babel/plugin-transform-property-literals@^7.16.7":
  615. version "7.16.7"
  616. resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz"
  617. integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==
  618. dependencies:
  619. "@babel/helper-plugin-utils" "^7.16.7"
  620. "@babel/plugin-transform-regenerator@^7.16.7":
  621. version "7.16.7"
  622. resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"
  623. integrity sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==
  624. dependencies:
  625. regenerator-transform "^0.14.2"
  626. "@babel/plugin-transform-reserved-words@^7.16.7":
  627. version "7.16.7"
  628. resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz"
  629. integrity sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==
  630. dependencies:
  631. "@babel/helper-plugin-utils" "^7.16.7"
  632. "@babel/plugin-transform-runtime@^7.14.5":
  633. version "7.17.0"
  634. resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.0.tgz"
  635. integrity sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==
  636. dependencies:
  637. "@babel/helper-module-imports" "^7.16.7"
  638. "@babel/helper-plugin-utils" "^7.16.7"
  639. babel-plugin-polyfill-corejs2 "^0.3.0"
  640. babel-plugin-polyfill-corejs3 "^0.5.0"
  641. babel-plugin-polyfill-regenerator "^0.3.0"
  642. semver "^6.3.0"
  643. "@babel/plugin-transform-shorthand-properties@^7.16.7":
  644. version "7.16.7"
  645. resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"
  646. integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==
  647. dependencies:
  648. "@babel/helper-plugin-utils" "^7.16.7"
  649. "@babel/plugin-transform-spread@^7.16.7":
  650. version "7.16.7"
  651. resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz"
  652. integrity sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==
  653. dependencies:
  654. "@babel/helper-plugin-utils" "^7.16.7"
  655. "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
  656. "@babel/plugin-transform-sticky-regex@^7.16.7":
  657. version "7.16.7"
  658. resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"
  659. integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==
  660. dependencies:
  661. "@babel/helper-plugin-utils" "^7.16.7"
  662. "@babel/plugin-transform-template-literals@^7.16.7":
  663. version "7.16.7"
  664. resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz"
  665. integrity sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==
  666. dependencies:
  667. "@babel/helper-plugin-utils" "^7.16.7"
  668. "@babel/plugin-transform-typeof-symbol@^7.16.7":
  669. version "7.16.7"
  670. resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz"
  671. integrity sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==
  672. dependencies:
  673. "@babel/helper-plugin-utils" "^7.16.7"
  674. "@babel/plugin-transform-typescript@^7.16.7":
  675. version "7.16.8"
  676. resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz"
  677. integrity sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==
  678. dependencies:
  679. "@babel/helper-create-class-features-plugin" "^7.16.7"
  680. "@babel/helper-plugin-utils" "^7.16.7"
  681. "@babel/plugin-syntax-typescript" "^7.16.7"
  682. "@babel/plugin-transform-unicode-escapes@^7.16.7":
  683. version "7.16.7"
  684. resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"
  685. integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==
  686. dependencies:
  687. "@babel/helper-plugin-utils" "^7.16.7"
  688. "@babel/plugin-transform-unicode-regex@^7.16.7":
  689. version "7.16.7"
  690. resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz"
  691. integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==
  692. dependencies:
  693. "@babel/helper-create-regexp-features-plugin" "^7.16.7"
  694. "@babel/helper-plugin-utils" "^7.16.7"
  695. "@babel/preset-env@^7.14.8":
  696. version "7.16.11"
  697. resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz"
  698. integrity sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==
  699. dependencies:
  700. "@babel/compat-data" "^7.16.8"
  701. "@babel/helper-compilation-targets" "^7.16.7"
  702. "@babel/helper-plugin-utils" "^7.16.7"
  703. "@babel/helper-validator-option" "^7.16.7"
  704. "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7"
  705. "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7"
  706. "@babel/plugin-proposal-async-generator-functions" "^7.16.8"
  707. "@babel/plugin-proposal-class-properties" "^7.16.7"
  708. "@babel/plugin-proposal-class-static-block" "^7.16.7"
  709. "@babel/plugin-proposal-dynamic-import" "^7.16.7"
  710. "@babel/plugin-proposal-export-namespace-from" "^7.16.7"
  711. "@babel/plugin-proposal-json-strings" "^7.16.7"
  712. "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7"
  713. "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7"
  714. "@babel/plugin-proposal-numeric-separator" "^7.16.7"
  715. "@babel/plugin-proposal-object-rest-spread" "^7.16.7"
  716. "@babel/plugin-proposal-optional-catch-binding" "^7.16.7"
  717. "@babel/plugin-proposal-optional-chaining" "^7.16.7"
  718. "@babel/plugin-proposal-private-methods" "^7.16.11"
  719. "@babel/plugin-proposal-private-property-in-object" "^7.16.7"
  720. "@babel/plugin-proposal-unicode-property-regex" "^7.16.7"
  721. "@babel/plugin-syntax-async-generators" "^7.8.4"
  722. "@babel/plugin-syntax-class-properties" "^7.12.13"
  723. "@babel/plugin-syntax-class-static-block" "^7.14.5"
  724. "@babel/plugin-syntax-dynamic-import" "^7.8.3"
  725. "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
  726. "@babel/plugin-syntax-json-strings" "^7.8.3"
  727. "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
  728. "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
  729. "@babel/plugin-syntax-numeric-separator" "^7.10.4"
  730. "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
  731. "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
  732. "@babel/plugin-syntax-optional-chaining" "^7.8.3"
  733. "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
  734. "@babel/plugin-syntax-top-level-await" "^7.14.5"
  735. "@babel/plugin-transform-arrow-functions" "^7.16.7"
  736. "@babel/plugin-transform-async-to-generator" "^7.16.8"
  737. "@babel/plugin-transform-block-scoped-functions" "^7.16.7"
  738. "@babel/plugin-transform-block-scoping" "^7.16.7"
  739. "@babel/plugin-transform-classes" "^7.16.7"
  740. "@babel/plugin-transform-computed-properties" "^7.16.7"
  741. "@babel/plugin-transform-destructuring" "^7.16.7"
  742. "@babel/plugin-transform-dotall-regex" "^7.16.7"
  743. "@babel/plugin-transform-duplicate-keys" "^7.16.7"
  744. "@babel/plugin-transform-exponentiation-operator" "^7.16.7"
  745. "@babel/plugin-transform-for-of" "^7.16.7"
  746. "@babel/plugin-transform-function-name" "^7.16.7"
  747. "@babel/plugin-transform-literals" "^7.16.7"
  748. "@babel/plugin-transform-member-expression-literals" "^7.16.7"
  749. "@babel/plugin-transform-modules-amd" "^7.16.7"
  750. "@babel/plugin-transform-modules-commonjs" "^7.16.8"
  751. "@babel/plugin-transform-modules-systemjs" "^7.16.7"
  752. "@babel/plugin-transform-modules-umd" "^7.16.7"
  753. "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.8"
  754. "@babel/plugin-transform-new-target" "^7.16.7"
  755. "@babel/plugin-transform-object-super" "^7.16.7"
  756. "@babel/plugin-transform-parameters" "^7.16.7"
  757. "@babel/plugin-transform-property-literals" "^7.16.7"
  758. "@babel/plugin-transform-regenerator" "^7.16.7"
  759. "@babel/plugin-transform-reserved-words" "^7.16.7"
  760. "@babel/plugin-transform-shorthand-properties" "^7.16.7"
  761. "@babel/plugin-transform-spread" "^7.16.7"
  762. "@babel/plugin-transform-sticky-regex" "^7.16.7"
  763. "@babel/plugin-transform-template-literals" "^7.16.7"
  764. "@babel/plugin-transform-typeof-symbol" "^7.16.7"
  765. "@babel/plugin-transform-unicode-escapes" "^7.16.7"
  766. "@babel/plugin-transform-unicode-regex" "^7.16.7"
  767. "@babel/preset-modules" "^0.1.5"
  768. "@babel/types" "^7.16.8"
  769. babel-plugin-polyfill-corejs2 "^0.3.0"
  770. babel-plugin-polyfill-corejs3 "^0.5.0"
  771. babel-plugin-polyfill-regenerator "^0.3.0"
  772. core-js-compat "^3.20.2"
  773. semver "^6.3.0"
  774. "@babel/preset-modules@^0.1.5":
  775. version "0.1.5"
  776. resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz"
  777. integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
  778. dependencies:
  779. "@babel/helper-plugin-utils" "^7.0.0"
  780. "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
  781. "@babel/plugin-transform-dotall-regex" "^7.4.4"
  782. "@babel/types" "^7.4.4"
  783. esutils "^2.0.2"
  784. "@babel/preset-typescript@^7.14.5":
  785. version "7.16.7"
  786. resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz"
  787. integrity sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==
  788. dependencies:
  789. "@babel/helper-plugin-utils" "^7.16.7"
  790. "@babel/helper-validator-option" "^7.16.7"
  791. "@babel/plugin-transform-typescript" "^7.16.7"
  792. "@babel/runtime@^7.17.9", "@babel/runtime@^7.18.0", "@babel/runtime@^7.18.9", "@babel/runtime@^7.4.0", "@babel/runtime@^7.8.4":
  793. version "7.19.0"
  794. resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz"
  795. integrity sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==
  796. dependencies:
  797. regenerator-runtime "^0.13.4"
  798. "@babel/template@^7.16.7":
  799. version "7.16.7"
  800. resolved "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"
  801. integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==
  802. dependencies:
  803. "@babel/code-frame" "^7.16.7"
  804. "@babel/parser" "^7.16.7"
  805. "@babel/types" "^7.16.7"
  806. "@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.0":
  807. version "7.17.0"
  808. resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.0.tgz"
  809. integrity sha512-fpFIXvqD6kC7c7PUNnZ0Z8cQXlarCLtCUpt2S1Dx7PjoRtCFffvOkHHSom+m5HIxMZn5bIBVb71lhabcmjEsqg==
  810. dependencies:
  811. "@babel/code-frame" "^7.16.7"
  812. "@babel/generator" "^7.17.0"
  813. "@babel/helper-environment-visitor" "^7.16.7"
  814. "@babel/helper-function-name" "^7.16.7"
  815. "@babel/helper-hoist-variables" "^7.16.7"
  816. "@babel/helper-split-export-declaration" "^7.16.7"
  817. "@babel/parser" "^7.17.0"
  818. "@babel/types" "^7.17.0"
  819. debug "^4.1.0"
  820. globals "^11.1.0"
  821. "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.4.4":
  822. version "7.17.0"
  823. resolved "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz"
  824. integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==
  825. dependencies:
  826. "@babel/helper-validator-identifier" "^7.16.7"
  827. to-fast-properties "^2.0.0"
  828. "@discoveryjs/json-ext@^0.5.0":
  829. version "0.5.6"
  830. resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz"
  831. integrity sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==
  832. "@hapi/bourne@^2.0.0":
  833. version "2.0.0"
  834. resolved "https://registry.npmjs.org/@hapi/bourne/-/bourne-2.0.0.tgz"
  835. integrity sha512-WEezM1FWztfbzqIUbsDzFRVMxSoLy3HugVcux6KDDtTqzPsLE8NDRHfXvev66aH1i2oOKKar3/XDjbvh/OUBdg==
  836. "@jridgewell/resolve-uri@^3.0.3":
  837. version "3.0.5"
  838. resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz"
  839. integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==
  840. "@jridgewell/sourcemap-codec@^1.4.10":
  841. version "1.4.11"
  842. resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz"
  843. integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==
  844. "@jridgewell/trace-mapping@^0.3.0":
  845. version "0.3.4"
  846. resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz"
  847. integrity sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==
  848. dependencies:
  849. "@jridgewell/resolve-uri" "^3.0.3"
  850. "@jridgewell/sourcemap-codec" "^1.4.10"
  851. "@json-rpc-tools/provider@^1.4.0", "@json-rpc-tools/provider@^1.6.3":
  852. version "1.7.6"
  853. resolved "https://registry.npmjs.org/@json-rpc-tools/provider/-/provider-1.7.6.tgz"
  854. integrity sha512-z7D3xvJ33UfCGv77n40lbzOYjZKVM3k2+5cV7xS8G6SCvKTzMkhkUYuD/qzQUNT4cG/lv0e9mRToweEEVLVVmA==
  855. dependencies:
  856. "@json-rpc-tools/utils" "^1.7.6"
  857. axios "^0.21.0"
  858. safe-json-utils "^1.1.1"
  859. ws "^7.4.0"
  860. "@json-rpc-tools/types@^1.7.6":
  861. version "1.7.6"
  862. resolved "https://registry.npmjs.org/@json-rpc-tools/types/-/types-1.7.6.tgz"
  863. integrity sha512-nDSqmyRNEqEK9TZHtM15uNnDljczhCUdBmRhpNZ95bIPKEDQ+nTDmGMFd2lLin3upc5h2VVVd9tkTDdbXUhDIQ==
  864. dependencies:
  865. keyvaluestorage-interface "^1.0.0"
  866. "@json-rpc-tools/utils@^1.4.0", "@json-rpc-tools/utils@^1.6.3", "@json-rpc-tools/utils@^1.7.6":
  867. version "1.7.6"
  868. resolved "https://registry.npmjs.org/@json-rpc-tools/utils/-/utils-1.7.6.tgz"
  869. integrity sha512-HjA8x/U/Q78HRRe19yh8HVKoZ+Iaoo3YZjakJYxR+rw52NHo6jM+VE9b8+7ygkCFXl/EHID5wh/MkXaE/jGyYw==
  870. dependencies:
  871. "@json-rpc-tools/types" "^1.7.6"
  872. "@pedrouid/environment" "^1.0.1"
  873. "@noble/hashes@1.0.0":
  874. version "1.0.0"
  875. resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.0.0.tgz"
  876. integrity sha512-DZVbtY62kc3kkBtMHqwCOfXrT/hnoORy5BJ4+HU1IR59X0KWAOqsfzQPcUl/lQLlG7qXbe/fZ3r/emxtAl+sqg==
  877. "@noble/secp256k1@1.5.5":
  878. version "1.5.5"
  879. resolved "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.5.5.tgz"
  880. integrity sha512-sZ1W6gQzYnu45wPrWx8D3kwI2/U29VYTx9OjbDAd7jwRItJ0cSTMPRL/C8AWZFn9kWFLQGqEXVEE86w4Z8LpIQ==
  881. "@pedrouid/environment@^1.0.1":
  882. version "1.0.1"
  883. resolved "https://registry.npmjs.org/@pedrouid/environment/-/environment-1.0.1.tgz"
  884. integrity sha512-HaW78NszGzRZd9SeoI3JD11JqY+lubnaOx7Pewj5pfjqWXOEATpeKIFb9Z4t2WBUK2iryiXX3lzWwmYWgUL0Ug==
  885. "@pedrouid/pino-utils@^1.0.1":
  886. version "1.0.1"
  887. resolved "https://registry.npmjs.org/@pedrouid/pino-utils/-/pino-utils-1.0.1.tgz"
  888. integrity sha512-a20vNltMhvk/bvhgnpSvBLFqL9B4xXNCukDEo70lO1bCSwRy5Tmu6Gc/1DsuYY+oNgE6b424j5J+8/J1OJenCg==
  889. dependencies:
  890. pino "^6.7.0"
  891. "@polkadot/api-augment@8.5.1":
  892. version "8.5.1"
  893. resolved "https://registry.npmjs.org/@polkadot/api-augment/-/api-augment-8.5.1.tgz"
  894. integrity sha512-KoyRK+fRIxZxlMzLgnHy/W394vtMroSfp3KTJ0MlW/qDsNNoHcfbx1zSCPnWPOu1mcAy5dAsQNK8wg1z5aYQcg==
  895. dependencies:
  896. "@babel/runtime" "^7.18.0"
  897. "@polkadot/api-base" "8.5.1"
  898. "@polkadot/rpc-augment" "8.5.1"
  899. "@polkadot/types" "8.5.1"
  900. "@polkadot/types-augment" "8.5.1"
  901. "@polkadot/types-codec" "8.5.1"
  902. "@polkadot/util" "^9.2.1"
  903. "@polkadot/api-base@8.5.1":
  904. version "8.5.1"
  905. resolved "https://registry.npmjs.org/@polkadot/api-base/-/api-base-8.5.1.tgz"
  906. integrity sha512-RNbCP0KfG6BNNOD7AO/suQBzCEIY2iuiFOnTuKO1y2b8NfB/rPgxX/T+LNq8UGhLt4OClv3rP/uqG2fN9dLJVQ==
  907. dependencies:
  908. "@babel/runtime" "^7.18.0"
  909. "@polkadot/rpc-core" "8.5.1"
  910. "@polkadot/types" "8.5.1"
  911. "@polkadot/util" "^9.2.1"
  912. rxjs "^7.5.5"
  913. "@polkadot/api-derive@8.5.1":
  914. version "8.5.1"
  915. resolved "https://registry.npmjs.org/@polkadot/api-derive/-/api-derive-8.5.1.tgz"
  916. integrity sha512-NZutvKrF23YMod/W5/+XFa73EFQwgKQ0m5WQoEwhsPVSxvFviuYQuEafDabmai3iGFf9rvD+/ZWa3l+UfNJXvg==
  917. dependencies:
  918. "@babel/runtime" "^7.18.0"
  919. "@polkadot/api" "8.5.1"
  920. "@polkadot/api-augment" "8.5.1"
  921. "@polkadot/api-base" "8.5.1"
  922. "@polkadot/rpc-core" "8.5.1"
  923. "@polkadot/types" "8.5.1"
  924. "@polkadot/types-codec" "8.5.1"
  925. "@polkadot/util" "^9.2.1"
  926. "@polkadot/util-crypto" "^9.2.1"
  927. rxjs "^7.5.5"
  928. "@polkadot/api@8.5.1", "@polkadot/api@^8.5.1":
  929. version "8.5.1"
  930. resolved "https://registry.npmjs.org/@polkadot/api/-/api-8.5.1.tgz"
  931. integrity sha512-t+t53OFEAyQDM+wSR6uTPAQdeUxhmE2Y4wv/W9S0u+XWeGCuuHp9l2vsyg4MKO3TnBmsf7B6+dHZiP2gFCjPVQ==
  932. dependencies:
  933. "@babel/runtime" "^7.18.0"
  934. "@polkadot/api-augment" "8.5.1"
  935. "@polkadot/api-base" "8.5.1"
  936. "@polkadot/api-derive" "8.5.1"
  937. "@polkadot/keyring" "^9.2.1"
  938. "@polkadot/rpc-augment" "8.5.1"
  939. "@polkadot/rpc-core" "8.5.1"
  940. "@polkadot/rpc-provider" "8.5.1"
  941. "@polkadot/types" "8.5.1"
  942. "@polkadot/types-augment" "8.5.1"
  943. "@polkadot/types-codec" "8.5.1"
  944. "@polkadot/types-create" "8.5.1"
  945. "@polkadot/types-known" "8.5.1"
  946. "@polkadot/util" "^9.2.1"
  947. "@polkadot/util-crypto" "^9.2.1"
  948. eventemitter3 "^4.0.7"
  949. rxjs "^7.5.5"
  950. "@polkadot/extension-dapp@^0.43.2":
  951. version "0.43.2"
  952. resolved "https://registry.npmjs.org/@polkadot/extension-dapp/-/extension-dapp-0.43.2.tgz"
  953. integrity sha512-4T5EgdIG34/RfWfqpBziHjIDbf6flrcZAnDnqsZZs/FOI2LgPGKkLwna5msHZXK7r+7vUfs2yg/KIKWAlNvYZQ==
  954. dependencies:
  955. "@babel/runtime" "^7.17.9"
  956. "@polkadot/extension-inject" "^0.43.2"
  957. "@polkadot/util" "^9.2.1"
  958. "@polkadot/util-crypto" "^9.2.1"
  959. "@polkadot/extension-inject@^0.43.2":
  960. version "0.43.2"
  961. resolved "https://registry.npmjs.org/@polkadot/extension-inject/-/extension-inject-0.43.2.tgz"
  962. integrity sha512-rl5sHyEKXaLyOeohDu5t8rdict/y790WPhapdNyrHDYOm55HM8p+K5AokdX1OCmBoad/crpAfRF2L1yevXHJww==
  963. dependencies:
  964. "@babel/runtime" "^7.17.9"
  965. "@polkadot/rpc-provider" "^8.4.2"
  966. "@polkadot/types" "^8.4.2"
  967. "@polkadot/util" "^9.2.1"
  968. "@polkadot/util-crypto" "^9.2.1"
  969. "@polkadot/x-global" "^9.2.1"
  970. "@polkadot/keyring@^9.2.1":
  971. version "9.2.1"
  972. resolved "https://registry.npmjs.org/@polkadot/keyring/-/keyring-9.2.1.tgz"
  973. integrity sha512-6TxcVX5ABtqYb7aJmWdeCLWx11i6MoDX5pKbGqlCuLRzSKWRjgVpBEsKOfDBClBFuMJfTOgkmuyeXdBrGIsH4w==
  974. dependencies:
  975. "@babel/runtime" "^7.17.9"
  976. "@polkadot/util" "9.2.1"
  977. "@polkadot/util-crypto" "9.2.1"
  978. "@polkadot/networks@9.2.1", "@polkadot/networks@^9.2.1":
  979. version "9.2.1"
  980. resolved "https://registry.npmjs.org/@polkadot/networks/-/networks-9.2.1.tgz"
  981. integrity sha512-uewpJBJWdl5r78FQT9qTeABbUB6RWxk4BoMq27ZKt4B+0riiXJYBVOCnsYqK8vhUq19pgk8XBXuxltVQQ+wGgQ==
  982. dependencies:
  983. "@babel/runtime" "^7.17.9"
  984. "@polkadot/util" "9.2.1"
  985. "@substrate/ss58-registry" "^1.18.0"
  986. "@polkadot/rpc-augment@8.5.1":
  987. version "8.5.1"
  988. resolved "https://registry.npmjs.org/@polkadot/rpc-augment/-/rpc-augment-8.5.1.tgz"
  989. integrity sha512-VjKqJ1750bKcRCoW6ezm+CkriB+6OLBqmPtNqp+NMfdd3RxGk/knIWU2bzY6dzt35+loXz1m+eOO/pnbLS5t2g==
  990. dependencies:
  991. "@babel/runtime" "^7.18.0"
  992. "@polkadot/rpc-core" "8.5.1"
  993. "@polkadot/types" "8.5.1"
  994. "@polkadot/types-codec" "8.5.1"
  995. "@polkadot/util" "^9.2.1"
  996. "@polkadot/rpc-core@8.5.1":
  997. version "8.5.1"
  998. resolved "https://registry.npmjs.org/@polkadot/rpc-core/-/rpc-core-8.5.1.tgz"
  999. integrity sha512-1cGbGrGa+NDPENBEXXGJRVGAhjOiv6BN5Nv+MhKL89ntgMq3NMIGnrtTpVtTNPuI5vkEWvnOxeYY8ofcMv5D7A==
  1000. dependencies:
  1001. "@babel/runtime" "^7.18.0"
  1002. "@polkadot/rpc-augment" "8.5.1"
  1003. "@polkadot/rpc-provider" "8.5.1"
  1004. "@polkadot/types" "8.5.1"
  1005. "@polkadot/util" "^9.2.1"
  1006. rxjs "^7.5.5"
  1007. "@polkadot/rpc-provider@8.5.1", "@polkadot/rpc-provider@^8.4.2":
  1008. version "8.5.1"
  1009. resolved "https://registry.npmjs.org/@polkadot/rpc-provider/-/rpc-provider-8.5.1.tgz"
  1010. integrity sha512-NUkY4+A0coSzmjkxOeRkxmS4ZtPO1R6N4RWsXoUZnNUpt3fHZt9qhZ7wd25VESaLEL3G646jC7svRTc8JTLJJA==
  1011. dependencies:
  1012. "@babel/runtime" "^7.18.0"
  1013. "@polkadot/keyring" "^9.2.1"
  1014. "@polkadot/types" "8.5.1"
  1015. "@polkadot/types-support" "8.5.1"
  1016. "@polkadot/util" "^9.2.1"
  1017. "@polkadot/util-crypto" "^9.2.1"
  1018. "@polkadot/x-fetch" "^9.2.1"
  1019. "@polkadot/x-global" "^9.2.1"
  1020. "@polkadot/x-ws" "^9.2.1"
  1021. "@substrate/connect" "0.7.5"
  1022. eventemitter3 "^4.0.7"
  1023. mock-socket "^9.1.3"
  1024. nock "^13.2.4"
  1025. "@polkadot/types-augment@8.5.1":
  1026. version "8.5.1"
  1027. resolved "https://registry.npmjs.org/@polkadot/types-augment/-/types-augment-8.5.1.tgz"
  1028. integrity sha512-FMCb7Ro4czmnR/bZ8Ra1wYDf7WXMpgBDp2atew4eEQiny6jNxIz1mSZNGsnkqvwi/Cj70nq0GmnL6cUT2kqJwA==
  1029. dependencies:
  1030. "@babel/runtime" "^7.18.0"
  1031. "@polkadot/types" "8.5.1"
  1032. "@polkadot/types-codec" "8.5.1"
  1033. "@polkadot/util" "^9.2.1"
  1034. "@polkadot/types-codec@8.5.1":
  1035. version "8.5.1"
  1036. resolved "https://registry.npmjs.org/@polkadot/types-codec/-/types-codec-8.5.1.tgz"
  1037. integrity sha512-pbWKvgbCrBSVQnv/UIKFSWKHaYWMv3sWcHX30lI2C97C0kHnIu94oXmz137u9/PjXOKgghlaiIiJw/dVGqDE1w==
  1038. dependencies:
  1039. "@babel/runtime" "^7.18.0"
  1040. "@polkadot/util" "^9.2.1"
  1041. "@polkadot/types-create@8.5.1":
  1042. version "8.5.1"
  1043. resolved "https://registry.npmjs.org/@polkadot/types-create/-/types-create-8.5.1.tgz"
  1044. integrity sha512-25PKUs2muOtk1IShnab5ciOhuG9COSrN0/Ivru/gBdnPE6BJtutmOjtDL8+xcQPdc7AoCopO+7MuSTOvGyktqQ==
  1045. dependencies:
  1046. "@babel/runtime" "^7.18.0"
  1047. "@polkadot/types-codec" "8.5.1"
  1048. "@polkadot/util" "^9.2.1"
  1049. "@polkadot/types-known@8.5.1":
  1050. version "8.5.1"
  1051. resolved "https://registry.npmjs.org/@polkadot/types-known/-/types-known-8.5.1.tgz"
  1052. integrity sha512-lnwhcQbzToqUPn2CZ2/T8wq6J/+AjTesi5NdI+mFmklV+7zxJepCOA2OE/rJMJLstpOPaAINKuNgcsjId8gBsA==
  1053. dependencies:
  1054. "@babel/runtime" "^7.18.0"
  1055. "@polkadot/networks" "^9.2.1"
  1056. "@polkadot/types" "8.5.1"
  1057. "@polkadot/types-codec" "8.5.1"
  1058. "@polkadot/types-create" "8.5.1"
  1059. "@polkadot/util" "^9.2.1"
  1060. "@polkadot/types-support@8.5.1":
  1061. version "8.5.1"
  1062. resolved "https://registry.npmjs.org/@polkadot/types-support/-/types-support-8.5.1.tgz"
  1063. integrity sha512-FDnwuXnCQBROB+K0xQ8brEY0No64e8EgzxsCA6BLGIuCxb3s1vszMcTH3y1cvjbc0ROtSN1hT2lPJ/lY+erJwg==
  1064. dependencies:
  1065. "@babel/runtime" "^7.18.0"
  1066. "@polkadot/util" "^9.2.1"
  1067. "@polkadot/types@8.5.1", "@polkadot/types@^8.4.2":
  1068. version "8.5.1"
  1069. resolved "https://registry.npmjs.org/@polkadot/types/-/types-8.5.1.tgz"
  1070. integrity sha512-WQpcGEeZJsnCpEI6UdDLR8XY28+rg8LEvz7i6EUXdZyYyfa5m8kODpGnqgXd4BCGst5XHrBNn0D3NW7BHU+ZKQ==
  1071. dependencies:
  1072. "@babel/runtime" "^7.18.0"
  1073. "@polkadot/keyring" "^9.2.1"
  1074. "@polkadot/types-augment" "8.5.1"
  1075. "@polkadot/types-codec" "8.5.1"
  1076. "@polkadot/types-create" "8.5.1"
  1077. "@polkadot/util" "^9.2.1"
  1078. "@polkadot/util-crypto" "^9.2.1"
  1079. rxjs "^7.5.5"
  1080. "@polkadot/ui-shared@^2.2.1":
  1081. version "2.2.1"
  1082. resolved "https://registry.npmjs.org/@polkadot/ui-shared/-/ui-shared-2.2.1.tgz"
  1083. integrity sha512-8OE/SPHpzxQb6PWA76aJCk1qabGe69MrRSSaTtH2grSqRF9MJbt62557sHzkE0H6hhKowYDwv3y14GRGviZ/iQ==
  1084. dependencies:
  1085. "@babel/runtime" "^7.17.9"
  1086. color "^3.2.1"
  1087. "@polkadot/util-crypto@9.2.1", "@polkadot/util-crypto@^9.2.1":
  1088. version "9.2.1"
  1089. resolved "https://registry.npmjs.org/@polkadot/util-crypto/-/util-crypto-9.2.1.tgz"
  1090. integrity sha512-vAao00qNq6zv5UbDCn5+TN4DlWtYdru2gJBGroxzLHH6JzxWrCPGu3iDW+o3CE8v4XJGI42W4nDDGjdxyzVN7Q==
  1091. dependencies:
  1092. "@babel/runtime" "^7.17.9"
  1093. "@noble/hashes" "1.0.0"
  1094. "@noble/secp256k1" "1.5.5"
  1095. "@polkadot/networks" "9.2.1"
  1096. "@polkadot/util" "9.2.1"
  1097. "@polkadot/wasm-crypto" "^6.1.1"
  1098. "@polkadot/x-bigint" "9.2.1"
  1099. "@polkadot/x-randomvalues" "9.2.1"
  1100. "@scure/base" "1.0.0"
  1101. ed2curve "^0.3.0"
  1102. tweetnacl "^1.0.3"
  1103. "@polkadot/util@9.2.1", "@polkadot/util@^9.2.1":
  1104. version "9.2.1"
  1105. resolved "https://registry.npmjs.org/@polkadot/util/-/util-9.2.1.tgz"
  1106. integrity sha512-6B+NWfibxKNlWv67dJygjxZsNtjp9nERYZ+EaulOST9/KrnGLyKEh5ZRxP9lTSXeo+kuZhEfQFl3VQk13xgmJg==
  1107. dependencies:
  1108. "@babel/runtime" "^7.17.9"
  1109. "@polkadot/x-bigint" "9.2.1"
  1110. "@polkadot/x-global" "9.2.1"
  1111. "@polkadot/x-textdecoder" "9.2.1"
  1112. "@polkadot/x-textencoder" "9.2.1"
  1113. "@types/bn.js" "^5.1.0"
  1114. bn.js "^5.2.0"
  1115. ip-regex "^4.3.0"
  1116. "@polkadot/util@^0.41.1":
  1117. version "0.41.1"
  1118. resolved "https://registry.npmjs.org/@polkadot/util/-/util-0.41.1.tgz"
  1119. integrity sha512-1mFHxxdXyRgeFk0ygfJklzsf6HiEEMikrpUgr+3Dw5S7KromjPD8EbWkpcZQZ3Png5PTwGyjrx7MYY4Ajiu5xQ==
  1120. dependencies:
  1121. "@babel/runtime" "^7.4.0"
  1122. "@types/bn.js" "^4.11.4"
  1123. "@types/deasync" "^0.1.0"
  1124. "@types/ip-regex" "^3.0.0"
  1125. bn.js "^4.11.8"
  1126. camelcase "^5.2.0"
  1127. chalk "^2.4.2"
  1128. ip-regex "^4.0.0"
  1129. moment "^2.24.0"
  1130. "@polkadot/wasm-bridge@6.3.1":
  1131. version "6.3.1"
  1132. resolved "https://registry.npmjs.org/@polkadot/wasm-bridge/-/wasm-bridge-6.3.1.tgz"
  1133. integrity sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==
  1134. dependencies:
  1135. "@babel/runtime" "^7.18.9"
  1136. "@polkadot/wasm-crypto-asmjs@6.3.1":
  1137. version "6.3.1"
  1138. resolved "https://registry.npmjs.org/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.3.1.tgz"
  1139. integrity sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==
  1140. dependencies:
  1141. "@babel/runtime" "^7.18.9"
  1142. "@polkadot/wasm-crypto-init@6.3.1":
  1143. version "6.3.1"
  1144. resolved "https://registry.npmjs.org/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.3.1.tgz"
  1145. integrity sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==
  1146. dependencies:
  1147. "@babel/runtime" "^7.18.9"
  1148. "@polkadot/wasm-bridge" "6.3.1"
  1149. "@polkadot/wasm-crypto-asmjs" "6.3.1"
  1150. "@polkadot/wasm-crypto-wasm" "6.3.1"
  1151. "@polkadot/wasm-crypto-wasm@6.3.1":
  1152. version "6.3.1"
  1153. resolved "https://registry.npmjs.org/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.3.1.tgz"
  1154. integrity sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==
  1155. dependencies:
  1156. "@babel/runtime" "^7.18.9"
  1157. "@polkadot/wasm-util" "6.3.1"
  1158. "@polkadot/wasm-crypto@^0.5.1":
  1159. version "0.5.1"
  1160. resolved "https://registry.npmjs.org/@polkadot/wasm-crypto/-/wasm-crypto-0.5.1.tgz"
  1161. integrity sha512-8h7uz85bvLVirtbxLkELr9H25oqAfgnQuDP6FP3QJeag7VfMtVvRF5U2JWGgsiUSiRg+UJnTuCleOSDnageRmg==
  1162. "@polkadot/wasm-crypto@^6.1.1":
  1163. version "6.3.1"
  1164. resolved "https://registry.npmjs.org/@polkadot/wasm-crypto/-/wasm-crypto-6.3.1.tgz"
  1165. integrity sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==
  1166. dependencies:
  1167. "@babel/runtime" "^7.18.9"
  1168. "@polkadot/wasm-bridge" "6.3.1"
  1169. "@polkadot/wasm-crypto-asmjs" "6.3.1"
  1170. "@polkadot/wasm-crypto-init" "6.3.1"
  1171. "@polkadot/wasm-crypto-wasm" "6.3.1"
  1172. "@polkadot/wasm-util" "6.3.1"
  1173. "@polkadot/wasm-schnorrkel@^0.3.1":
  1174. version "0.3.1"
  1175. resolved "https://registry.npmjs.org/@polkadot/wasm-schnorrkel/-/wasm-schnorrkel-0.3.1.tgz"
  1176. integrity sha512-2J/lNZe7oDWvzUbsEfvKfiiAvBIBbIsppeBGahwSg2Y+cLweQgThXGizPpQoPo0tHxgMKdTi6jhPu7tLzCW/cA==
  1177. "@polkadot/wasm-util@6.3.1":
  1178. version "6.3.1"
  1179. resolved "https://registry.npmjs.org/@polkadot/wasm-util/-/wasm-util-6.3.1.tgz"
  1180. integrity sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==
  1181. dependencies:
  1182. "@babel/runtime" "^7.18.9"
  1183. "@polkadot/x-bigint@9.2.1":
  1184. version "9.2.1"
  1185. resolved "https://registry.npmjs.org/@polkadot/x-bigint/-/x-bigint-9.2.1.tgz"
  1186. integrity sha512-R1PJHVu8NqWyaUrMrGSr2reGCVNdSxKFbJr6M7Fli5UWewjoLue1CuG1Mv0fjb6+ko1XcTjFmdNpfOs3L0PYbQ==
  1187. dependencies:
  1188. "@babel/runtime" "^7.17.9"
  1189. "@polkadot/x-global" "9.2.1"
  1190. "@polkadot/x-fetch@^9.2.1":
  1191. version "9.2.1"
  1192. resolved "https://registry.npmjs.org/@polkadot/x-fetch/-/x-fetch-9.2.1.tgz"
  1193. integrity sha512-tU/q6ZwnQDy41mE+kNgJYnMlRDjBKNA+xctlzQKjMyeTrvzmUS7LmK5Z3kHHhgs1kleLtDe5xT116OOhoIuyHg==
  1194. dependencies:
  1195. "@babel/runtime" "^7.17.9"
  1196. "@polkadot/x-global" "9.2.1"
  1197. "@types/node-fetch" "^2.6.1"
  1198. node-fetch "^2.6.7"
  1199. "@polkadot/x-global@9.2.1", "@polkadot/x-global@^9.2.1":
  1200. version "9.2.1"
  1201. resolved "https://registry.npmjs.org/@polkadot/x-global/-/x-global-9.2.1.tgz"
  1202. integrity sha512-t1zXdfrFIt83Be1i7uQuj2JRgvdxMxPBVXhCycpAV0eApeThXh8irBSxzw6QisDdPBnC+yX/kIlXuQAHUmr/7g==
  1203. dependencies:
  1204. "@babel/runtime" "^7.17.9"
  1205. "@polkadot/x-randomvalues@9.2.1":
  1206. version "9.2.1"
  1207. resolved "https://registry.npmjs.org/@polkadot/x-randomvalues/-/x-randomvalues-9.2.1.tgz"
  1208. integrity sha512-gxR2vx5ThRjQ5lJovLneRKaWJxlNHSHcWhozLiUKTr2UePs0rljAqQ68nQ57jq1B17CQra7PWYxosfcKyKaAUg==
  1209. dependencies:
  1210. "@babel/runtime" "^7.17.9"
  1211. "@polkadot/x-global" "9.2.1"
  1212. "@polkadot/x-textdecoder@9.2.1":
  1213. version "9.2.1"
  1214. resolved "https://registry.npmjs.org/@polkadot/x-textdecoder/-/x-textdecoder-9.2.1.tgz"
  1215. integrity sha512-n9ejoDUnX935zfxgJMcOpvJaifRKniPEKKmCWUazv9IEygB16bXRQ+Ecg8KYKtpmxTVQwj6lW4QOf4d4LGIdqA==
  1216. dependencies:
  1217. "@babel/runtime" "^7.17.9"
  1218. "@polkadot/x-global" "9.2.1"
  1219. "@polkadot/x-textencoder@9.2.1":
  1220. version "9.2.1"
  1221. resolved "https://registry.npmjs.org/@polkadot/x-textencoder/-/x-textencoder-9.2.1.tgz"
  1222. integrity sha512-VBCdK9vieYqbH7B4ceiahuW1bOvgETdaz9Ur4QtZLA2YUO7YB+mPuiySO4mU6hx97mV9PSJLHyyOs7oGCsbDBg==
  1223. dependencies:
  1224. "@babel/runtime" "^7.17.9"
  1225. "@polkadot/x-global" "9.2.1"
  1226. "@polkadot/x-ws@^9.2.1":
  1227. version "9.2.1"
  1228. resolved "https://registry.npmjs.org/@polkadot/x-ws/-/x-ws-9.2.1.tgz"
  1229. integrity sha512-/71fhf2AVW34xbw5LJUjpDKAB2DUfxMWNZFAQqMG46RiP4V9lQe6t3+ZYzTBufGOvyKbhYABvz5CnQBbA8mUYQ==
  1230. dependencies:
  1231. "@babel/runtime" "^7.17.9"
  1232. "@polkadot/x-global" "9.2.1"
  1233. "@types/websocket" "^1.0.5"
  1234. websocket "^1.0.34"
  1235. "@scure/base@1.0.0":
  1236. version "1.0.0"
  1237. resolved "https://registry.npmjs.org/@scure/base/-/base-1.0.0.tgz"
  1238. integrity sha512-gIVaYhUsy+9s58m/ETjSJVKHhKTBMmcRb9cEV5/5dwvfDlfORjKrFsDeDHWRrm6RjcPvCLZFwGJjAjLj1gg4HA==
  1239. "@stablelib/binary@^1.0.1":
  1240. version "1.0.1"
  1241. resolved "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz"
  1242. integrity sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==
  1243. dependencies:
  1244. "@stablelib/int" "^1.0.1"
  1245. "@stablelib/bytes@^1.0.1":
  1246. version "1.0.1"
  1247. resolved "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz"
  1248. integrity sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==
  1249. "@stablelib/int@^1.0.1":
  1250. version "1.0.1"
  1251. resolved "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz"
  1252. integrity sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==
  1253. "@stablelib/keyagreement@^1.0.1":
  1254. version "1.0.1"
  1255. resolved "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz"
  1256. integrity sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==
  1257. dependencies:
  1258. "@stablelib/bytes" "^1.0.1"
  1259. "@stablelib/random@^1.0.1":
  1260. version "1.0.1"
  1261. resolved "https://registry.npmjs.org/@stablelib/random/-/random-1.0.1.tgz"
  1262. integrity sha512-zOh+JHX3XG9MSfIB0LZl/YwPP9w3o6WBiJkZvjPoKKu5LKFW4OLV71vMxWp9qG5T43NaWyn0QQTWgqCdO+yOBQ==
  1263. dependencies:
  1264. "@stablelib/binary" "^1.0.1"
  1265. "@stablelib/wipe" "^1.0.1"
  1266. "@stablelib/wipe@^1.0.1":
  1267. version "1.0.1"
  1268. resolved "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz"
  1269. integrity sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==
  1270. "@stablelib/x25519@^1.0.1":
  1271. version "1.0.1"
  1272. resolved "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.1.tgz"
  1273. integrity sha512-nmyUI2ZArxYDh1PhdoSCPEtlTYE0DYugp2qqx8OtjrX3Hmh7boIlDsD0X71ihAxzxqJf3TyQqN/p58ToWhnp+Q==
  1274. dependencies:
  1275. "@stablelib/keyagreement" "^1.0.1"
  1276. "@stablelib/random" "^1.0.1"
  1277. "@stablelib/wipe" "^1.0.1"
  1278. "@substrate/connect-extension-protocol@^1.0.0":
  1279. version "1.0.0"
  1280. resolved "https://registry.npmjs.org/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.0.tgz"
  1281. integrity sha512-nFVuKdp71hMd/MGlllAOh+a2hAqt8m6J2G0aSsS/RcALZexxF9jodbFc62ni8RDtJboeOfXAHhenYOANvJKPIg==
  1282. "@substrate/connect@0.7.5":
  1283. version "0.7.5"
  1284. resolved "https://registry.npmjs.org/@substrate/connect/-/connect-0.7.5.tgz"
  1285. integrity sha512-sdAZ6IGuTNxRGlH/O+6IaXvkYzZFwMK03VbQMgxUzry9dz1+JzyaNf8iOTVHxhMIUZc0h0E90JQz/hNiUYPlUw==
  1286. dependencies:
  1287. "@substrate/connect-extension-protocol" "^1.0.0"
  1288. "@substrate/smoldot-light" "0.6.16"
  1289. eventemitter3 "^4.0.7"
  1290. "@substrate/smoldot-light@0.6.16":
  1291. version "0.6.16"
  1292. resolved "https://registry.npmjs.org/@substrate/smoldot-light/-/smoldot-light-0.6.16.tgz"
  1293. integrity sha512-Ej0ZdNPTW0EXbp45gv/5Kt/JV+c9cmRZRYAXg+EALxXPm0hW9h2QdVLm61A2PAskOGptW4wnJ1WzzruaenwAXQ==
  1294. dependencies:
  1295. buffer "^6.0.1"
  1296. pako "^2.0.4"
  1297. websocket "^1.0.32"
  1298. "@substrate/ss58-registry@^1.18.0":
  1299. version "1.29.0"
  1300. resolved "https://registry.npmjs.org/@substrate/ss58-registry/-/ss58-registry-1.29.0.tgz"
  1301. integrity sha512-KTqwZgTjtWPhCAUJJx9qswP/p9cRKUU9GOHYUDKNdISFDiFafWmpI54JHfYLkgjvkSKEUgRZnvLpe0LMF1fXvw==
  1302. "@types/bn.js@^4.11.4":
  1303. version "4.11.6"
  1304. resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz"
  1305. integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==
  1306. dependencies:
  1307. "@types/node" "*"
  1308. "@types/bn.js@^5.1.0":
  1309. version "5.1.1"
  1310. resolved "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz"
  1311. integrity sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==
  1312. dependencies:
  1313. "@types/node" "*"
  1314. "@types/deasync@^0.1.0":
  1315. version "0.1.2"
  1316. resolved "https://registry.npmjs.org/@types/deasync/-/deasync-0.1.2.tgz"
  1317. integrity sha512-sCBFlGCEmZMPS06wdnQELcYzyUYio2K1Hp6g0fjJSKP1jkGKQpIdjRNUQAvdSCCJCWxIMCkX2CL7pi4BCm8Ydg==
  1318. "@types/eslint-scope@^3.7.0":
  1319. version "3.7.3"
  1320. resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz"
  1321. integrity sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==
  1322. dependencies:
  1323. "@types/eslint" "*"
  1324. "@types/estree" "*"
  1325. "@types/eslint@*":
  1326. version "8.4.1"
  1327. resolved "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.1.tgz"
  1328. integrity sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==
  1329. dependencies:
  1330. "@types/estree" "*"
  1331. "@types/json-schema" "*"
  1332. "@types/estree@*", "@types/estree@^0.0.50":
  1333. version "0.0.50"
  1334. resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz"
  1335. integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==
  1336. "@types/ip-regex@^3.0.0":
  1337. version "3.0.0"
  1338. resolved "https://registry.npmjs.org/@types/ip-regex/-/ip-regex-3.0.0.tgz"
  1339. integrity sha512-4j26qYCikXbIaypgqdGQhhIvYfTR+40i/05jVQB8oc57RbROEkBocdIUZO7fOhyqJsx7WRY36ySW8hoUZn7Fgw==
  1340. "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8":
  1341. version "7.0.9"
  1342. resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"
  1343. integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
  1344. "@types/node-fetch@^2.6.1":
  1345. version "2.6.1"
  1346. resolved "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.1.tgz"
  1347. integrity sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==
  1348. dependencies:
  1349. "@types/node" "*"
  1350. form-data "^3.0.0"
  1351. "@types/node@*":
  1352. version "17.0.17"
  1353. resolved "https://registry.npmjs.org/@types/node/-/node-17.0.17.tgz"
  1354. integrity sha512-e8PUNQy1HgJGV3iU/Bp2+D/DXh3PYeyli8LgIwsQcs1Ar1LoaWHSIT6Rw+H2rNJmiq6SNWiDytfx8+gYj7wDHw==
  1355. "@types/websocket@^1.0.5":
  1356. version "1.0.5"
  1357. resolved "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.5.tgz"
  1358. integrity sha512-NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ==
  1359. dependencies:
  1360. "@types/node" "*"
  1361. "@walletconnect/client@2.0.0-alpha.26":
  1362. version "2.0.0-alpha.26"
  1363. resolved "https://registry.npmjs.org/@walletconnect/client/-/client-2.0.0-alpha.26.tgz"
  1364. integrity sha512-IQxmaNjRbcJ12SXZpBs5IRv1Q7MMcP/Kl5ST4sdLKmZEiTOaEYMPPhqhSZ/sxOs8uAQhEjZ/25NWUrjZZnTSOg==
  1365. dependencies:
  1366. "@json-rpc-tools/provider" "^1.6.3"
  1367. "@json-rpc-tools/utils" "^1.6.3"
  1368. "@pedrouid/pino-utils" "^1.0.1"
  1369. "@walletconnect/types" "^2.0.0-alpha.26"
  1370. "@walletconnect/utils" "^2.0.0-alpha.26"
  1371. enc-utils "^3.0.0"
  1372. keyvaluestorage "^0.7.1"
  1373. pino "^6.7.0"
  1374. pino-pretty "^4.3.0"
  1375. relay-provider "^1.2.0"
  1376. safe-json-utils "^1.1.1"
  1377. "@walletconnect/crypto@^1.0.1":
  1378. version "1.0.1"
  1379. resolved "https://registry.npmjs.org/@walletconnect/crypto/-/crypto-1.0.1.tgz"
  1380. integrity sha512-IgUReNrycIFxkGgq8YT9HsosCkhutakWD9Q411PR0aJfxpEa/VKJeaLRtoz6DvJpztWStwhIHnAbBoOVR72a6g==
  1381. dependencies:
  1382. "@walletconnect/encoding" "^1.0.0"
  1383. "@walletconnect/environment" "^1.0.0"
  1384. "@walletconnect/randombytes" "^1.0.1"
  1385. aes-js "^3.1.2"
  1386. hash.js "^1.1.7"
  1387. "@walletconnect/ecies-25519@^1.0.1":
  1388. version "1.0.1"
  1389. resolved "https://registry.npmjs.org/@walletconnect/ecies-25519/-/ecies-25519-1.0.1.tgz"
  1390. integrity sha512-IK3bYxmYbnFicO69qehPuacwfa3dU1Lw20YdvfLg3IH/WCCmo5EKZu5puaQCXep42uReYE4CQ5gcVSC4PCOLcw==
  1391. dependencies:
  1392. "@stablelib/x25519" "^1.0.1"
  1393. "@walletconnect/crypto" "^1.0.1"
  1394. "@walletconnect/encoding" "^1.0.0"
  1395. "@walletconnect/encoding@^1.0.0":
  1396. version "1.0.0"
  1397. resolved "https://registry.npmjs.org/@walletconnect/encoding/-/encoding-1.0.0.tgz"
  1398. integrity sha512-4nkJFnS0QF5JdieG/3VPD1/iEWkLSZ14EBInLZ00RWxmC6EMZrzAeHNAWIgm+xP3NK0lqz+7lEsmWGtcl5gYnQ==
  1399. dependencies:
  1400. is-typedarray "1.0.0"
  1401. typedarray-to-buffer "3.1.5"
  1402. "@walletconnect/environment@^1.0.0":
  1403. version "1.0.0"
  1404. resolved "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.0.tgz"
  1405. integrity sha512-4BwqyWy6KpSvkocSaV7WR3BlZfrxLbJSLkg+j7Gl6pTDE+U55lLhJvQaMuDVazXYxcjBsG09k7UlH7cGiUI5vQ==
  1406. "@walletconnect/jsonrpc-types@^1.0.0":
  1407. version "1.0.0"
  1408. resolved "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.0.tgz"
  1409. integrity sha512-11QXNq5H1PKZk7bP8SxgmCw3HRaDuPOVE+wObqEvmhc7OWYUZqfuaaMb+OXGRSOHL3sbC+XHfdeCxFTMXSFyng==
  1410. dependencies:
  1411. keyvaluestorage-interface "^1.0.0"
  1412. "@walletconnect/jsonrpc-utils@^1.0.0":
  1413. version "1.0.0"
  1414. resolved "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.0.tgz"
  1415. integrity sha512-qUHbKUK6sHeHn67qtHZoLoYk5hS6x1arTPjKDRkY93/6Fx+ZmNIpdm1owX3l6aYueyegJ7mz43FpvYHUqJ8xcw==
  1416. dependencies:
  1417. "@walletconnect/environment" "^1.0.0"
  1418. "@walletconnect/jsonrpc-types" "^1.0.0"
  1419. "@walletconnect/logger@^1.0.0":
  1420. version "1.0.0"
  1421. resolved "https://registry.npmjs.org/@walletconnect/logger/-/logger-1.0.0.tgz"
  1422. integrity sha512-micLp42wwwDogbN+lKZjhk2t9oc7A6IvA2UR/3T+Xeh12eewZKfgrvZSu6CYijYLgiodjBxAwn0dC4a3ywXv/w==
  1423. dependencies:
  1424. pino "^6.7.0"
  1425. "@walletconnect/randombytes@^1.0.1":
  1426. version "1.0.1"
  1427. resolved "https://registry.npmjs.org/@walletconnect/randombytes/-/randombytes-1.0.1.tgz"
  1428. integrity sha512-YJTyq69i0PtxVg7osEpKfvjTaWuAsR49QEcqGKZRKVQWMbGXBZ65fovemK/SRgtiFRv0V8PwsrlKSheqzfPNcg==
  1429. dependencies:
  1430. "@walletconnect/encoding" "^1.0.0"
  1431. "@walletconnect/environment" "^1.0.0"
  1432. randombytes "^2.1.0"
  1433. "@walletconnect/relay-api@^1.0.2":
  1434. version "1.0.2"
  1435. resolved "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.2.tgz"
  1436. integrity sha512-6FZP6pAQwQttncuWAKC0lGvNm0SCiBEfpkdzURMoGIk4H3u5PpiUHNt9wekPzDl5CYIdVhN2RheH6uS8SuDAZw==
  1437. dependencies:
  1438. "@walletconnect/jsonrpc-types" "^1.0.0"
  1439. "@walletconnect/safe-json@^1.0.0":
  1440. version "1.0.0"
  1441. resolved "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz"
  1442. integrity sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg==
  1443. "@walletconnect/types@^2.0.0-alpha.26", "@walletconnect/types@^2.0.0-beta.23":
  1444. version "2.0.0-beta.23"
  1445. resolved "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-beta.23.tgz"
  1446. integrity sha512-zYn26dvp/HsZJMUCFsJoK255yLp+Z9tGIomVO4outiZM1wa0tAUwma2QzoGyKDSgK4EbsYHFcWjSUX2kqh8quQ==
  1447. dependencies:
  1448. "@walletconnect/jsonrpc-types" "^1.0.0"
  1449. keyvaluestorage "^0.7.1"
  1450. pino "^6.7.0"
  1451. pino-pretty "^4.3.0"
  1452. "@walletconnect/utils@^2.0.0-alpha.26":
  1453. version "2.0.0-beta.23"
  1454. resolved "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-beta.23.tgz"
  1455. integrity sha512-AH38tD5P6wWo5+D+pMJYePHdu0008fI6bE8NlFy0/o7qxzCVs7GAGWnyDNSHFUg7zgu+N120jsq2mBg2bNFxLQ==
  1456. dependencies:
  1457. "@walletconnect/ecies-25519" "^1.0.1"
  1458. "@walletconnect/encoding" "^1.0.0"
  1459. "@walletconnect/jsonrpc-utils" "^1.0.0"
  1460. "@walletconnect/logger" "^1.0.0"
  1461. "@walletconnect/relay-api" "^1.0.2"
  1462. "@walletconnect/safe-json" "^1.0.0"
  1463. "@walletconnect/types" "^2.0.0-beta.23"
  1464. "@walletconnect/window-getters" "^1.0.0"
  1465. "@walletconnect/window-metadata" "^1.0.0"
  1466. lodash.union "^4.6.0"
  1467. query-string "^6.13.5"
  1468. "@walletconnect/window-getters@^1.0.0":
  1469. version "1.0.0"
  1470. resolved "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.0.tgz"
  1471. integrity sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA==
  1472. "@walletconnect/window-metadata@^1.0.0":
  1473. version "1.0.0"
  1474. resolved "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.0.tgz"
  1475. integrity sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==
  1476. dependencies:
  1477. "@walletconnect/window-getters" "^1.0.0"
  1478. "@webassemblyjs/ast@1.11.1":
  1479. version "1.11.1"
  1480. resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz"
  1481. integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==
  1482. dependencies:
  1483. "@webassemblyjs/helper-numbers" "1.11.1"
  1484. "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
  1485. "@webassemblyjs/floating-point-hex-parser@1.11.1":
  1486. version "1.11.1"
  1487. resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz"
  1488. integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==
  1489. "@webassemblyjs/helper-api-error@1.11.1":
  1490. version "1.11.1"
  1491. resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz"
  1492. integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==
  1493. "@webassemblyjs/helper-buffer@1.11.1":
  1494. version "1.11.1"
  1495. resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz"
  1496. integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==
  1497. "@webassemblyjs/helper-numbers@1.11.1":
  1498. version "1.11.1"
  1499. resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz"
  1500. integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==
  1501. dependencies:
  1502. "@webassemblyjs/floating-point-hex-parser" "1.11.1"
  1503. "@webassemblyjs/helper-api-error" "1.11.1"
  1504. "@xtuc/long" "4.2.2"
  1505. "@webassemblyjs/helper-wasm-bytecode@1.11.1":
  1506. version "1.11.1"
  1507. resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz"
  1508. integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==
  1509. "@webassemblyjs/helper-wasm-section@1.11.1":
  1510. version "1.11.1"
  1511. resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz"
  1512. integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==
  1513. dependencies:
  1514. "@webassemblyjs/ast" "1.11.1"
  1515. "@webassemblyjs/helper-buffer" "1.11.1"
  1516. "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
  1517. "@webassemblyjs/wasm-gen" "1.11.1"
  1518. "@webassemblyjs/ieee754@1.11.1":
  1519. version "1.11.1"
  1520. resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz"
  1521. integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==
  1522. dependencies:
  1523. "@xtuc/ieee754" "^1.2.0"
  1524. "@webassemblyjs/leb128@1.11.1":
  1525. version "1.11.1"
  1526. resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz"
  1527. integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==
  1528. dependencies:
  1529. "@xtuc/long" "4.2.2"
  1530. "@webassemblyjs/utf8@1.11.1":
  1531. version "1.11.1"
  1532. resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz"
  1533. integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==
  1534. "@webassemblyjs/wasm-edit@1.11.1":
  1535. version "1.11.1"
  1536. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz"
  1537. integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==
  1538. dependencies:
  1539. "@webassemblyjs/ast" "1.11.1"
  1540. "@webassemblyjs/helper-buffer" "1.11.1"
  1541. "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
  1542. "@webassemblyjs/helper-wasm-section" "1.11.1"
  1543. "@webassemblyjs/wasm-gen" "1.11.1"
  1544. "@webassemblyjs/wasm-opt" "1.11.1"
  1545. "@webassemblyjs/wasm-parser" "1.11.1"
  1546. "@webassemblyjs/wast-printer" "1.11.1"
  1547. "@webassemblyjs/wasm-gen@1.11.1":
  1548. version "1.11.1"
  1549. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz"
  1550. integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==
  1551. dependencies:
  1552. "@webassemblyjs/ast" "1.11.1"
  1553. "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
  1554. "@webassemblyjs/ieee754" "1.11.1"
  1555. "@webassemblyjs/leb128" "1.11.1"
  1556. "@webassemblyjs/utf8" "1.11.1"
  1557. "@webassemblyjs/wasm-opt@1.11.1":
  1558. version "1.11.1"
  1559. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz"
  1560. integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==
  1561. dependencies:
  1562. "@webassemblyjs/ast" "1.11.1"
  1563. "@webassemblyjs/helper-buffer" "1.11.1"
  1564. "@webassemblyjs/wasm-gen" "1.11.1"
  1565. "@webassemblyjs/wasm-parser" "1.11.1"
  1566. "@webassemblyjs/wasm-parser@1.11.1":
  1567. version "1.11.1"
  1568. resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz"
  1569. integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==
  1570. dependencies:
  1571. "@webassemblyjs/ast" "1.11.1"
  1572. "@webassemblyjs/helper-api-error" "1.11.1"
  1573. "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
  1574. "@webassemblyjs/ieee754" "1.11.1"
  1575. "@webassemblyjs/leb128" "1.11.1"
  1576. "@webassemblyjs/utf8" "1.11.1"
  1577. "@webassemblyjs/wast-printer@1.11.1":
  1578. version "1.11.1"
  1579. resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz"
  1580. integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==
  1581. dependencies:
  1582. "@webassemblyjs/ast" "1.11.1"
  1583. "@xtuc/long" "4.2.2"
  1584. "@webpack-cli/configtest@^1.1.1":
  1585. version "1.1.1"
  1586. resolved "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz"
  1587. integrity sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==
  1588. "@webpack-cli/info@^1.4.1":
  1589. version "1.4.1"
  1590. resolved "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz"
  1591. integrity sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==
  1592. dependencies:
  1593. envinfo "^7.7.3"
  1594. "@webpack-cli/serve@^1.6.1":
  1595. version "1.6.1"
  1596. resolved "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz"
  1597. integrity sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==
  1598. "@xtuc/ieee754@^1.2.0":
  1599. version "1.2.0"
  1600. resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz"
  1601. integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
  1602. "@xtuc/long@4.2.2":
  1603. version "4.2.2"
  1604. resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz"
  1605. integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
  1606. abab@^2.0.5:
  1607. version "2.0.5"
  1608. resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz"
  1609. integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
  1610. acorn-import-assertions@^1.7.6:
  1611. version "1.8.0"
  1612. resolved "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz"
  1613. integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==
  1614. acorn-jsx@^5.2.0:
  1615. version "5.3.2"
  1616. resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
  1617. integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
  1618. acorn@^7.1.1:
  1619. version "7.4.1"
  1620. resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
  1621. integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
  1622. acorn@^8.4.1:
  1623. version "8.7.0"
  1624. resolved "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz"
  1625. integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
  1626. aes-js@^3.1.2:
  1627. version "3.1.2"
  1628. resolved "https://registry.npmjs.org/aes-js/-/aes-js-3.1.2.tgz"
  1629. integrity sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==
  1630. ajv-keywords@^3.5.2:
  1631. version "3.5.2"
  1632. resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
  1633. integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
  1634. ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
  1635. version "6.12.6"
  1636. resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
  1637. integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
  1638. dependencies:
  1639. fast-deep-equal "^3.1.1"
  1640. fast-json-stable-stringify "^2.0.0"
  1641. json-schema-traverse "^0.4.1"
  1642. uri-js "^4.2.2"
  1643. ansi-escapes@^4.2.1:
  1644. version "4.3.2"
  1645. resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
  1646. integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
  1647. dependencies:
  1648. type-fest "^0.21.3"
  1649. ansi-regex@^2.0.0:
  1650. version "2.1.1"
  1651. resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
  1652. integrity "sha1-w7M6te42DYbg5ijwRorn7yfWVN8= sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="
  1653. ansi-regex@^4.1.0:
  1654. version "4.1.0"
  1655. resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
  1656. integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
  1657. ansi-regex@^5.0.1:
  1658. version "5.0.1"
  1659. resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
  1660. integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
  1661. ansi-styles@^3.2.0, ansi-styles@^3.2.1:
  1662. version "3.2.1"
  1663. resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
  1664. integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
  1665. dependencies:
  1666. color-convert "^1.9.0"
  1667. ansi-styles@^4.1.0:
  1668. version "4.3.0"
  1669. resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
  1670. integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
  1671. dependencies:
  1672. color-convert "^2.0.1"
  1673. aproba@^1.0.3:
  1674. version "1.2.0"
  1675. resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"
  1676. integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
  1677. are-we-there-yet@~1.1.2:
  1678. version "1.1.7"
  1679. resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz"
  1680. integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==
  1681. dependencies:
  1682. delegates "^1.0.0"
  1683. readable-stream "^2.0.6"
  1684. argparse@^1.0.7:
  1685. version "1.0.10"
  1686. resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
  1687. integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
  1688. dependencies:
  1689. sprintf-js "~1.0.2"
  1690. args@^5.0.1:
  1691. version "5.0.1"
  1692. resolved "https://registry.npmjs.org/args/-/args-5.0.1.tgz"
  1693. integrity sha512-1kqmFCFsPffavQFGt8OxJdIcETti99kySRUPMpOhaGjL6mRJn8HFU1OxKY5bMqfZKUwTQc1mZkAjmGYaVOHFtQ==
  1694. dependencies:
  1695. camelcase "5.0.0"
  1696. chalk "2.4.2"
  1697. leven "2.1.0"
  1698. mri "1.1.4"
  1699. asn1.js@^5.2.0:
  1700. version "5.4.1"
  1701. resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz"
  1702. integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
  1703. dependencies:
  1704. bn.js "^4.0.0"
  1705. inherits "^2.0.1"
  1706. minimalistic-assert "^1.0.0"
  1707. safer-buffer "^2.1.0"
  1708. astral-regex@^1.0.0:
  1709. version "1.0.0"
  1710. resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"
  1711. integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
  1712. async-limiter@~1.0.0:
  1713. version "1.0.1"
  1714. resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"
  1715. integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
  1716. asynckit@^0.4.0:
  1717. version "0.4.0"
  1718. resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
  1719. integrity "sha1-x57Zf380y48robyXkLzDZkdLS3k= sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
  1720. atomic-sleep@^1.0.0:
  1721. version "1.0.0"
  1722. resolved "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz"
  1723. integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==
  1724. axios@^0.21.0:
  1725. version "0.21.4"
  1726. resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"
  1727. integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==
  1728. dependencies:
  1729. follow-redirects "^1.14.0"
  1730. babel-loader@^8.0.6:
  1731. version "8.2.3"
  1732. resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz"
  1733. integrity sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==
  1734. dependencies:
  1735. find-cache-dir "^3.3.1"
  1736. loader-utils "^1.4.0"
  1737. make-dir "^3.1.0"
  1738. schema-utils "^2.6.5"
  1739. babel-plugin-dynamic-import-node@^2.3.3:
  1740. version "2.3.3"
  1741. resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"
  1742. integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
  1743. dependencies:
  1744. object.assign "^4.1.0"
  1745. babel-plugin-polyfill-corejs2@^0.3.0:
  1746. version "0.3.1"
  1747. resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz"
  1748. integrity sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==
  1749. dependencies:
  1750. "@babel/compat-data" "^7.13.11"
  1751. "@babel/helper-define-polyfill-provider" "^0.3.1"
  1752. semver "^6.1.1"
  1753. babel-plugin-polyfill-corejs3@^0.5.0:
  1754. version "0.5.2"
  1755. resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz"
  1756. integrity sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==
  1757. dependencies:
  1758. "@babel/helper-define-polyfill-provider" "^0.3.1"
  1759. core-js-compat "^3.21.0"
  1760. babel-plugin-polyfill-regenerator@^0.3.0:
  1761. version "0.3.1"
  1762. resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz"
  1763. integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==
  1764. dependencies:
  1765. "@babel/helper-define-polyfill-provider" "^0.3.1"
  1766. balanced-match@^1.0.0:
  1767. version "1.0.2"
  1768. resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
  1769. integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
  1770. base-x@^3.0.2, base-x@^3.0.4:
  1771. version "3.0.9"
  1772. resolved "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz"
  1773. integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==
  1774. dependencies:
  1775. safe-buffer "^5.0.1"
  1776. base64-js@^1.3.1:
  1777. version "1.5.1"
  1778. resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
  1779. integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
  1780. better-sqlite3@^7.1.2:
  1781. version "7.5.0"
  1782. resolved "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-7.5.0.tgz"
  1783. integrity sha512-6FdG9DoytYGDhLW7VWW1vxjEz7xHkqK6LnaUQYA8d6GHNgZhu9PFX2xwKEEnSBRoT1J4PjTUPeg217ShxNmuPg==
  1784. dependencies:
  1785. bindings "^1.5.0"
  1786. prebuild-install "^7.0.0"
  1787. big.js@^5.2.2:
  1788. version "5.2.2"
  1789. resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
  1790. integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
  1791. bindings@^1.5.0:
  1792. version "1.5.0"
  1793. resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz"
  1794. integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
  1795. dependencies:
  1796. file-uri-to-path "1.0.0"
  1797. bip39@^2.5.0:
  1798. version "2.6.0"
  1799. resolved "https://registry.npmjs.org/bip39/-/bip39-2.6.0.tgz"
  1800. integrity sha512-RrnQRG2EgEoqO24ea+Q/fftuPUZLmrEM3qNhhGsA3PbaXaCW791LTzPuVyx/VprXQcTbPJ3K3UeTna8ZnVl2sg==
  1801. dependencies:
  1802. create-hash "^1.1.0"
  1803. pbkdf2 "^3.0.9"
  1804. randombytes "^2.0.1"
  1805. safe-buffer "^5.0.1"
  1806. unorm "^1.3.3"
  1807. bip66@^1.1.5:
  1808. version "1.1.5"
  1809. resolved "https://registry.npmjs.org/bip66/-/bip66-1.1.5.tgz"
  1810. integrity "sha1-AfqHSHhcpwlV1QESF9GzE5lpyiI= sha512-nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw=="
  1811. dependencies:
  1812. safe-buffer "^5.0.1"
  1813. bl@^4.0.3:
  1814. version "4.1.0"
  1815. resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
  1816. integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==
  1817. dependencies:
  1818. buffer "^5.5.0"
  1819. inherits "^2.0.4"
  1820. readable-stream "^3.4.0"
  1821. blakejs@^1.1.0:
  1822. version "1.1.1"
  1823. resolved "https://registry.npmjs.org/blakejs/-/blakejs-1.1.1.tgz"
  1824. integrity sha512-bLG6PHOCZJKNshTjGRBvET0vTciwQE6zFKOKKXPDJfwFBd4Ac0yBfPZqcGvGJap50l7ktvlpFqc2jGVaUgbJgg==
  1825. bn.js@4.12.0, bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.8, bn.js@^4.11.9, bn.js@^5.0.0, bn.js@^5.1.1, bn.js@^5.2.0:
  1826. version "4.12.0"
  1827. resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
  1828. integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
  1829. bn.js@^5.1.2:
  1830. version "5.2.0"
  1831. resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz"
  1832. integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==
  1833. brace-expansion@^1.1.7:
  1834. version "1.1.11"
  1835. resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
  1836. integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
  1837. dependencies:
  1838. balanced-match "^1.0.0"
  1839. concat-map "0.0.1"
  1840. brorand@^1.0.1, brorand@^1.1.0:
  1841. version "1.1.0"
  1842. resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"
  1843. integrity "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w=="
  1844. browserify-aes@^1.0.0, browserify-aes@^1.0.4, browserify-aes@^1.0.6:
  1845. version "1.2.0"
  1846. resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"
  1847. integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
  1848. dependencies:
  1849. buffer-xor "^1.0.3"
  1850. cipher-base "^1.0.0"
  1851. create-hash "^1.1.0"
  1852. evp_bytestokey "^1.0.3"
  1853. inherits "^2.0.1"
  1854. safe-buffer "^5.0.1"
  1855. browserify-cipher@^1.0.0:
  1856. version "1.0.1"
  1857. resolved "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz"
  1858. integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
  1859. dependencies:
  1860. browserify-aes "^1.0.4"
  1861. browserify-des "^1.0.0"
  1862. evp_bytestokey "^1.0.0"
  1863. browserify-des@^1.0.0:
  1864. version "1.0.2"
  1865. resolved "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz"
  1866. integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
  1867. dependencies:
  1868. cipher-base "^1.0.1"
  1869. des.js "^1.0.0"
  1870. inherits "^2.0.1"
  1871. safe-buffer "^5.1.2"
  1872. browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
  1873. version "4.1.0"
  1874. resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz"
  1875. integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
  1876. dependencies:
  1877. bn.js "^5.0.0"
  1878. randombytes "^2.0.1"
  1879. browserify-sign@^4.0.0:
  1880. version "4.2.1"
  1881. resolved "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz"
  1882. integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
  1883. dependencies:
  1884. bn.js "^5.1.1"
  1885. browserify-rsa "^4.0.1"
  1886. create-hash "^1.2.0"
  1887. create-hmac "^1.1.7"
  1888. elliptic "^6.5.3"
  1889. inherits "^2.0.4"
  1890. parse-asn1 "^5.1.5"
  1891. readable-stream "^3.6.0"
  1892. safe-buffer "^5.2.0"
  1893. browserslist@^4.14.5, browserslist@^4.17.5, browserslist@^4.19.1:
  1894. version "4.19.1"
  1895. resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz"
  1896. integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==
  1897. dependencies:
  1898. caniuse-lite "^1.0.30001286"
  1899. electron-to-chromium "^1.4.17"
  1900. escalade "^3.1.1"
  1901. node-releases "^2.0.1"
  1902. picocolors "^1.0.0"
  1903. bs58@^4.0.1:
  1904. version "4.0.1"
  1905. resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz"
  1906. integrity "sha1-vhYedsNU9veIrkBx9j806MTwpCo= sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw=="
  1907. dependencies:
  1908. base-x "^3.0.2"
  1909. buffer-from@^1.0.0:
  1910. version "1.1.2"
  1911. resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
  1912. integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
  1913. buffer-xor@^1.0.3:
  1914. version "1.0.3"
  1915. resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"
  1916. integrity "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="
  1917. buffer@^5.2.1, buffer@^5.5.0:
  1918. version "5.7.1"
  1919. resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
  1920. integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
  1921. dependencies:
  1922. base64-js "^1.3.1"
  1923. ieee754 "^1.1.13"
  1924. buffer@^6.0.1:
  1925. version "6.0.3"
  1926. resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"
  1927. integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==
  1928. dependencies:
  1929. base64-js "^1.3.1"
  1930. ieee754 "^1.2.1"
  1931. bufferutil@^4.0.1:
  1932. version "4.0.6"
  1933. resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz"
  1934. integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==
  1935. dependencies:
  1936. node-gyp-build "^4.3.0"
  1937. call-bind@^1.0.0:
  1938. version "1.0.2"
  1939. resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
  1940. integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
  1941. dependencies:
  1942. function-bind "^1.1.1"
  1943. get-intrinsic "^1.0.2"
  1944. callsites@^3.0.0:
  1945. version "3.1.0"
  1946. resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
  1947. integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
  1948. camel-case@^3.0.0:
  1949. version "3.0.0"
  1950. resolved "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz"
  1951. integrity "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w=="
  1952. dependencies:
  1953. no-case "^2.2.0"
  1954. upper-case "^1.1.1"
  1955. camelcase@5.0.0:
  1956. version "5.0.0"
  1957. resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz"
  1958. integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==
  1959. camelcase@^5.2.0:
  1960. version "5.3.1"
  1961. resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
  1962. integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
  1963. caniuse-lite@^1.0.30001286:
  1964. version "1.0.30001312"
  1965. resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz"
  1966. integrity sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==
  1967. canvas-renderer@~2.1.1:
  1968. version "2.1.1"
  1969. resolved "https://registry.npmjs.org/canvas-renderer/-/canvas-renderer-2.1.1.tgz"
  1970. integrity sha512-/V0XetN7s1Mk3NO7x2wxPZYv0pLMQtGAhecuOuKR88beiYCUle1AbCcFZNLu+4NVzi9RVHS0rXtIgzPEaKidLw==
  1971. chalk@2.4.2, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.2:
  1972. version "2.4.2"
  1973. resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
  1974. integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
  1975. dependencies:
  1976. ansi-styles "^3.2.1"
  1977. escape-string-regexp "^1.0.5"
  1978. supports-color "^5.3.0"
  1979. chalk@^4.0.0, chalk@^4.1.0:
  1980. version "4.1.2"
  1981. resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
  1982. integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
  1983. dependencies:
  1984. ansi-styles "^4.1.0"
  1985. supports-color "^7.1.0"
  1986. change-case@^3.0.2:
  1987. version "3.1.0"
  1988. resolved "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz"
  1989. integrity sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==
  1990. dependencies:
  1991. camel-case "^3.0.0"
  1992. constant-case "^2.0.0"
  1993. dot-case "^2.1.0"
  1994. header-case "^1.0.0"
  1995. is-lower-case "^1.1.0"
  1996. is-upper-case "^1.1.0"
  1997. lower-case "^1.1.1"
  1998. lower-case-first "^1.0.0"
  1999. no-case "^2.3.2"
  2000. param-case "^2.1.0"
  2001. pascal-case "^2.0.0"
  2002. path-case "^2.1.0"
  2003. sentence-case "^2.1.0"
  2004. snake-case "^2.1.0"
  2005. swap-case "^1.1.0"
  2006. title-case "^2.1.0"
  2007. upper-case "^1.1.1"
  2008. upper-case-first "^1.1.0"
  2009. chardet@^0.7.0:
  2010. version "0.7.0"
  2011. resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"
  2012. integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
  2013. chownr@^1.1.1:
  2014. version "1.1.4"
  2015. resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz"
  2016. integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
  2017. chrome-trace-event@^1.0.2:
  2018. version "1.0.3"
  2019. resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"
  2020. integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
  2021. cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
  2022. version "1.0.4"
  2023. resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz"
  2024. integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
  2025. dependencies:
  2026. inherits "^2.0.1"
  2027. safe-buffer "^5.0.1"
  2028. cli-cursor@^3.1.0:
  2029. version "3.1.0"
  2030. resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz"
  2031. integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
  2032. dependencies:
  2033. restore-cursor "^3.1.0"
  2034. cli-width@^3.0.0:
  2035. version "3.0.0"
  2036. resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz"
  2037. integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
  2038. clone-deep@^4.0.1:
  2039. version "4.0.1"
  2040. resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz"
  2041. integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
  2042. dependencies:
  2043. is-plain-object "^2.0.4"
  2044. kind-of "^6.0.2"
  2045. shallow-clone "^3.0.0"
  2046. code-point-at@^1.0.0:
  2047. version "1.1.0"
  2048. resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
  2049. integrity "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA=="
  2050. color-convert@^1.9.0, color-convert@^1.9.3:
  2051. version "1.9.3"
  2052. resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
  2053. integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
  2054. dependencies:
  2055. color-name "1.1.3"
  2056. color-convert@^2.0.1:
  2057. version "2.0.1"
  2058. resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
  2059. integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
  2060. dependencies:
  2061. color-name "~1.1.4"
  2062. color-name@1.1.3, color-name@^1.0.0:
  2063. version "1.1.3"
  2064. resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
  2065. integrity "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
  2066. color-name@~1.1.4:
  2067. version "1.1.4"
  2068. resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
  2069. integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
  2070. color-string@^1.6.0:
  2071. version "1.9.0"
  2072. resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz"
  2073. integrity sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==
  2074. dependencies:
  2075. color-name "^1.0.0"
  2076. simple-swizzle "^0.2.2"
  2077. color@^3.2.1:
  2078. version "3.2.1"
  2079. resolved "https://registry.npmjs.org/color/-/color-3.2.1.tgz"
  2080. integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==
  2081. dependencies:
  2082. color-convert "^1.9.3"
  2083. color-string "^1.6.0"
  2084. colorette@^2.0.14:
  2085. version "2.0.16"
  2086. resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz"
  2087. integrity sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==
  2088. combined-stream@^1.0.8:
  2089. version "1.0.8"
  2090. resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
  2091. integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
  2092. dependencies:
  2093. delayed-stream "~1.0.0"
  2094. commander@^2.20.0:
  2095. version "2.20.3"
  2096. resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"
  2097. integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
  2098. commander@^7.0.0:
  2099. version "7.2.0"
  2100. resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"
  2101. integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
  2102. commondir@^1.0.1:
  2103. version "1.0.1"
  2104. resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
  2105. integrity "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="
  2106. concat-map@0.0.1:
  2107. version "0.0.1"
  2108. resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
  2109. integrity "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
  2110. console-control-strings@^1.0.0, console-control-strings@~1.1.0:
  2111. version "1.1.0"
  2112. resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"
  2113. integrity "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
  2114. constant-case@^2.0.0:
  2115. version "2.0.0"
  2116. resolved "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz"
  2117. integrity "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY= sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ=="
  2118. dependencies:
  2119. snake-case "^2.1.0"
  2120. upper-case "^1.1.1"
  2121. convert-source-map@^1.7.0:
  2122. version "1.8.0"
  2123. resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"
  2124. integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
  2125. dependencies:
  2126. safe-buffer "~5.1.1"
  2127. core-js-compat@^3.20.2, core-js-compat@^3.21.0:
  2128. version "3.21.0"
  2129. resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.0.tgz"
  2130. integrity sha512-OSXseNPSK2OPJa6GdtkMz/XxeXx8/CJvfhQWTqd6neuUraujcL4jVsjkLQz1OWnax8xVQJnRPe0V2jqNWORA+A==
  2131. dependencies:
  2132. browserslist "^4.19.1"
  2133. semver "7.0.0"
  2134. core-util-is@~1.0.0:
  2135. version "1.0.3"
  2136. resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
  2137. integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
  2138. create-ecdh@^4.0.0:
  2139. version "4.0.4"
  2140. resolved "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz"
  2141. integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
  2142. dependencies:
  2143. bn.js "^4.1.0"
  2144. elliptic "^6.5.3"
  2145. create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
  2146. version "1.2.0"
  2147. resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"
  2148. integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
  2149. dependencies:
  2150. cipher-base "^1.0.1"
  2151. inherits "^2.0.1"
  2152. md5.js "^1.3.4"
  2153. ripemd160 "^2.0.1"
  2154. sha.js "^2.4.0"
  2155. create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
  2156. version "1.1.7"
  2157. resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"
  2158. integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
  2159. dependencies:
  2160. cipher-base "^1.0.3"
  2161. create-hash "^1.1.0"
  2162. inherits "^2.0.1"
  2163. ripemd160 "^2.0.0"
  2164. safe-buffer "^5.0.1"
  2165. sha.js "^2.4.8"
  2166. cross-spawn@^6.0.5:
  2167. version "6.0.5"
  2168. resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
  2169. integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
  2170. dependencies:
  2171. nice-try "^1.0.4"
  2172. path-key "^2.0.1"
  2173. semver "^5.5.0"
  2174. shebang-command "^1.2.0"
  2175. which "^1.2.9"
  2176. cross-spawn@^7.0.3:
  2177. version "7.0.3"
  2178. resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
  2179. integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
  2180. dependencies:
  2181. path-key "^3.1.0"
  2182. shebang-command "^2.0.0"
  2183. which "^2.0.1"
  2184. crypto-browserify@^3.12.0:
  2185. version "3.12.0"
  2186. resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz"
  2187. integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
  2188. dependencies:
  2189. browserify-cipher "^1.0.0"
  2190. browserify-sign "^4.0.0"
  2191. create-ecdh "^4.0.0"
  2192. create-hash "^1.1.0"
  2193. create-hmac "^1.1.0"
  2194. diffie-hellman "^5.0.0"
  2195. inherits "^2.0.1"
  2196. pbkdf2 "^3.0.3"
  2197. public-encrypt "^4.0.0"
  2198. randombytes "^2.0.0"
  2199. randomfill "^1.0.3"
  2200. cuint@^0.2.2:
  2201. version "0.2.2"
  2202. resolved "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz"
  2203. integrity "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs= sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw=="
  2204. d@1, d@^1.0.1:
  2205. version "1.0.1"
  2206. resolved "https://registry.npmjs.org/d/-/d-1.0.1.tgz"
  2207. integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==
  2208. dependencies:
  2209. es5-ext "^0.10.50"
  2210. type "^1.0.1"
  2211. dateformat@^4.5.1:
  2212. version "4.6.3"
  2213. resolved "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz"
  2214. integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==
  2215. debug@^2.2.0:
  2216. version "2.6.9"
  2217. resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
  2218. integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
  2219. dependencies:
  2220. ms "2.0.0"
  2221. debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
  2222. version "4.3.3"
  2223. resolved "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz"
  2224. integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
  2225. dependencies:
  2226. ms "2.1.2"
  2227. decode-uri-component@^0.2.0:
  2228. version "0.2.0"
  2229. resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
  2230. integrity "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og=="
  2231. decompress-response@^6.0.0:
  2232. version "6.0.0"
  2233. resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz"
  2234. integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==
  2235. dependencies:
  2236. mimic-response "^3.1.0"
  2237. deep-extend@^0.6.0:
  2238. version "0.6.0"
  2239. resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"
  2240. integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
  2241. deep-is@~0.1.3:
  2242. version "0.1.4"
  2243. resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
  2244. integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
  2245. define-properties@^1.1.3:
  2246. version "1.1.3"
  2247. resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"
  2248. integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
  2249. dependencies:
  2250. object-keys "^1.0.12"
  2251. delayed-stream@~1.0.0:
  2252. version "1.0.0"
  2253. resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
  2254. integrity "sha1-3zrhmayt+31ECqrgsp4icrJOxhk= sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
  2255. delegates@^1.0.0:
  2256. version "1.0.0"
  2257. resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"
  2258. integrity "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
  2259. des.js@^1.0.0:
  2260. version "1.0.1"
  2261. resolved "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz"
  2262. integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
  2263. dependencies:
  2264. inherits "^2.0.1"
  2265. minimalistic-assert "^1.0.0"
  2266. detect-libc@^2.0.0:
  2267. version "2.0.0"
  2268. resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.0.tgz"
  2269. integrity sha512-S55LzUl8HUav8l9E2PBTlC5PAJrHK7tkM+XXFGD+fbsbkTzhCpG6K05LxJcUOEWzMa4v6ptcMZ9s3fOdJDu0Zw==
  2270. diffie-hellman@^5.0.0:
  2271. version "5.0.3"
  2272. resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"
  2273. integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
  2274. dependencies:
  2275. bn.js "^4.1.0"
  2276. miller-rabin "^4.0.0"
  2277. randombytes "^2.0.0"
  2278. doctrine@^3.0.0:
  2279. version "3.0.0"
  2280. resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
  2281. integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
  2282. dependencies:
  2283. esutils "^2.0.2"
  2284. dot-case@^2.1.0:
  2285. version "2.1.1"
  2286. resolved "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz"
  2287. integrity "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4= sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug=="
  2288. dependencies:
  2289. no-case "^2.2.0"
  2290. drbg.js@^1.0.1:
  2291. version "1.0.1"
  2292. resolved "https://registry.npmjs.org/drbg.js/-/drbg.js-1.0.1.tgz"
  2293. integrity "sha1-Pja2xCs3BDgjzbwzLVjzHiRFSAs= sha512-F4wZ06PvqxYLFEZKkFxTDcns9oFNk34hvmJSEwdzsxVQ8YI5YaxtACgQatkYgv2VI2CFkUd2Y+xosPQnHv809g=="
  2294. dependencies:
  2295. browserify-aes "^1.0.6"
  2296. create-hash "^1.1.2"
  2297. create-hmac "^1.1.4"
  2298. ed2curve@^0.3.0:
  2299. version "0.3.0"
  2300. resolved "https://registry.npmjs.org/ed2curve/-/ed2curve-0.3.0.tgz"
  2301. integrity sha512-8w2fmmq3hv9rCrcI7g9hms2pMunQr1JINfcjwR9tAyZqhtyaMN991lF/ZfHfr5tzZQ8c7y7aBgZbjfbd0fjFwQ==
  2302. dependencies:
  2303. tweetnacl "1.x.x"
  2304. electron-to-chromium@^1.4.17:
  2305. version "1.4.68"
  2306. resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.68.tgz"
  2307. integrity sha512-cId+QwWrV8R1UawO6b9BR1hnkJ4EJPCPAr4h315vliHUtVUJDk39Sg1PMNnaWKfj5x+93ssjeJ9LKL6r8LaMiA==
  2308. elliptic@^6.5.2, elliptic@^6.5.3:
  2309. version "6.5.4"
  2310. resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz"
  2311. integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
  2312. dependencies:
  2313. bn.js "^4.11.9"
  2314. brorand "^1.1.0"
  2315. hash.js "^1.0.0"
  2316. hmac-drbg "^1.0.1"
  2317. inherits "^2.0.4"
  2318. minimalistic-assert "^1.0.1"
  2319. minimalistic-crypto-utils "^1.0.1"
  2320. emoji-regex@^7.0.1:
  2321. version "7.0.3"
  2322. resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"
  2323. integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
  2324. emoji-regex@^8.0.0:
  2325. version "8.0.0"
  2326. resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
  2327. integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
  2328. emojis-list@^3.0.0:
  2329. version "3.0.0"
  2330. resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz"
  2331. integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
  2332. enc-utils@^3.0.0:
  2333. version "3.0.0"
  2334. resolved "https://registry.npmjs.org/enc-utils/-/enc-utils-3.0.0.tgz"
  2335. integrity sha512-e57t/Z2HzWOLwOp7DZcV0VMEY8t7ptWwsxyp6kM2b2zrk6JqIpXxzkruHAMiBsy5wg9jp/183GdiRXCvBtzsYg==
  2336. dependencies:
  2337. is-typedarray "1.0.0"
  2338. typedarray-to-buffer "3.1.5"
  2339. encoding@^0.1.11:
  2340. version "0.1.13"
  2341. resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz"
  2342. integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
  2343. dependencies:
  2344. iconv-lite "^0.6.2"
  2345. end-of-stream@^1.1.0, end-of-stream@^1.4.1:
  2346. version "1.4.4"
  2347. resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"
  2348. integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
  2349. dependencies:
  2350. once "^1.4.0"
  2351. enhanced-resolve@^5.8.3:
  2352. version "5.9.0"
  2353. resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.9.0.tgz"
  2354. integrity sha512-weDYmzbBygL7HzGGS26M3hGQx68vehdEg6VUmqSOaFzXExFqlnKuSvsEJCVGQHScS8CQMbrAqftT+AzzHNt/YA==
  2355. dependencies:
  2356. graceful-fs "^4.2.4"
  2357. tapable "^2.2.0"
  2358. envinfo@^7.7.3:
  2359. version "7.8.1"
  2360. resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz"
  2361. integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
  2362. es-module-lexer@^0.9.0:
  2363. version "0.9.3"
  2364. resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz"
  2365. integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==
  2366. es5-ext@^0.10.35, es5-ext@^0.10.50:
  2367. version "0.10.53"
  2368. resolved "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz"
  2369. integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==
  2370. dependencies:
  2371. es6-iterator "~2.0.3"
  2372. es6-symbol "~3.1.3"
  2373. next-tick "~1.0.0"
  2374. es6-iterator@~2.0.3:
  2375. version "2.0.3"
  2376. resolved "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz"
  2377. integrity "sha1-p96IkUGgWpSwhUQDstCg+/qY87c= sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g=="
  2378. dependencies:
  2379. d "1"
  2380. es5-ext "^0.10.35"
  2381. es6-symbol "^3.1.1"
  2382. es6-symbol@^3.1.1, es6-symbol@~3.1.3:
  2383. version "3.1.3"
  2384. resolved "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz"
  2385. integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==
  2386. dependencies:
  2387. d "^1.0.1"
  2388. ext "^1.1.2"
  2389. escalade@^3.1.1:
  2390. version "3.1.1"
  2391. resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
  2392. integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
  2393. escape-string-regexp@^1.0.5:
  2394. version "1.0.5"
  2395. resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
  2396. integrity "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
  2397. eslint-config-prettier@^6.9.0:
  2398. version "6.15.0"
  2399. resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz"
  2400. integrity sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==
  2401. dependencies:
  2402. get-stdin "^6.0.0"
  2403. eslint-plugin-prettier@^3.1.2:
  2404. version "3.4.1"
  2405. resolved "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz"
  2406. integrity sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==
  2407. dependencies:
  2408. prettier-linter-helpers "^1.0.0"
  2409. eslint-scope@5.1.1, eslint-scope@^5.0.0:
  2410. version "5.1.1"
  2411. resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
  2412. integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
  2413. dependencies:
  2414. esrecurse "^4.3.0"
  2415. estraverse "^4.1.1"
  2416. eslint-utils@^1.4.3:
  2417. version "1.4.3"
  2418. resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz"
  2419. integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
  2420. dependencies:
  2421. eslint-visitor-keys "^1.1.0"
  2422. eslint-visitor-keys@^1.1.0:
  2423. version "1.3.0"
  2424. resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
  2425. integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
  2426. eslint@^6.8.0:
  2427. version "6.8.0"
  2428. resolved "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz"
  2429. integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
  2430. dependencies:
  2431. "@babel/code-frame" "^7.0.0"
  2432. ajv "^6.10.0"
  2433. chalk "^2.1.0"
  2434. cross-spawn "^6.0.5"
  2435. debug "^4.0.1"
  2436. doctrine "^3.0.0"
  2437. eslint-scope "^5.0.0"
  2438. eslint-utils "^1.4.3"
  2439. eslint-visitor-keys "^1.1.0"
  2440. espree "^6.1.2"
  2441. esquery "^1.0.1"
  2442. esutils "^2.0.2"
  2443. file-entry-cache "^5.0.1"
  2444. functional-red-black-tree "^1.0.1"
  2445. glob-parent "^5.0.0"
  2446. globals "^12.1.0"
  2447. ignore "^4.0.6"
  2448. import-fresh "^3.0.0"
  2449. imurmurhash "^0.1.4"
  2450. inquirer "^7.0.0"
  2451. is-glob "^4.0.0"
  2452. js-yaml "^3.13.1"
  2453. json-stable-stringify-without-jsonify "^1.0.1"
  2454. levn "^0.3.0"
  2455. lodash "^4.17.14"
  2456. minimatch "^3.0.4"
  2457. mkdirp "^0.5.1"
  2458. natural-compare "^1.4.0"
  2459. optionator "^0.8.3"
  2460. progress "^2.0.0"
  2461. regexpp "^2.0.1"
  2462. semver "^6.1.2"
  2463. strip-ansi "^5.2.0"
  2464. strip-json-comments "^3.0.1"
  2465. table "^5.2.3"
  2466. text-table "^0.2.0"
  2467. v8-compile-cache "^2.0.3"
  2468. espree@^6.1.2:
  2469. version "6.2.1"
  2470. resolved "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz"
  2471. integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==
  2472. dependencies:
  2473. acorn "^7.1.1"
  2474. acorn-jsx "^5.2.0"
  2475. eslint-visitor-keys "^1.1.0"
  2476. esprima@^4.0.0:
  2477. version "4.0.1"
  2478. resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
  2479. integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
  2480. esquery@^1.0.1:
  2481. version "1.4.0"
  2482. resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
  2483. integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
  2484. dependencies:
  2485. estraverse "^5.1.0"
  2486. esrecurse@^4.3.0:
  2487. version "4.3.0"
  2488. resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
  2489. integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
  2490. dependencies:
  2491. estraverse "^5.2.0"
  2492. estraverse@^4.1.1:
  2493. version "4.3.0"
  2494. resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
  2495. integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
  2496. estraverse@^5.1.0, estraverse@^5.2.0:
  2497. version "5.3.0"
  2498. resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
  2499. integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
  2500. esutils@^2.0.2:
  2501. version "2.0.3"
  2502. resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
  2503. integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
  2504. eventemitter3@^4.0.7:
  2505. version "4.0.7"
  2506. resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz"
  2507. integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
  2508. events@^3.2.0:
  2509. version "3.3.0"
  2510. resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz"
  2511. integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
  2512. evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
  2513. version "1.0.3"
  2514. resolved "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"
  2515. integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
  2516. dependencies:
  2517. md5.js "^1.3.4"
  2518. safe-buffer "^5.1.1"
  2519. execa@^5.0.0:
  2520. version "5.1.1"
  2521. resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz"
  2522. integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
  2523. dependencies:
  2524. cross-spawn "^7.0.3"
  2525. get-stream "^6.0.0"
  2526. human-signals "^2.1.0"
  2527. is-stream "^2.0.0"
  2528. merge-stream "^2.0.0"
  2529. npm-run-path "^4.0.1"
  2530. onetime "^5.1.2"
  2531. signal-exit "^3.0.3"
  2532. strip-final-newline "^2.0.0"
  2533. expand-template@^2.0.3:
  2534. version "2.0.3"
  2535. resolved "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz"
  2536. integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==
  2537. ext@^1.1.2:
  2538. version "1.6.0"
  2539. resolved "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz"
  2540. integrity sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==
  2541. dependencies:
  2542. type "^2.5.0"
  2543. external-editor@^3.0.3:
  2544. version "3.1.0"
  2545. resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"
  2546. integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
  2547. dependencies:
  2548. chardet "^0.7.0"
  2549. iconv-lite "^0.4.24"
  2550. tmp "^0.0.33"
  2551. fast-deep-equal@^3.1.1:
  2552. version "3.1.3"
  2553. resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
  2554. integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
  2555. fast-diff@^1.1.2:
  2556. version "1.2.0"
  2557. resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz"
  2558. integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
  2559. fast-json-stable-stringify@^2.0.0:
  2560. version "2.1.0"
  2561. resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
  2562. integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
  2563. fast-levenshtein@~2.0.6:
  2564. version "2.0.6"
  2565. resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
  2566. integrity "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
  2567. fast-redact@^3.0.0:
  2568. version "3.1.0"
  2569. resolved "https://registry.npmjs.org/fast-redact/-/fast-redact-3.1.0.tgz"
  2570. integrity sha512-dir8LOnvialLxiXDPESMDHGp82CHi6ZEYTVkcvdn5d7psdv9ZkkButXrOeXST4aqreIRR+N7CYlsrwFuorurVg==
  2571. fast-safe-stringify@^2.0.7, fast-safe-stringify@^2.0.8:
  2572. version "2.1.1"
  2573. resolved "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz"
  2574. integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==
  2575. fastest-levenshtein@^1.0.12:
  2576. version "1.0.12"
  2577. resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz"
  2578. integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==
  2579. figures@^3.0.0:
  2580. version "3.2.0"
  2581. resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz"
  2582. integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
  2583. dependencies:
  2584. escape-string-regexp "^1.0.5"
  2585. file-entry-cache@^5.0.1:
  2586. version "5.0.1"
  2587. resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz"
  2588. integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
  2589. dependencies:
  2590. flat-cache "^2.0.1"
  2591. file-uri-to-path@1.0.0:
  2592. version "1.0.0"
  2593. resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"
  2594. integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
  2595. filter-obj@^1.1.0:
  2596. version "1.1.0"
  2597. resolved "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz"
  2598. integrity "sha1-mzERErxsYSehbgFsbF1/GeCAXFs= sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ=="
  2599. find-cache-dir@^3.3.1:
  2600. version "3.3.2"
  2601. resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"
  2602. integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
  2603. dependencies:
  2604. commondir "^1.0.1"
  2605. make-dir "^3.0.2"
  2606. pkg-dir "^4.1.0"
  2607. find-up@^4.0.0:
  2608. version "4.1.0"
  2609. resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
  2610. integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
  2611. dependencies:
  2612. locate-path "^5.0.0"
  2613. path-exists "^4.0.0"
  2614. flat-cache@^2.0.1:
  2615. version "2.0.1"
  2616. resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz"
  2617. integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
  2618. dependencies:
  2619. flatted "^2.0.0"
  2620. rimraf "2.6.3"
  2621. write "1.0.3"
  2622. flatstr@^1.0.12:
  2623. version "1.0.12"
  2624. resolved "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz"
  2625. integrity sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==
  2626. flatted@^2.0.0:
  2627. version "2.0.2"
  2628. resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"
  2629. integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==
  2630. follow-redirects@^1.14.0:
  2631. version "1.14.8"
  2632. resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz"
  2633. integrity sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==
  2634. form-data@^3.0.0:
  2635. version "3.0.1"
  2636. resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz"
  2637. integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
  2638. dependencies:
  2639. asynckit "^0.4.0"
  2640. combined-stream "^1.0.8"
  2641. mime-types "^2.1.12"
  2642. fs-constants@^1.0.0:
  2643. version "1.0.0"
  2644. resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz"
  2645. integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
  2646. fs.realpath@^1.0.0:
  2647. version "1.0.0"
  2648. resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
  2649. integrity "sha1-FQStJSMVjKpA20onh8sBQRmU6k8= sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
  2650. function-bind@^1.1.1:
  2651. version "1.1.1"
  2652. resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
  2653. integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
  2654. functional-red-black-tree@^1.0.1:
  2655. version "1.0.1"
  2656. resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
  2657. integrity "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="
  2658. gauge@~2.7.3:
  2659. version "2.7.4"
  2660. resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"
  2661. integrity "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg=="
  2662. dependencies:
  2663. aproba "^1.0.3"
  2664. console-control-strings "^1.0.0"
  2665. has-unicode "^2.0.0"
  2666. object-assign "^4.1.0"
  2667. signal-exit "^3.0.0"
  2668. string-width "^1.0.1"
  2669. strip-ansi "^3.0.1"
  2670. wide-align "^1.1.0"
  2671. gensync@^1.0.0-beta.2:
  2672. version "1.0.0-beta.2"
  2673. resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
  2674. integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
  2675. get-intrinsic@^1.0.2:
  2676. version "1.1.1"
  2677. resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"
  2678. integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
  2679. dependencies:
  2680. function-bind "^1.1.1"
  2681. has "^1.0.3"
  2682. has-symbols "^1.0.1"
  2683. get-stdin@^6.0.0:
  2684. version "6.0.0"
  2685. resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz"
  2686. integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
  2687. get-stream@^6.0.0:
  2688. version "6.0.1"
  2689. resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz"
  2690. integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
  2691. github-from-package@0.0.0:
  2692. version "0.0.0"
  2693. resolved "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz"
  2694. integrity "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="
  2695. glob-parent@^5.0.0:
  2696. version "5.1.2"
  2697. resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
  2698. integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
  2699. dependencies:
  2700. is-glob "^4.0.1"
  2701. glob-to-regexp@^0.4.1:
  2702. version "0.4.1"
  2703. resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"
  2704. integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
  2705. glob@^7.1.3:
  2706. version "7.2.0"
  2707. resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz"
  2708. integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
  2709. dependencies:
  2710. fs.realpath "^1.0.0"
  2711. inflight "^1.0.4"
  2712. inherits "2"
  2713. minimatch "^3.0.4"
  2714. once "^1.3.0"
  2715. path-is-absolute "^1.0.0"
  2716. globals@^11.1.0:
  2717. version "11.12.0"
  2718. resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
  2719. integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
  2720. globals@^12.1.0:
  2721. version "12.4.0"
  2722. resolved "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"
  2723. integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
  2724. dependencies:
  2725. type-fest "^0.8.1"
  2726. graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
  2727. version "4.2.9"
  2728. resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"
  2729. integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==
  2730. has-flag@^3.0.0:
  2731. version "3.0.0"
  2732. resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
  2733. integrity "sha1-tdRU3CGZriJWmfNGfloH87lVuv0= sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
  2734. has-flag@^4.0.0:
  2735. version "4.0.0"
  2736. resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
  2737. integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
  2738. has-symbols@^1.0.1:
  2739. version "1.0.2"
  2740. resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"
  2741. integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
  2742. has-unicode@^2.0.0:
  2743. version "2.0.1"
  2744. resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"
  2745. integrity "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
  2746. has@^1.0.3:
  2747. version "1.0.3"
  2748. resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
  2749. integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
  2750. dependencies:
  2751. function-bind "^1.1.1"
  2752. hash-base@^3.0.0:
  2753. version "3.1.0"
  2754. resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz"
  2755. integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
  2756. dependencies:
  2757. inherits "^2.0.4"
  2758. readable-stream "^3.6.0"
  2759. safe-buffer "^5.2.0"
  2760. hash.js@^1.0.0, hash.js@^1.0.3, hash.js@^1.1.7:
  2761. version "1.1.7"
  2762. resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"
  2763. integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
  2764. dependencies:
  2765. inherits "^2.0.3"
  2766. minimalistic-assert "^1.0.1"
  2767. header-case@^1.0.0:
  2768. version "1.0.1"
  2769. resolved "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz"
  2770. integrity "sha1-lTWXMZfBRLCWE81l0xfvGZY70C0= sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ=="
  2771. dependencies:
  2772. no-case "^2.2.0"
  2773. upper-case "^1.1.3"
  2774. hmac-drbg@^1.0.1:
  2775. version "1.0.1"
  2776. resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz"
  2777. integrity "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg=="
  2778. dependencies:
  2779. hash.js "^1.0.3"
  2780. minimalistic-assert "^1.0.0"
  2781. minimalistic-crypto-utils "^1.0.1"
  2782. human-signals@^2.1.0:
  2783. version "2.1.0"
  2784. resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"
  2785. integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
  2786. iconv-lite@^0.4.24:
  2787. version "0.4.24"
  2788. resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
  2789. integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
  2790. dependencies:
  2791. safer-buffer ">= 2.1.2 < 3"
  2792. iconv-lite@^0.6.2, iconv-lite@^0.6.3:
  2793. version "0.6.3"
  2794. resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
  2795. integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
  2796. dependencies:
  2797. safer-buffer ">= 2.1.2 < 3.0.0"
  2798. ieee754@^1.1.13, ieee754@^1.2.1:
  2799. version "1.2.1"
  2800. resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
  2801. integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
  2802. ignore@^4.0.6:
  2803. version "4.0.6"
  2804. resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"
  2805. integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
  2806. import-fresh@^3.0.0:
  2807. version "3.3.0"
  2808. resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
  2809. integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
  2810. dependencies:
  2811. parent-module "^1.0.0"
  2812. resolve-from "^4.0.0"
  2813. import-local@^3.0.2:
  2814. version "3.1.0"
  2815. resolved "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz"
  2816. integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==
  2817. dependencies:
  2818. pkg-dir "^4.2.0"
  2819. resolve-cwd "^3.0.0"
  2820. imurmurhash@^0.1.4:
  2821. version "0.1.4"
  2822. resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
  2823. integrity "sha1-khi5srkoojixPcT7a21XbyMUU+o= sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="
  2824. inflight@^1.0.4:
  2825. version "1.0.6"
  2826. resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
  2827. integrity "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="
  2828. dependencies:
  2829. once "^1.3.0"
  2830. wrappy "1"
  2831. inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4:
  2832. version "2.0.4"
  2833. resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
  2834. integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
  2835. ini@~1.3.0:
  2836. version "1.3.8"
  2837. resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
  2838. integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
  2839. inquirer@^7.0.0:
  2840. version "7.3.3"
  2841. resolved "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz"
  2842. integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==
  2843. dependencies:
  2844. ansi-escapes "^4.2.1"
  2845. chalk "^4.1.0"
  2846. cli-cursor "^3.1.0"
  2847. cli-width "^3.0.0"
  2848. external-editor "^3.0.3"
  2849. figures "^3.0.0"
  2850. lodash "^4.17.19"
  2851. mute-stream "0.0.8"
  2852. run-async "^2.4.0"
  2853. rxjs "^6.6.0"
  2854. string-width "^4.1.0"
  2855. strip-ansi "^6.0.0"
  2856. through "^2.3.6"
  2857. interpret@^2.2.0:
  2858. version "2.2.0"
  2859. resolved "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz"
  2860. integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
  2861. ip-regex@^4.0.0, ip-regex@^4.3.0:
  2862. version "4.3.0"
  2863. resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz"
  2864. integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==
  2865. is-arrayish@^0.3.1:
  2866. version "0.3.2"
  2867. resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz"
  2868. integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
  2869. is-core-module@^2.8.1:
  2870. version "2.8.1"
  2871. resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz"
  2872. integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
  2873. dependencies:
  2874. has "^1.0.3"
  2875. is-extglob@^2.1.1:
  2876. version "2.1.1"
  2877. resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
  2878. integrity "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
  2879. is-fullwidth-code-point@^1.0.0:
  2880. version "1.0.0"
  2881. resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"
  2882. integrity "sha1-754xOG8DGn8NZDr4L95QxFfvAMs= sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw=="
  2883. dependencies:
  2884. number-is-nan "^1.0.0"
  2885. is-fullwidth-code-point@^2.0.0:
  2886. version "2.0.0"
  2887. resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
  2888. integrity "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
  2889. is-fullwidth-code-point@^3.0.0:
  2890. version "3.0.0"
  2891. resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
  2892. integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
  2893. is-glob@^4.0.0, is-glob@^4.0.1:
  2894. version "4.0.3"
  2895. resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
  2896. integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
  2897. dependencies:
  2898. is-extglob "^2.1.1"
  2899. is-lower-case@^1.1.0:
  2900. version "1.1.3"
  2901. resolved "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz"
  2902. integrity "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M= sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA=="
  2903. dependencies:
  2904. lower-case "^1.1.0"
  2905. is-plain-object@^2.0.4:
  2906. version "2.0.4"
  2907. resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
  2908. integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
  2909. dependencies:
  2910. isobject "^3.0.1"
  2911. is-stream@^1.0.1:
  2912. version "1.1.0"
  2913. resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
  2914. integrity "sha1-EtSj3U5o4Lec6428hBc66A2RykQ= sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ=="
  2915. is-stream@^2.0.0:
  2916. version "2.0.1"
  2917. resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
  2918. integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
  2919. is-typedarray@1.0.0, is-typedarray@^1.0.0:
  2920. version "1.0.0"
  2921. resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
  2922. integrity "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
  2923. is-upper-case@^1.1.0:
  2924. version "1.1.2"
  2925. resolved "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz"
  2926. integrity "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8= sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw=="
  2927. dependencies:
  2928. upper-case "^1.1.0"
  2929. isarray@~1.0.0:
  2930. version "1.0.0"
  2931. resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
  2932. integrity "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
  2933. isexe@^2.0.0:
  2934. version "2.0.0"
  2935. resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
  2936. integrity "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
  2937. isobject@^3.0.1:
  2938. version "3.0.1"
  2939. resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
  2940. integrity "sha1-TkMekrEalzFjaqH5yNHMvP2reN8= sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg=="
  2941. isomorphic-fetch@^2.2.1:
  2942. version "2.2.1"
  2943. resolved "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"
  2944. integrity "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk= sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA=="
  2945. dependencies:
  2946. node-fetch "^1.0.1"
  2947. whatwg-fetch ">=0.10.0"
  2948. isomorphic-ws@^4.0.1:
  2949. version "4.0.1"
  2950. resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz"
  2951. integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==
  2952. jdenticon@^2.1.1:
  2953. version "2.2.0"
  2954. resolved "https://registry.npmjs.org/jdenticon/-/jdenticon-2.2.0.tgz"
  2955. integrity sha512-WGqwpjN9pab/Sah9pGnFH5tQc3HF3WbLV/tPVbykvk5nuAkxG/zhzQYWC2owvpnS+/A0HmlSx35rtY8kyN+x7Q==
  2956. dependencies:
  2957. "@types/node" "*"
  2958. canvas-renderer "~2.1.1"
  2959. jest-worker@^27.4.5:
  2960. version "27.5.1"
  2961. resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz"
  2962. integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
  2963. dependencies:
  2964. "@types/node" "*"
  2965. merge-stream "^2.0.0"
  2966. supports-color "^8.0.0"
  2967. jmespath@^0.15.0:
  2968. version "0.15.0"
  2969. resolved "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz"
  2970. integrity "sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc= sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w=="
  2971. joycon@^2.2.5:
  2972. version "2.2.5"
  2973. resolved "https://registry.npmjs.org/joycon/-/joycon-2.2.5.tgz"
  2974. integrity sha512-YqvUxoOcVPnCp0VU1/56f+iKSdvIRJYPznH22BdXV3xMk75SFXhWeJkZ8C9XxUWt1b5x2X1SxuFygW1U0FmkEQ==
  2975. js-tokens@^4.0.0:
  2976. version "4.0.0"
  2977. resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
  2978. integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
  2979. js-yaml@^3.13.1:
  2980. version "3.14.1"
  2981. resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"
  2982. integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
  2983. dependencies:
  2984. argparse "^1.0.7"
  2985. esprima "^4.0.0"
  2986. jsesc@^2.5.1:
  2987. version "2.5.2"
  2988. resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
  2989. integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
  2990. jsesc@~0.5.0:
  2991. version "0.5.0"
  2992. resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"
  2993. integrity "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA=="
  2994. json-parse-better-errors@^1.0.2:
  2995. version "1.0.2"
  2996. resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
  2997. integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
  2998. json-schema-traverse@^0.4.1:
  2999. version "0.4.1"
  3000. resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
  3001. integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
  3002. json-stable-stringify-without-jsonify@^1.0.1:
  3003. version "1.0.1"
  3004. resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
  3005. integrity "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
  3006. json-stringify-safe@^5.0.1:
  3007. version "5.0.1"
  3008. resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
  3009. integrity "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
  3010. json5@^1.0.1:
  3011. version "1.0.1"
  3012. resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"
  3013. integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
  3014. dependencies:
  3015. minimist "^1.2.0"
  3016. json5@^2.1.2:
  3017. version "2.2.0"
  3018. resolved "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"
  3019. integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
  3020. dependencies:
  3021. minimist "^1.2.5"
  3022. keyvaluestorage-interface@^1.0.0:
  3023. version "1.0.0"
  3024. resolved "https://registry.npmjs.org/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz"
  3025. integrity sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==
  3026. keyvaluestorage@^0.7.1:
  3027. version "0.7.1"
  3028. resolved "https://registry.npmjs.org/keyvaluestorage/-/keyvaluestorage-0.7.1.tgz"
  3029. integrity sha512-7AHq8bZE4WRWy+BltiuPwQo5aKuj7CguhwGdW7NUUOEImY2Tq/lJaBjHdOf0MYzeu+Y4oxQWhkZEZcrDc9KnxA==
  3030. dependencies:
  3031. better-sqlite3 "^7.1.2"
  3032. keyvaluestorage-interface "^1.0.0"
  3033. localStorage "^1.0.4"
  3034. safe-json-utils "^1.1.1"
  3035. kind-of@^6.0.2:
  3036. version "6.0.3"
  3037. resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
  3038. integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
  3039. leven@2.1.0:
  3040. version "2.1.0"
  3041. resolved "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz"
  3042. integrity "sha1-wuep93IJTe6dNCAq6KzORoeHVYA= sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA=="
  3043. levn@^0.3.0, levn@~0.3.0:
  3044. version "0.3.0"
  3045. resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"
  3046. integrity "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA=="
  3047. dependencies:
  3048. prelude-ls "~1.1.2"
  3049. type-check "~0.3.2"
  3050. loader-runner@^4.2.0:
  3051. version "4.2.0"
  3052. resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz"
  3053. integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==
  3054. loader-utils@^1.4.0:
  3055. version "1.4.0"
  3056. resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz"
  3057. integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
  3058. dependencies:
  3059. big.js "^5.2.2"
  3060. emojis-list "^3.0.0"
  3061. json5 "^1.0.1"
  3062. localStorage@^1.0.4:
  3063. version "1.0.4"
  3064. resolved "https://registry.npmjs.org/localStorage/-/localStorage-1.0.4.tgz"
  3065. integrity sha512-r35zrihcDiX+dqWlJSeIwS9nrF95OQTgqMFm3FB2D/+XgdmZtcutZOb7t0xXkhOEM8a9kpuu7cc28g1g36I5DQ==
  3066. locate-path@^5.0.0:
  3067. version "5.0.0"
  3068. resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
  3069. integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
  3070. dependencies:
  3071. p-locate "^4.1.0"
  3072. lodash.debounce@^4.0.8:
  3073. version "4.0.8"
  3074. resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"
  3075. integrity "sha1-gteb/zCmfEAF/9XiUVMArZyk168= sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
  3076. lodash.set@^4.3.2:
  3077. version "4.3.2"
  3078. resolved "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"
  3079. integrity "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg=="
  3080. lodash.union@^4.6.0:
  3081. version "4.6.0"
  3082. resolved "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz"
  3083. integrity "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw=="
  3084. lodash@^4.17.14, lodash@^4.17.19:
  3085. version "4.17.21"
  3086. resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
  3087. integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
  3088. lower-case-first@^1.0.0:
  3089. version "1.0.2"
  3090. resolved "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz"
  3091. integrity "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E= sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA=="
  3092. dependencies:
  3093. lower-case "^1.1.2"
  3094. lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2:
  3095. version "1.1.4"
  3096. resolved "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz"
  3097. integrity "sha1-miyr0bno4K6ZOkv31YdcOcQujqw= sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA=="
  3098. lru-cache@^6.0.0:
  3099. version "6.0.0"
  3100. resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
  3101. integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
  3102. dependencies:
  3103. yallist "^4.0.0"
  3104. make-dir@^3.0.2, make-dir@^3.1.0:
  3105. version "3.1.0"
  3106. resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
  3107. integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
  3108. dependencies:
  3109. semver "^6.0.0"
  3110. md5.js@^1.3.4:
  3111. version "1.3.5"
  3112. resolved "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz"
  3113. integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
  3114. dependencies:
  3115. hash-base "^3.0.0"
  3116. inherits "^2.0.1"
  3117. safe-buffer "^5.1.2"
  3118. merge-stream@^2.0.0:
  3119. version "2.0.0"
  3120. resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
  3121. integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
  3122. miller-rabin@^4.0.0:
  3123. version "4.0.1"
  3124. resolved "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz"
  3125. integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
  3126. dependencies:
  3127. bn.js "^4.0.0"
  3128. brorand "^1.0.1"
  3129. mime-db@1.51.0:
  3130. version "1.51.0"
  3131. resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz"
  3132. integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==
  3133. mime-types@^2.1.12, mime-types@^2.1.27:
  3134. version "2.1.34"
  3135. resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz"
  3136. integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==
  3137. dependencies:
  3138. mime-db "1.51.0"
  3139. mimic-fn@^2.1.0:
  3140. version "2.1.0"
  3141. resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
  3142. integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
  3143. mimic-response@^3.1.0:
  3144. version "3.1.0"
  3145. resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz"
  3146. integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==
  3147. minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
  3148. version "1.0.1"
  3149. resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"
  3150. integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
  3151. minimalistic-crypto-utils@^1.0.1:
  3152. version "1.0.1"
  3153. resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"
  3154. integrity "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="
  3155. minimatch@^3.0.4:
  3156. version "3.1.1"
  3157. resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.1.tgz"
  3158. integrity sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==
  3159. dependencies:
  3160. brace-expansion "^1.1.7"
  3161. minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5:
  3162. version "1.2.5"
  3163. resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"
  3164. integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
  3165. mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3:
  3166. version "0.5.3"
  3167. resolved "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz"
  3168. integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
  3169. mkdirp@^0.5.1:
  3170. version "0.5.5"
  3171. resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"
  3172. integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
  3173. dependencies:
  3174. minimist "^1.2.5"
  3175. mock-socket@^9.1.3:
  3176. version "9.1.4"
  3177. resolved "https://registry.npmjs.org/mock-socket/-/mock-socket-9.1.4.tgz"
  3178. integrity sha512-zc7jF8FId8pD9ojxWLcXrv4c2nEFOb6o8giPb45yQ6BfQX1tWuUktHNFSiy+KBt0VhYtHNt5MFIzclt0LIynEA==
  3179. moment@^2.24.0:
  3180. version "2.29.1"
  3181. resolved "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz"
  3182. integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
  3183. mri@1.1.4:
  3184. version "1.1.4"
  3185. resolved "https://registry.npmjs.org/mri/-/mri-1.1.4.tgz"
  3186. integrity sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==
  3187. ms@2.0.0:
  3188. version "2.0.0"
  3189. resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
  3190. integrity "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
  3191. ms@2.1.2:
  3192. version "2.1.2"
  3193. resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
  3194. integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
  3195. mute-stream@0.0.8:
  3196. version "0.0.8"
  3197. resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"
  3198. integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
  3199. nan@^2.14.0:
  3200. version "2.15.0"
  3201. resolved "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz"
  3202. integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==
  3203. napi-build-utils@^1.0.1:
  3204. version "1.0.2"
  3205. resolved "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz"
  3206. integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==
  3207. natural-compare@^1.4.0:
  3208. version "1.4.0"
  3209. resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
  3210. integrity "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
  3211. neo-async@^2.6.2:
  3212. version "2.6.2"
  3213. resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
  3214. integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
  3215. next-tick@~1.0.0:
  3216. version "1.0.0"
  3217. resolved "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz"
  3218. integrity "sha1-yobR/ogoFpsBICCOPchCS524NCw= sha512-mc/caHeUcdjnC/boPWJefDr4KUIWQNv+tlnFnJd38QMou86QtxQzBJfxgGRzvx8jazYRqrVlaHarfO72uNxPOg=="
  3219. nice-try@^1.0.4:
  3220. version "1.0.5"
  3221. resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"
  3222. integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
  3223. no-case@^2.2.0, no-case@^2.3.2:
  3224. version "2.3.2"
  3225. resolved "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz"
  3226. integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==
  3227. dependencies:
  3228. lower-case "^1.1.1"
  3229. nock@^13.2.4:
  3230. version "13.2.4"
  3231. resolved "https://registry.npmjs.org/nock/-/nock-13.2.4.tgz"
  3232. integrity sha512-8GPznwxcPNCH/h8B+XZcKjYPXnUV5clOKCjAqyjsiqA++MpNx9E9+t8YPp0MbThO+KauRo7aZJ1WuIZmOrT2Ug==
  3233. dependencies:
  3234. debug "^4.1.0"
  3235. json-stringify-safe "^5.0.1"
  3236. lodash.set "^4.3.2"
  3237. propagate "^2.0.0"
  3238. node-abi@^3.3.0:
  3239. version "3.8.0"
  3240. resolved "https://registry.npmjs.org/node-abi/-/node-abi-3.8.0.tgz"
  3241. integrity sha512-tzua9qWWi7iW4I42vUPKM+SfaF0vQSLAm4yO5J83mSwB7GeoWrDKC/K+8YCnYNwqP5duwazbw2X9l4m8SC2cUw==
  3242. dependencies:
  3243. semver "^7.3.5"
  3244. node-fetch@^1.0.1:
  3245. version "1.7.3"
  3246. resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz"
  3247. integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==
  3248. dependencies:
  3249. encoding "^0.1.11"
  3250. is-stream "^1.0.1"
  3251. node-fetch@^2.6.7:
  3252. version "2.6.7"
  3253. resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz"
  3254. integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
  3255. dependencies:
  3256. whatwg-url "^5.0.0"
  3257. node-gyp-build@^4.3.0:
  3258. version "4.3.0"
  3259. resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz"
  3260. integrity sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==
  3261. node-releases@^2.0.1:
  3262. version "2.0.2"
  3263. resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz"
  3264. integrity sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==
  3265. npm-run-path@^4.0.1:
  3266. version "4.0.1"
  3267. resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"
  3268. integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
  3269. dependencies:
  3270. path-key "^3.0.0"
  3271. npmlog@^4.0.1:
  3272. version "4.1.2"
  3273. resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"
  3274. integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
  3275. dependencies:
  3276. are-we-there-yet "~1.1.2"
  3277. console-control-strings "~1.1.0"
  3278. gauge "~2.7.3"
  3279. set-blocking "~2.0.0"
  3280. number-is-nan@^1.0.0:
  3281. version "1.0.1"
  3282. resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"
  3283. integrity "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ=="
  3284. object-assign@^4.1.0:
  3285. version "4.1.1"
  3286. resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
  3287. integrity "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
  3288. object-keys@^1.0.12, object-keys@^1.1.1:
  3289. version "1.1.1"
  3290. resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
  3291. integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
  3292. object.assign@^4.1.0:
  3293. version "4.1.2"
  3294. resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"
  3295. integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
  3296. dependencies:
  3297. call-bind "^1.0.0"
  3298. define-properties "^1.1.3"
  3299. has-symbols "^1.0.1"
  3300. object-keys "^1.1.1"
  3301. once@^1.3.0, once@^1.3.1, once@^1.4.0:
  3302. version "1.4.0"
  3303. resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
  3304. integrity "sha1-WDsap3WWHUsROsF9nFC6753Xa9E= sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="
  3305. dependencies:
  3306. wrappy "1"
  3307. onetime@^5.1.0, onetime@^5.1.2:
  3308. version "5.1.2"
  3309. resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
  3310. integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
  3311. dependencies:
  3312. mimic-fn "^2.1.0"
  3313. oo7-substrate@^0.8.0:
  3314. version "0.8.0"
  3315. resolved "https://registry.npmjs.org/oo7-substrate/-/oo7-substrate-0.8.0.tgz"
  3316. integrity sha512-ltglsNXZNmiDsJ5q4LYx0tf0SN0CVjW5fSifwrBRe/objxG2fYXogZ4eiNdsLJrTddvskv+3o5JpvFw/D3PCUA==
  3317. dependencies:
  3318. "@polkadot/util" "^0.41.1"
  3319. "@polkadot/wasm-crypto" "^0.5.1"
  3320. "@polkadot/wasm-schnorrkel" "^0.3.1"
  3321. base-x "^3.0.4"
  3322. bip39 "^2.5.0"
  3323. blakejs "^1.1.0"
  3324. bs58 "^4.0.1"
  3325. buffer "^5.2.1"
  3326. change-case "^3.0.2"
  3327. isomorphic-fetch "^2.2.1"
  3328. isomorphic-ws "^4.0.1"
  3329. jdenticon "^2.1.1"
  3330. oo7 "^0.7.12"
  3331. pbkdf2 "^3.0.17"
  3332. ss58 "^1.0.2"
  3333. text-encoding "^0.7.0"
  3334. text-encoding-polyfill "^0.6.7"
  3335. tweetnacl "^1.0.0"
  3336. ws "^6.1.2"
  3337. xxhashjs "^0.2.2"
  3338. oo7@^0.7.12:
  3339. version "0.7.12"
  3340. resolved "https://registry.npmjs.org/oo7/-/oo7-0.7.12.tgz"
  3341. integrity sha512-nVmxwLIiVCY4Aid6/+p2ujJ2mj3yh15zQ3xSl3UPui7U37DJJfD0KmuMjp+XOWH1HxTkKhIKDgR34eEhFHNxgA==
  3342. optionator@^0.8.3:
  3343. version "0.8.3"
  3344. resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz"
  3345. integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
  3346. dependencies:
  3347. deep-is "~0.1.3"
  3348. fast-levenshtein "~2.0.6"
  3349. levn "~0.3.0"
  3350. prelude-ls "~1.1.2"
  3351. type-check "~0.3.2"
  3352. word-wrap "~1.2.3"
  3353. os-tmpdir@~1.0.2:
  3354. version "1.0.2"
  3355. resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
  3356. integrity "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="
  3357. p-limit@^2.2.0:
  3358. version "2.3.0"
  3359. resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
  3360. integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
  3361. dependencies:
  3362. p-try "^2.0.0"
  3363. p-locate@^4.1.0:
  3364. version "4.1.0"
  3365. resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
  3366. integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
  3367. dependencies:
  3368. p-limit "^2.2.0"
  3369. p-try@^2.0.0:
  3370. version "2.2.0"
  3371. resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
  3372. integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
  3373. pako@^2.0.4:
  3374. version "2.0.4"
  3375. resolved "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz"
  3376. integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==
  3377. param-case@^2.1.0:
  3378. version "2.1.1"
  3379. resolved "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz"
  3380. integrity "sha1-35T9jPZTHs915r75oIWPvHK+Ikc= sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w=="
  3381. dependencies:
  3382. no-case "^2.2.0"
  3383. parent-module@^1.0.0:
  3384. version "1.0.1"
  3385. resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
  3386. integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
  3387. dependencies:
  3388. callsites "^3.0.0"
  3389. parse-asn1@^5.0.0, parse-asn1@^5.1.5:
  3390. version "5.1.6"
  3391. resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz"
  3392. integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
  3393. dependencies:
  3394. asn1.js "^5.2.0"
  3395. browserify-aes "^1.0.0"
  3396. evp_bytestokey "^1.0.0"
  3397. pbkdf2 "^3.0.3"
  3398. safe-buffer "^5.1.1"
  3399. pascal-case@^2.0.0:
  3400. version "2.0.1"
  3401. resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz"
  3402. integrity "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4= sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ=="
  3403. dependencies:
  3404. camel-case "^3.0.0"
  3405. upper-case-first "^1.1.0"
  3406. path-case@^2.1.0:
  3407. version "2.1.1"
  3408. resolved "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz"
  3409. integrity "sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU= sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q=="
  3410. dependencies:
  3411. no-case "^2.2.0"
  3412. path-exists@^4.0.0:
  3413. version "4.0.0"
  3414. resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
  3415. integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
  3416. path-is-absolute@^1.0.0:
  3417. version "1.0.1"
  3418. resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
  3419. integrity "sha1-F0uSaHNVNP+8es5r9TpanhtcX18= sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
  3420. path-key@^2.0.1:
  3421. version "2.0.1"
  3422. resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
  3423. integrity "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw=="
  3424. path-key@^3.0.0, path-key@^3.1.0:
  3425. version "3.1.1"
  3426. resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
  3427. integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
  3428. path-parse@^1.0.7:
  3429. version "1.0.7"
  3430. resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
  3431. integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
  3432. pbkdf2@^3.0.17, pbkdf2@^3.0.3, pbkdf2@^3.0.9:
  3433. version "3.1.2"
  3434. resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz"
  3435. integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
  3436. dependencies:
  3437. create-hash "^1.1.2"
  3438. create-hmac "^1.1.4"
  3439. ripemd160 "^2.0.1"
  3440. safe-buffer "^5.0.1"
  3441. sha.js "^2.4.8"
  3442. picocolors@^1.0.0:
  3443. version "1.0.0"
  3444. resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
  3445. integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
  3446. pino-pretty@^4.3.0:
  3447. version "4.8.0"
  3448. resolved "https://registry.npmjs.org/pino-pretty/-/pino-pretty-4.8.0.tgz"
  3449. integrity sha512-mhQfHG4rw5ZFpWL44m0Utjo4GC2+HMfdNvxyA8lLw0sIqn6fCf7uQe6dPckUcW/obly+OQHD7B/MTso6LNizYw==
  3450. dependencies:
  3451. "@hapi/bourne" "^2.0.0"
  3452. args "^5.0.1"
  3453. chalk "^4.0.0"
  3454. dateformat "^4.5.1"
  3455. fast-safe-stringify "^2.0.7"
  3456. jmespath "^0.15.0"
  3457. joycon "^2.2.5"
  3458. pump "^3.0.0"
  3459. readable-stream "^3.6.0"
  3460. rfdc "^1.3.0"
  3461. split2 "^3.1.1"
  3462. strip-json-comments "^3.1.1"
  3463. pino-std-serializers@^3.1.0:
  3464. version "3.2.0"
  3465. resolved "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-3.2.0.tgz"
  3466. integrity sha512-EqX4pwDPrt3MuOAAUBMU0Tk5kR/YcCM5fNPEzgCO2zJ5HfX0vbiH9HbJglnyeQsN96Kznae6MWD47pZB5avTrg==
  3467. pino@^6.7.0:
  3468. version "6.13.4"
  3469. resolved "https://registry.npmjs.org/pino/-/pino-6.13.4.tgz"
  3470. integrity sha512-g4tHSISmQJYUEKEMVdaZ+ZokWwFnTwZL5JPn+lnBVZ1BuBbrSchrXwQINknkM5+Q4fF6U9NjiI8PWwwMDHt9zA==
  3471. dependencies:
  3472. fast-redact "^3.0.0"
  3473. fast-safe-stringify "^2.0.8"
  3474. flatstr "^1.0.12"
  3475. pino-std-serializers "^3.1.0"
  3476. process-warning "^1.0.0"
  3477. quick-format-unescaped "^4.0.3"
  3478. sonic-boom "^1.0.2"
  3479. pkg-dir@^4.1.0, pkg-dir@^4.2.0:
  3480. version "4.2.0"
  3481. resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
  3482. integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
  3483. dependencies:
  3484. find-up "^4.0.0"
  3485. prebuild-install@^7.0.0:
  3486. version "7.0.1"
  3487. resolved "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.1.tgz"
  3488. integrity sha512-QBSab31WqkyxpnMWQxubYAHR5S9B2+r81ucocew34Fkl98FhvKIF50jIJnNOBmAZfyNV7vE5T6gd3hTVWgY6tg==
  3489. dependencies:
  3490. detect-libc "^2.0.0"
  3491. expand-template "^2.0.3"
  3492. github-from-package "0.0.0"
  3493. minimist "^1.2.3"
  3494. mkdirp-classic "^0.5.3"
  3495. napi-build-utils "^1.0.1"
  3496. node-abi "^3.3.0"
  3497. npmlog "^4.0.1"
  3498. pump "^3.0.0"
  3499. rc "^1.2.7"
  3500. simple-get "^4.0.0"
  3501. tar-fs "^2.0.0"
  3502. tunnel-agent "^0.6.0"
  3503. prelude-ls@~1.1.2:
  3504. version "1.1.2"
  3505. resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"
  3506. integrity "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w=="
  3507. prettier-linter-helpers@^1.0.0:
  3508. version "1.0.0"
  3509. resolved "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz"
  3510. integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
  3511. dependencies:
  3512. fast-diff "^1.1.2"
  3513. prettier@^1.19.1:
  3514. version "1.19.1"
  3515. resolved "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz"
  3516. integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
  3517. process-nextick-args@~2.0.0:
  3518. version "2.0.1"
  3519. resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
  3520. integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
  3521. process-warning@^1.0.0:
  3522. version "1.0.0"
  3523. resolved "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz"
  3524. integrity sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==
  3525. process@^0.11.10:
  3526. version "0.11.10"
  3527. resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
  3528. integrity "sha1-czIwDoQBYb2j5podHZGn1LwW8YI= sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="
  3529. progress@^2.0.0:
  3530. version "2.0.3"
  3531. resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
  3532. integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
  3533. propagate@^2.0.0:
  3534. version "2.0.1"
  3535. resolved "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz"
  3536. integrity sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==
  3537. public-encrypt@^4.0.0:
  3538. version "4.0.3"
  3539. resolved "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz"
  3540. integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
  3541. dependencies:
  3542. bn.js "^4.1.0"
  3543. browserify-rsa "^4.0.0"
  3544. create-hash "^1.1.0"
  3545. parse-asn1 "^5.0.0"
  3546. randombytes "^2.0.1"
  3547. safe-buffer "^5.1.2"
  3548. pump@^3.0.0:
  3549. version "3.0.0"
  3550. resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
  3551. integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
  3552. dependencies:
  3553. end-of-stream "^1.1.0"
  3554. once "^1.3.1"
  3555. punycode@^2.1.0:
  3556. version "2.1.1"
  3557. resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
  3558. integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
  3559. query-string@^6.13.5:
  3560. version "6.14.1"
  3561. resolved "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz"
  3562. integrity sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==
  3563. dependencies:
  3564. decode-uri-component "^0.2.0"
  3565. filter-obj "^1.1.0"
  3566. split-on-first "^1.0.0"
  3567. strict-uri-encode "^2.0.0"
  3568. quick-format-unescaped@^4.0.3:
  3569. version "4.0.4"
  3570. resolved "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz"
  3571. integrity sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==
  3572. randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
  3573. version "2.1.0"
  3574. resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"
  3575. integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
  3576. dependencies:
  3577. safe-buffer "^5.1.0"
  3578. randomfill@^1.0.3:
  3579. version "1.0.4"
  3580. resolved "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz"
  3581. integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
  3582. dependencies:
  3583. randombytes "^2.0.5"
  3584. safe-buffer "^5.1.0"
  3585. rc@^1.2.7:
  3586. version "1.2.8"
  3587. resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"
  3588. integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
  3589. dependencies:
  3590. deep-extend "^0.6.0"
  3591. ini "~1.3.0"
  3592. minimist "^1.2.0"
  3593. strip-json-comments "~2.0.1"
  3594. readable-stream@^2.0.6:
  3595. version "2.3.7"
  3596. resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"
  3597. integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
  3598. dependencies:
  3599. core-util-is "~1.0.0"
  3600. inherits "~2.0.3"
  3601. isarray "~1.0.0"
  3602. process-nextick-args "~2.0.0"
  3603. safe-buffer "~5.1.1"
  3604. string_decoder "~1.1.1"
  3605. util-deprecate "~1.0.1"
  3606. readable-stream@^3.0.0, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0:
  3607. version "3.6.0"
  3608. resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"
  3609. integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
  3610. dependencies:
  3611. inherits "^2.0.3"
  3612. string_decoder "^1.1.1"
  3613. util-deprecate "^1.0.1"
  3614. rechoir@^0.7.0:
  3615. version "0.7.1"
  3616. resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz"
  3617. integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==
  3618. dependencies:
  3619. resolve "^1.9.0"
  3620. regenerate-unicode-properties@^10.0.1:
  3621. version "10.0.1"
  3622. resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz"
  3623. integrity sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==
  3624. dependencies:
  3625. regenerate "^1.4.2"
  3626. regenerate@^1.4.2:
  3627. version "1.4.2"
  3628. resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"
  3629. integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
  3630. regenerator-runtime@^0.13.4:
  3631. version "0.13.9"
  3632. resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"
  3633. integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
  3634. regenerator-transform@^0.14.2:
  3635. version "0.14.5"
  3636. resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz"
  3637. integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
  3638. dependencies:
  3639. "@babel/runtime" "^7.8.4"
  3640. regexpp@^2.0.1:
  3641. version "2.0.1"
  3642. resolved "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz"
  3643. integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
  3644. regexpu-core@^5.0.1:
  3645. version "5.0.1"
  3646. resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz"
  3647. integrity sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==
  3648. dependencies:
  3649. regenerate "^1.4.2"
  3650. regenerate-unicode-properties "^10.0.1"
  3651. regjsgen "^0.6.0"
  3652. regjsparser "^0.8.2"
  3653. unicode-match-property-ecmascript "^2.0.0"
  3654. unicode-match-property-value-ecmascript "^2.0.0"
  3655. regjsgen@^0.6.0:
  3656. version "0.6.0"
  3657. resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz"
  3658. integrity sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==
  3659. regjsparser@^0.8.2:
  3660. version "0.8.4"
  3661. resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz"
  3662. integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==
  3663. dependencies:
  3664. jsesc "~0.5.0"
  3665. relay-provider@^1.2.0:
  3666. version "1.2.1"
  3667. resolved "https://registry.npmjs.org/relay-provider/-/relay-provider-1.2.1.tgz"
  3668. integrity sha512-N3p05r57sHk76qfiNiSflDY83LigmbfaAnFEno9smCz30CgA61IJLfoqLr1+qQSdIEqvy1Jflcs2lLmpzBOYKA==
  3669. dependencies:
  3670. "@json-rpc-tools/provider" "^1.4.0"
  3671. "@json-rpc-tools/utils" "^1.4.0"
  3672. resolve-cwd@^3.0.0:
  3673. version "3.0.0"
  3674. resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz"
  3675. integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
  3676. dependencies:
  3677. resolve-from "^5.0.0"
  3678. resolve-from@^4.0.0:
  3679. version "4.0.0"
  3680. resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
  3681. integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
  3682. resolve-from@^5.0.0:
  3683. version "5.0.0"
  3684. resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
  3685. integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
  3686. resolve@^1.14.2, resolve@^1.9.0:
  3687. version "1.22.0"
  3688. resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz"
  3689. integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
  3690. dependencies:
  3691. is-core-module "^2.8.1"
  3692. path-parse "^1.0.7"
  3693. supports-preserve-symlinks-flag "^1.0.0"
  3694. restore-cursor@^3.1.0:
  3695. version "3.1.0"
  3696. resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"
  3697. integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
  3698. dependencies:
  3699. onetime "^5.1.0"
  3700. signal-exit "^3.0.2"
  3701. rfdc@^1.3.0:
  3702. version "1.3.0"
  3703. resolved "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz"
  3704. integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
  3705. rimraf@2.6.3:
  3706. version "2.6.3"
  3707. resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"
  3708. integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
  3709. dependencies:
  3710. glob "^7.1.3"
  3711. ripemd160@^2.0.0, ripemd160@^2.0.1:
  3712. version "2.0.2"
  3713. resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz"
  3714. integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
  3715. dependencies:
  3716. hash-base "^3.0.0"
  3717. inherits "^2.0.1"
  3718. run-async@^2.4.0:
  3719. version "2.4.1"
  3720. resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz"
  3721. integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
  3722. rxjs@^6.6.0:
  3723. version "6.6.7"
  3724. resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz"
  3725. integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
  3726. dependencies:
  3727. tslib "^1.9.0"
  3728. rxjs@^7.5.5:
  3729. version "7.5.5"
  3730. resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz"
  3731. integrity sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==
  3732. dependencies:
  3733. tslib "^2.1.0"
  3734. safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
  3735. version "5.1.2"
  3736. resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
  3737. integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
  3738. safe-buffer@^5.2.0, safe-buffer@~5.2.0:
  3739. version "5.2.1"
  3740. resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
  3741. integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
  3742. safe-json-utils@^1.1.1:
  3743. version "1.1.1"
  3744. resolved "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz"
  3745. integrity sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ==
  3746. "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0:
  3747. version "2.1.2"
  3748. resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
  3749. integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
  3750. schema-utils@^2.6.5:
  3751. version "2.7.1"
  3752. resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz"
  3753. integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
  3754. dependencies:
  3755. "@types/json-schema" "^7.0.5"
  3756. ajv "^6.12.4"
  3757. ajv-keywords "^3.5.2"
  3758. schema-utils@^3.1.0, schema-utils@^3.1.1:
  3759. version "3.1.1"
  3760. resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz"
  3761. integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
  3762. dependencies:
  3763. "@types/json-schema" "^7.0.8"
  3764. ajv "^6.12.5"
  3765. ajv-keywords "^3.5.2"
  3766. secp256k1@^3.8.0:
  3767. version "3.8.0"
  3768. resolved "https://registry.npmjs.org/secp256k1/-/secp256k1-3.8.0.tgz"
  3769. integrity sha512-k5ke5avRZbtl9Tqx/SA7CbY3NF6Ro+Sj9cZxezFzuBlLDmyqPiL8hJJ+EmzD8Ig4LUDByHJ3/iPOVoRixs/hmw==
  3770. dependencies:
  3771. bindings "^1.5.0"
  3772. bip66 "^1.1.5"
  3773. bn.js "^4.11.8"
  3774. create-hash "^1.2.0"
  3775. drbg.js "^1.0.1"
  3776. elliptic "^6.5.2"
  3777. nan "^2.14.0"
  3778. safe-buffer "^5.1.2"
  3779. semver@7.0.0:
  3780. version "7.0.0"
  3781. resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz"
  3782. integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
  3783. semver@^5.5.0:
  3784. version "5.7.1"
  3785. resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
  3786. integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
  3787. semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
  3788. version "6.3.0"
  3789. resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
  3790. integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
  3791. semver@^7.3.5:
  3792. version "7.3.5"
  3793. resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
  3794. integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
  3795. dependencies:
  3796. lru-cache "^6.0.0"
  3797. sentence-case@^2.1.0:
  3798. version "2.1.1"
  3799. resolved "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz"
  3800. integrity "sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ= sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ=="
  3801. dependencies:
  3802. no-case "^2.2.0"
  3803. upper-case-first "^1.1.2"
  3804. serialize-javascript@^6.0.0:
  3805. version "6.0.0"
  3806. resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz"
  3807. integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
  3808. dependencies:
  3809. randombytes "^2.1.0"
  3810. set-blocking@~2.0.0:
  3811. version "2.0.0"
  3812. resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
  3813. integrity "sha1-BF+XgtARrppoA93TgrJDkrPYkPc= sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
  3814. sha.js@^2.4.0, sha.js@^2.4.8:
  3815. version "2.4.11"
  3816. resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz"
  3817. integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
  3818. dependencies:
  3819. inherits "^2.0.1"
  3820. safe-buffer "^5.0.1"
  3821. shallow-clone@^3.0.0:
  3822. version "3.0.1"
  3823. resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz"
  3824. integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
  3825. dependencies:
  3826. kind-of "^6.0.2"
  3827. shebang-command@^1.2.0:
  3828. version "1.2.0"
  3829. resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
  3830. integrity "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg=="
  3831. dependencies:
  3832. shebang-regex "^1.0.0"
  3833. shebang-command@^2.0.0:
  3834. version "2.0.0"
  3835. resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
  3836. integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
  3837. dependencies:
  3838. shebang-regex "^3.0.0"
  3839. shebang-regex@^1.0.0:
  3840. version "1.0.0"
  3841. resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
  3842. integrity "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ=="
  3843. shebang-regex@^3.0.0:
  3844. version "3.0.0"
  3845. resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
  3846. integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
  3847. signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
  3848. version "3.0.7"
  3849. resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"
  3850. integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
  3851. simple-concat@^1.0.0:
  3852. version "1.0.1"
  3853. resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz"
  3854. integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==
  3855. simple-get@^4.0.0:
  3856. version "4.0.1"
  3857. resolved "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz"
  3858. integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==
  3859. dependencies:
  3860. decompress-response "^6.0.0"
  3861. once "^1.3.1"
  3862. simple-concat "^1.0.0"
  3863. simple-swizzle@^0.2.2:
  3864. version "0.2.2"
  3865. resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz"
  3866. integrity "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg=="
  3867. dependencies:
  3868. is-arrayish "^0.3.1"
  3869. slice-ansi@^2.1.0:
  3870. version "2.1.0"
  3871. resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"
  3872. integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
  3873. dependencies:
  3874. ansi-styles "^3.2.0"
  3875. astral-regex "^1.0.0"
  3876. is-fullwidth-code-point "^2.0.0"
  3877. snake-case@^2.1.0:
  3878. version "2.1.0"
  3879. resolved "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz"
  3880. integrity "sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8= sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q=="
  3881. dependencies:
  3882. no-case "^2.2.0"
  3883. sonic-boom@^1.0.2:
  3884. version "1.4.1"
  3885. resolved "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.4.1.tgz"
  3886. integrity sha512-LRHh/A8tpW7ru89lrlkU4AszXt1dbwSjVWguGrmlxE7tawVmDBlI1PILMkXAxJTwqhgsEeTHzj36D5CmHgQmNg==
  3887. dependencies:
  3888. atomic-sleep "^1.0.0"
  3889. flatstr "^1.0.12"
  3890. source-map-js@^1.0.1:
  3891. version "1.0.2"
  3892. resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
  3893. integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
  3894. source-map-loader@^3.0.1:
  3895. version "3.0.1"
  3896. resolved "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz"
  3897. integrity sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==
  3898. dependencies:
  3899. abab "^2.0.5"
  3900. iconv-lite "^0.6.3"
  3901. source-map-js "^1.0.1"
  3902. source-map-support@~0.5.20:
  3903. version "0.5.21"
  3904. resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz"
  3905. integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
  3906. dependencies:
  3907. buffer-from "^1.0.0"
  3908. source-map "^0.6.0"
  3909. source-map@^0.5.0:
  3910. version "0.5.7"
  3911. resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
  3912. integrity "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ=="
  3913. source-map@^0.6.0, source-map@^0.6.1:
  3914. version "0.6.1"
  3915. resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
  3916. integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
  3917. source-map@~0.7.2:
  3918. version "0.7.3"
  3919. resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"
  3920. integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
  3921. split-on-first@^1.0.0:
  3922. version "1.1.0"
  3923. resolved "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz"
  3924. integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==
  3925. split2@^3.1.1:
  3926. version "3.2.2"
  3927. resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz"
  3928. integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==
  3929. dependencies:
  3930. readable-stream "^3.0.0"
  3931. sprintf-js@~1.0.2:
  3932. version "1.0.3"
  3933. resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
  3934. integrity "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
  3935. ss58@^1.0.2:
  3936. version "1.0.2"
  3937. resolved "https://registry.npmjs.org/ss58/-/ss58-1.0.2.tgz"
  3938. integrity sha512-hCpPJ12+GgsYsyVW2dXY6p3KfqZgLFA9zrKp5cgEx3x93JjPG4DDm6lu0Zp87FW0CSRan3gy7jlF4ZCjHqS7Ig==
  3939. dependencies:
  3940. blakejs "^1.1.0"
  3941. bs58 "^4.0.1"
  3942. stream-browserify@^3.0.0:
  3943. version "3.0.0"
  3944. resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz"
  3945. integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==
  3946. dependencies:
  3947. inherits "~2.0.4"
  3948. readable-stream "^3.5.0"
  3949. strict-uri-encode@^2.0.0:
  3950. version "2.0.0"
  3951. resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"
  3952. integrity "sha1-ucczDHBChi9rFC3CdLvMWGbONUY= sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ=="
  3953. string-width@^1.0.1:
  3954. version "1.0.2"
  3955. resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"
  3956. integrity "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw=="
  3957. dependencies:
  3958. code-point-at "^1.0.0"
  3959. is-fullwidth-code-point "^1.0.0"
  3960. strip-ansi "^3.0.0"
  3961. "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0:
  3962. version "4.2.3"
  3963. resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
  3964. integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
  3965. dependencies:
  3966. emoji-regex "^8.0.0"
  3967. is-fullwidth-code-point "^3.0.0"
  3968. strip-ansi "^6.0.1"
  3969. string-width@^3.0.0:
  3970. version "3.1.0"
  3971. resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"
  3972. integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
  3973. dependencies:
  3974. emoji-regex "^7.0.1"
  3975. is-fullwidth-code-point "^2.0.0"
  3976. strip-ansi "^5.1.0"
  3977. string_decoder@^1.1.1:
  3978. version "1.3.0"
  3979. resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
  3980. integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
  3981. dependencies:
  3982. safe-buffer "~5.2.0"
  3983. string_decoder@~1.1.1:
  3984. version "1.1.1"
  3985. resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
  3986. integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
  3987. dependencies:
  3988. safe-buffer "~5.1.0"
  3989. strip-ansi@^3.0.0, strip-ansi@^3.0.1:
  3990. version "3.0.1"
  3991. resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
  3992. integrity "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg=="
  3993. dependencies:
  3994. ansi-regex "^2.0.0"
  3995. strip-ansi@^5.1.0, strip-ansi@^5.2.0:
  3996. version "5.2.0"
  3997. resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
  3998. integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
  3999. dependencies:
  4000. ansi-regex "^4.1.0"
  4001. strip-ansi@^6.0.0, strip-ansi@^6.0.1:
  4002. version "6.0.1"
  4003. resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
  4004. integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
  4005. dependencies:
  4006. ansi-regex "^5.0.1"
  4007. strip-final-newline@^2.0.0:
  4008. version "2.0.0"
  4009. resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
  4010. integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
  4011. strip-json-comments@^3.0.1, strip-json-comments@^3.1.1:
  4012. version "3.1.1"
  4013. resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
  4014. integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
  4015. strip-json-comments@~2.0.1:
  4016. version "2.0.1"
  4017. resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"
  4018. integrity "sha1-PFMZQukIwml8DsNEhYwobHygpgo= sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="
  4019. supports-color@^5.3.0:
  4020. version "5.5.0"
  4021. resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
  4022. integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
  4023. dependencies:
  4024. has-flag "^3.0.0"
  4025. supports-color@^7.1.0:
  4026. version "7.2.0"
  4027. resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
  4028. integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
  4029. dependencies:
  4030. has-flag "^4.0.0"
  4031. supports-color@^8.0.0:
  4032. version "8.1.1"
  4033. resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"
  4034. integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
  4035. dependencies:
  4036. has-flag "^4.0.0"
  4037. supports-preserve-symlinks-flag@^1.0.0:
  4038. version "1.0.0"
  4039. resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
  4040. integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
  4041. swap-case@^1.1.0:
  4042. version "1.1.2"
  4043. resolved "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz"
  4044. integrity "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM= sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ=="
  4045. dependencies:
  4046. lower-case "^1.1.1"
  4047. upper-case "^1.1.1"
  4048. table@^5.2.3:
  4049. version "5.4.6"
  4050. resolved "https://registry.npmjs.org/table/-/table-5.4.6.tgz"
  4051. integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
  4052. dependencies:
  4053. ajv "^6.10.2"
  4054. lodash "^4.17.14"
  4055. slice-ansi "^2.1.0"
  4056. string-width "^3.0.0"
  4057. tapable@^2.1.1, tapable@^2.2.0:
  4058. version "2.2.1"
  4059. resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz"
  4060. integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
  4061. tar-fs@^2.0.0:
  4062. version "2.1.1"
  4063. resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz"
  4064. integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==
  4065. dependencies:
  4066. chownr "^1.1.1"
  4067. mkdirp-classic "^0.5.2"
  4068. pump "^3.0.0"
  4069. tar-stream "^2.1.4"
  4070. tar-stream@^2.1.4:
  4071. version "2.2.0"
  4072. resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz"
  4073. integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==
  4074. dependencies:
  4075. bl "^4.0.3"
  4076. end-of-stream "^1.4.1"
  4077. fs-constants "^1.0.0"
  4078. inherits "^2.0.3"
  4079. readable-stream "^3.1.1"
  4080. terser-webpack-plugin@^5.1.3:
  4081. version "5.3.1"
  4082. resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.1.tgz"
  4083. integrity sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==
  4084. dependencies:
  4085. jest-worker "^27.4.5"
  4086. schema-utils "^3.1.1"
  4087. serialize-javascript "^6.0.0"
  4088. source-map "^0.6.1"
  4089. terser "^5.7.2"
  4090. terser@^5.7.2:
  4091. version "5.10.0"
  4092. resolved "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz"
  4093. integrity sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==
  4094. dependencies:
  4095. commander "^2.20.0"
  4096. source-map "~0.7.2"
  4097. source-map-support "~0.5.20"
  4098. text-encoding-polyfill@^0.6.7:
  4099. version "0.6.7"
  4100. resolved "https://registry.npmjs.org/text-encoding-polyfill/-/text-encoding-polyfill-0.6.7.tgz"
  4101. integrity sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg==
  4102. text-encoding@^0.7.0:
  4103. version "0.7.0"
  4104. resolved "https://registry.npmjs.org/text-encoding/-/text-encoding-0.7.0.tgz"
  4105. integrity sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA==
  4106. text-table@^0.2.0:
  4107. version "0.2.0"
  4108. resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
  4109. integrity "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
  4110. through@^2.3.6:
  4111. version "2.3.8"
  4112. resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
  4113. integrity "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
  4114. title-case@^2.1.0:
  4115. version "2.1.1"
  4116. resolved "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz"
  4117. integrity "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o= sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q=="
  4118. dependencies:
  4119. no-case "^2.2.0"
  4120. upper-case "^1.0.3"
  4121. tmp@^0.0.33:
  4122. version "0.0.33"
  4123. resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"
  4124. integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
  4125. dependencies:
  4126. os-tmpdir "~1.0.2"
  4127. to-fast-properties@^2.0.0:
  4128. version "2.0.0"
  4129. resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
  4130. integrity "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="
  4131. tr46@~0.0.3:
  4132. version "0.0.3"
  4133. resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
  4134. integrity "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
  4135. tslib@^1.9.0:
  4136. version "1.14.1"
  4137. resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
  4138. integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
  4139. tslib@^2.1.0:
  4140. version "2.3.1"
  4141. resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz"
  4142. integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
  4143. tunnel-agent@^0.6.0:
  4144. version "0.6.0"
  4145. resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"
  4146. integrity "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w=="
  4147. dependencies:
  4148. safe-buffer "^5.0.1"
  4149. tweetnacl@1.x.x, tweetnacl@^1.0.0, tweetnacl@^1.0.3:
  4150. version "1.0.3"
  4151. resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz"
  4152. integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==
  4153. type-check@~0.3.2:
  4154. version "0.3.2"
  4155. resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"
  4156. integrity "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg=="
  4157. dependencies:
  4158. prelude-ls "~1.1.2"
  4159. type-fest@^0.21.3:
  4160. version "0.21.3"
  4161. resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
  4162. integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
  4163. type-fest@^0.8.1:
  4164. version "0.8.1"
  4165. resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"
  4166. integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
  4167. type@^1.0.1:
  4168. version "1.2.0"
  4169. resolved "https://registry.npmjs.org/type/-/type-1.2.0.tgz"
  4170. integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
  4171. type@^2.5.0:
  4172. version "2.6.0"
  4173. resolved "https://registry.npmjs.org/type/-/type-2.6.0.tgz"
  4174. integrity sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==
  4175. typedarray-to-buffer@3.1.5, typedarray-to-buffer@^3.1.5:
  4176. version "3.1.5"
  4177. resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"
  4178. integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
  4179. dependencies:
  4180. is-typedarray "^1.0.0"
  4181. typescript@^4.5.5:
  4182. version "4.5.5"
  4183. resolved "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz"
  4184. integrity sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==
  4185. unicode-canonical-property-names-ecmascript@^2.0.0:
  4186. version "2.0.0"
  4187. resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"
  4188. integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
  4189. unicode-match-property-ecmascript@^2.0.0:
  4190. version "2.0.0"
  4191. resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"
  4192. integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
  4193. dependencies:
  4194. unicode-canonical-property-names-ecmascript "^2.0.0"
  4195. unicode-property-aliases-ecmascript "^2.0.0"
  4196. unicode-match-property-value-ecmascript@^2.0.0:
  4197. version "2.0.0"
  4198. resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"
  4199. integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
  4200. unicode-property-aliases-ecmascript@^2.0.0:
  4201. version "2.0.0"
  4202. resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"
  4203. integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==
  4204. unorm@^1.3.3:
  4205. version "1.6.0"
  4206. resolved "https://registry.npmjs.org/unorm/-/unorm-1.6.0.tgz"
  4207. integrity sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==
  4208. upper-case-first@^1.1.0, upper-case-first@^1.1.2:
  4209. version "1.1.2"
  4210. resolved "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz"
  4211. integrity "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU= sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ=="
  4212. dependencies:
  4213. upper-case "^1.1.1"
  4214. upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3:
  4215. version "1.1.3"
  4216. resolved "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz"
  4217. integrity "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA=="
  4218. uri-js@^4.2.2:
  4219. version "4.4.1"
  4220. resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
  4221. integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
  4222. dependencies:
  4223. punycode "^2.1.0"
  4224. utf-8-validate@^5.0.2:
  4225. version "5.0.8"
  4226. resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.8.tgz"
  4227. integrity sha512-k4dW/Qja1BYDl2qD4tOMB9PFVha/UJtxTc1cXYOe3WwA/2m0Yn4qB7wLMpJyLJ/7DR0XnTut3HsCSzDT4ZvKgA==
  4228. dependencies:
  4229. node-gyp-build "^4.3.0"
  4230. util-deprecate@^1.0.1, util-deprecate@~1.0.1:
  4231. version "1.0.2"
  4232. resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
  4233. integrity "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
  4234. v8-compile-cache@^2.0.3:
  4235. version "2.3.0"
  4236. resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"
  4237. integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
  4238. watchpack@^2.3.1:
  4239. version "2.3.1"
  4240. resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz"
  4241. integrity sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==
  4242. dependencies:
  4243. glob-to-regexp "^0.4.1"
  4244. graceful-fs "^4.1.2"
  4245. webidl-conversions@^3.0.0:
  4246. version "3.0.1"
  4247. resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
  4248. integrity "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
  4249. webpack-cli@^4.9.2:
  4250. version "4.9.2"
  4251. resolved "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz"
  4252. integrity sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==
  4253. dependencies:
  4254. "@discoveryjs/json-ext" "^0.5.0"
  4255. "@webpack-cli/configtest" "^1.1.1"
  4256. "@webpack-cli/info" "^1.4.1"
  4257. "@webpack-cli/serve" "^1.6.1"
  4258. colorette "^2.0.14"
  4259. commander "^7.0.0"
  4260. execa "^5.0.0"
  4261. fastest-levenshtein "^1.0.12"
  4262. import-local "^3.0.2"
  4263. interpret "^2.2.0"
  4264. rechoir "^0.7.0"
  4265. webpack-merge "^5.7.3"
  4266. webpack-merge@^5.7.3:
  4267. version "5.8.0"
  4268. resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz"
  4269. integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==
  4270. dependencies:
  4271. clone-deep "^4.0.1"
  4272. wildcard "^2.0.0"
  4273. webpack-sources@^3.2.3:
  4274. version "3.2.3"
  4275. resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz"
  4276. integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
  4277. webpack@^5.68.0:
  4278. version "5.68.0"
  4279. resolved "https://registry.npmjs.org/webpack/-/webpack-5.68.0.tgz"
  4280. integrity sha512-zUcqaUO0772UuuW2bzaES2Zjlm/y3kRBQDVFVCge+s2Y8mwuUTdperGaAv65/NtRL/1zanpSJOq/MD8u61vo6g==
  4281. dependencies:
  4282. "@types/eslint-scope" "^3.7.0"
  4283. "@types/estree" "^0.0.50"
  4284. "@webassemblyjs/ast" "1.11.1"
  4285. "@webassemblyjs/wasm-edit" "1.11.1"
  4286. "@webassemblyjs/wasm-parser" "1.11.1"
  4287. acorn "^8.4.1"
  4288. acorn-import-assertions "^1.7.6"
  4289. browserslist "^4.14.5"
  4290. chrome-trace-event "^1.0.2"
  4291. enhanced-resolve "^5.8.3"
  4292. es-module-lexer "^0.9.0"
  4293. eslint-scope "5.1.1"
  4294. events "^3.2.0"
  4295. glob-to-regexp "^0.4.1"
  4296. graceful-fs "^4.2.9"
  4297. json-parse-better-errors "^1.0.2"
  4298. loader-runner "^4.2.0"
  4299. mime-types "^2.1.27"
  4300. neo-async "^2.6.2"
  4301. schema-utils "^3.1.0"
  4302. tapable "^2.1.1"
  4303. terser-webpack-plugin "^5.1.3"
  4304. watchpack "^2.3.1"
  4305. webpack-sources "^3.2.3"
  4306. websocket@^1.0.32, websocket@^1.0.34:
  4307. version "1.0.34"
  4308. resolved "https://registry.npmjs.org/websocket/-/websocket-1.0.34.tgz"
  4309. integrity sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==
  4310. dependencies:
  4311. bufferutil "^4.0.1"
  4312. debug "^2.2.0"
  4313. es5-ext "^0.10.50"
  4314. typedarray-to-buffer "^3.1.5"
  4315. utf-8-validate "^5.0.2"
  4316. yaeti "^0.0.6"
  4317. whatwg-fetch@>=0.10.0:
  4318. version "3.6.2"
  4319. resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"
  4320. integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
  4321. whatwg-url@^5.0.0:
  4322. version "5.0.0"
  4323. resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
  4324. integrity "sha1-lmRU6HZUYuN2RNNib2dCzotwll0= sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="
  4325. dependencies:
  4326. tr46 "~0.0.3"
  4327. webidl-conversions "^3.0.0"
  4328. which@^1.2.9:
  4329. version "1.3.1"
  4330. resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
  4331. integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
  4332. dependencies:
  4333. isexe "^2.0.0"
  4334. which@^2.0.1:
  4335. version "2.0.2"
  4336. resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
  4337. integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
  4338. dependencies:
  4339. isexe "^2.0.0"
  4340. wide-align@^1.1.0:
  4341. version "1.1.5"
  4342. resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz"
  4343. integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
  4344. dependencies:
  4345. string-width "^1.0.2 || 2 || 3 || 4"
  4346. wildcard@^2.0.0:
  4347. version "2.0.0"
  4348. resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz"
  4349. integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
  4350. word-wrap@~1.2.3:
  4351. version "1.2.3"
  4352. resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
  4353. integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
  4354. wrappy@1:
  4355. version "1.0.2"
  4356. resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
  4357. integrity "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
  4358. write@1.0.3:
  4359. version "1.0.3"
  4360. resolved "https://registry.npmjs.org/write/-/write-1.0.3.tgz"
  4361. integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
  4362. dependencies:
  4363. mkdirp "^0.5.1"
  4364. ws@^6.1.2:
  4365. version "6.2.2"
  4366. resolved "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz"
  4367. integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==
  4368. dependencies:
  4369. async-limiter "~1.0.0"
  4370. ws@^7.4.0:
  4371. version "7.5.7"
  4372. resolved "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz"
  4373. integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==
  4374. xxhashjs@^0.2.2:
  4375. version "0.2.2"
  4376. resolved "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz"
  4377. integrity sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==
  4378. dependencies:
  4379. cuint "^0.2.2"
  4380. yaeti@^0.0.6:
  4381. version "0.0.6"
  4382. resolved "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz"
  4383. integrity "sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc= sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug=="
  4384. yallist@^4.0.0:
  4385. version "4.0.0"
  4386. resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
  4387. integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==