package-lock.json 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577
  1. {
  2. "name": "instrunet_backend",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "instrunet_backend",
  9. "version": "1.0.0",
  10. "license": "MIT",
  11. "dependencies": {
  12. "body-parser": "^1.20.3",
  13. "express": "^4.21.1",
  14. "html-entities": "^2.5.2",
  15. "https": "^1.0.0",
  16. "jsonwebtoken": "^9.0.2",
  17. "mysql": "^2.18.1",
  18. "mysql2": "^3.11.5",
  19. "node-run-cmd": "^1.0.1",
  20. "sqlite3": "^5.1.7"
  21. }
  22. },
  23. "node_modules/@gar/promisify": {
  24. "version": "1.1.3",
  25. "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
  26. "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
  27. "license": "MIT",
  28. "optional": true
  29. },
  30. "node_modules/@npmcli/fs": {
  31. "version": "1.1.1",
  32. "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
  33. "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
  34. "license": "ISC",
  35. "optional": true,
  36. "dependencies": {
  37. "@gar/promisify": "^1.0.1",
  38. "semver": "^7.3.5"
  39. }
  40. },
  41. "node_modules/@npmcli/move-file": {
  42. "version": "1.1.2",
  43. "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
  44. "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
  45. "deprecated": "This functionality has been moved to @npmcli/fs",
  46. "license": "MIT",
  47. "optional": true,
  48. "dependencies": {
  49. "mkdirp": "^1.0.4",
  50. "rimraf": "^3.0.2"
  51. },
  52. "engines": {
  53. "node": ">=10"
  54. }
  55. },
  56. "node_modules/@tootallnate/once": {
  57. "version": "1.1.2",
  58. "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
  59. "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
  60. "license": "MIT",
  61. "optional": true,
  62. "engines": {
  63. "node": ">= 6"
  64. }
  65. },
  66. "node_modules/abbrev": {
  67. "version": "1.1.1",
  68. "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
  69. "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
  70. "license": "ISC",
  71. "optional": true
  72. },
  73. "node_modules/accepts": {
  74. "version": "1.3.8",
  75. "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
  76. "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
  77. "license": "MIT",
  78. "dependencies": {
  79. "mime-types": "~2.1.34",
  80. "negotiator": "0.6.3"
  81. },
  82. "engines": {
  83. "node": ">= 0.6"
  84. }
  85. },
  86. "node_modules/accepts/node_modules/negotiator": {
  87. "version": "0.6.3",
  88. "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
  89. "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
  90. "license": "MIT",
  91. "engines": {
  92. "node": ">= 0.6"
  93. }
  94. },
  95. "node_modules/agent-base": {
  96. "version": "6.0.2",
  97. "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
  98. "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
  99. "license": "MIT",
  100. "optional": true,
  101. "dependencies": {
  102. "debug": "4"
  103. },
  104. "engines": {
  105. "node": ">= 6.0.0"
  106. }
  107. },
  108. "node_modules/agentkeepalive": {
  109. "version": "4.5.0",
  110. "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz",
  111. "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==",
  112. "license": "MIT",
  113. "optional": true,
  114. "dependencies": {
  115. "humanize-ms": "^1.2.1"
  116. },
  117. "engines": {
  118. "node": ">= 8.0.0"
  119. }
  120. },
  121. "node_modules/aggregate-error": {
  122. "version": "3.1.0",
  123. "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
  124. "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
  125. "license": "MIT",
  126. "optional": true,
  127. "dependencies": {
  128. "clean-stack": "^2.0.0",
  129. "indent-string": "^4.0.0"
  130. },
  131. "engines": {
  132. "node": ">=8"
  133. }
  134. },
  135. "node_modules/ansi-regex": {
  136. "version": "5.0.1",
  137. "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
  138. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  139. "license": "MIT",
  140. "optional": true,
  141. "engines": {
  142. "node": ">=8"
  143. }
  144. },
  145. "node_modules/aproba": {
  146. "version": "2.0.0",
  147. "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
  148. "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
  149. "license": "ISC",
  150. "optional": true
  151. },
  152. "node_modules/are-we-there-yet": {
  153. "version": "3.0.1",
  154. "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
  155. "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
  156. "deprecated": "This package is no longer supported.",
  157. "license": "ISC",
  158. "optional": true,
  159. "dependencies": {
  160. "delegates": "^1.0.0",
  161. "readable-stream": "^3.6.0"
  162. },
  163. "engines": {
  164. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  165. }
  166. },
  167. "node_modules/array-flatten": {
  168. "version": "1.1.1",
  169. "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
  170. "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
  171. "license": "MIT"
  172. },
  173. "node_modules/aws-ssl-profiles": {
  174. "version": "1.1.2",
  175. "resolved": "https://registry.npmjs.org/aws-ssl-profiles/-/aws-ssl-profiles-1.1.2.tgz",
  176. "integrity": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==",
  177. "license": "MIT",
  178. "engines": {
  179. "node": ">= 6.0.0"
  180. }
  181. },
  182. "node_modules/balanced-match": {
  183. "version": "1.0.2",
  184. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  185. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  186. "license": "MIT",
  187. "optional": true
  188. },
  189. "node_modules/base64-js": {
  190. "version": "1.5.1",
  191. "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
  192. "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
  193. "funding": [
  194. {
  195. "type": "github",
  196. "url": "https://github.com/sponsors/feross"
  197. },
  198. {
  199. "type": "patreon",
  200. "url": "https://www.patreon.com/feross"
  201. },
  202. {
  203. "type": "consulting",
  204. "url": "https://feross.org/support"
  205. }
  206. ],
  207. "license": "MIT"
  208. },
  209. "node_modules/bignumber.js": {
  210. "version": "9.0.0",
  211. "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz",
  212. "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==",
  213. "license": "MIT",
  214. "engines": {
  215. "node": "*"
  216. }
  217. },
  218. "node_modules/bindings": {
  219. "version": "1.5.0",
  220. "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
  221. "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
  222. "license": "MIT",
  223. "dependencies": {
  224. "file-uri-to-path": "1.0.0"
  225. }
  226. },
  227. "node_modules/bl": {
  228. "version": "4.1.0",
  229. "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
  230. "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
  231. "license": "MIT",
  232. "dependencies": {
  233. "buffer": "^5.5.0",
  234. "inherits": "^2.0.4",
  235. "readable-stream": "^3.4.0"
  236. }
  237. },
  238. "node_modules/body-parser": {
  239. "version": "1.20.3",
  240. "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
  241. "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
  242. "license": "MIT",
  243. "dependencies": {
  244. "bytes": "3.1.2",
  245. "content-type": "~1.0.5",
  246. "debug": "2.6.9",
  247. "depd": "2.0.0",
  248. "destroy": "1.2.0",
  249. "http-errors": "2.0.0",
  250. "iconv-lite": "0.4.24",
  251. "on-finished": "2.4.1",
  252. "qs": "6.13.0",
  253. "raw-body": "2.5.2",
  254. "type-is": "~1.6.18",
  255. "unpipe": "1.0.0"
  256. },
  257. "engines": {
  258. "node": ">= 0.8",
  259. "npm": "1.2.8000 || >= 1.4.16"
  260. }
  261. },
  262. "node_modules/body-parser/node_modules/debug": {
  263. "version": "2.6.9",
  264. "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
  265. "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
  266. "license": "MIT",
  267. "dependencies": {
  268. "ms": "2.0.0"
  269. }
  270. },
  271. "node_modules/body-parser/node_modules/iconv-lite": {
  272. "version": "0.4.24",
  273. "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
  274. "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
  275. "license": "MIT",
  276. "dependencies": {
  277. "safer-buffer": ">= 2.1.2 < 3"
  278. },
  279. "engines": {
  280. "node": ">=0.10.0"
  281. }
  282. },
  283. "node_modules/body-parser/node_modules/ms": {
  284. "version": "2.0.0",
  285. "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
  286. "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
  287. "license": "MIT"
  288. },
  289. "node_modules/brace-expansion": {
  290. "version": "1.1.11",
  291. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
  292. "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
  293. "license": "MIT",
  294. "optional": true,
  295. "dependencies": {
  296. "balanced-match": "^1.0.0",
  297. "concat-map": "0.0.1"
  298. }
  299. },
  300. "node_modules/buffer": {
  301. "version": "5.7.1",
  302. "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
  303. "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
  304. "funding": [
  305. {
  306. "type": "github",
  307. "url": "https://github.com/sponsors/feross"
  308. },
  309. {
  310. "type": "patreon",
  311. "url": "https://www.patreon.com/feross"
  312. },
  313. {
  314. "type": "consulting",
  315. "url": "https://feross.org/support"
  316. }
  317. ],
  318. "license": "MIT",
  319. "dependencies": {
  320. "base64-js": "^1.3.1",
  321. "ieee754": "^1.1.13"
  322. }
  323. },
  324. "node_modules/buffer-equal-constant-time": {
  325. "version": "1.0.1",
  326. "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
  327. "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
  328. "license": "BSD-3-Clause"
  329. },
  330. "node_modules/bytes": {
  331. "version": "3.1.2",
  332. "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
  333. "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
  334. "license": "MIT",
  335. "engines": {
  336. "node": ">= 0.8"
  337. }
  338. },
  339. "node_modules/cacache": {
  340. "version": "15.3.0",
  341. "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
  342. "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
  343. "license": "ISC",
  344. "optional": true,
  345. "dependencies": {
  346. "@npmcli/fs": "^1.0.0",
  347. "@npmcli/move-file": "^1.0.1",
  348. "chownr": "^2.0.0",
  349. "fs-minipass": "^2.0.0",
  350. "glob": "^7.1.4",
  351. "infer-owner": "^1.0.4",
  352. "lru-cache": "^6.0.0",
  353. "minipass": "^3.1.1",
  354. "minipass-collect": "^1.0.2",
  355. "minipass-flush": "^1.0.5",
  356. "minipass-pipeline": "^1.2.2",
  357. "mkdirp": "^1.0.3",
  358. "p-map": "^4.0.0",
  359. "promise-inflight": "^1.0.1",
  360. "rimraf": "^3.0.2",
  361. "ssri": "^8.0.1",
  362. "tar": "^6.0.2",
  363. "unique-filename": "^1.1.1"
  364. },
  365. "engines": {
  366. "node": ">= 10"
  367. }
  368. },
  369. "node_modules/call-bind": {
  370. "version": "1.0.7",
  371. "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
  372. "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
  373. "license": "MIT",
  374. "dependencies": {
  375. "es-define-property": "^1.0.0",
  376. "es-errors": "^1.3.0",
  377. "function-bind": "^1.1.2",
  378. "get-intrinsic": "^1.2.4",
  379. "set-function-length": "^1.2.1"
  380. },
  381. "engines": {
  382. "node": ">= 0.4"
  383. },
  384. "funding": {
  385. "url": "https://github.com/sponsors/ljharb"
  386. }
  387. },
  388. "node_modules/chownr": {
  389. "version": "2.0.0",
  390. "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
  391. "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
  392. "license": "ISC",
  393. "engines": {
  394. "node": ">=10"
  395. }
  396. },
  397. "node_modules/clean-stack": {
  398. "version": "2.2.0",
  399. "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
  400. "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
  401. "license": "MIT",
  402. "optional": true,
  403. "engines": {
  404. "node": ">=6"
  405. }
  406. },
  407. "node_modules/color-support": {
  408. "version": "1.1.3",
  409. "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
  410. "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
  411. "license": "ISC",
  412. "optional": true,
  413. "bin": {
  414. "color-support": "bin.js"
  415. }
  416. },
  417. "node_modules/concat-map": {
  418. "version": "0.0.1",
  419. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  420. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  421. "license": "MIT",
  422. "optional": true
  423. },
  424. "node_modules/console-control-strings": {
  425. "version": "1.1.0",
  426. "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
  427. "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
  428. "license": "ISC",
  429. "optional": true
  430. },
  431. "node_modules/content-disposition": {
  432. "version": "0.5.4",
  433. "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
  434. "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
  435. "license": "MIT",
  436. "dependencies": {
  437. "safe-buffer": "5.2.1"
  438. },
  439. "engines": {
  440. "node": ">= 0.6"
  441. }
  442. },
  443. "node_modules/content-type": {
  444. "version": "1.0.5",
  445. "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
  446. "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
  447. "license": "MIT",
  448. "engines": {
  449. "node": ">= 0.6"
  450. }
  451. },
  452. "node_modules/cookie": {
  453. "version": "0.7.1",
  454. "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
  455. "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
  456. "license": "MIT",
  457. "engines": {
  458. "node": ">= 0.6"
  459. }
  460. },
  461. "node_modules/cookie-signature": {
  462. "version": "1.0.6",
  463. "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
  464. "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
  465. "license": "MIT"
  466. },
  467. "node_modules/core-util-is": {
  468. "version": "1.0.3",
  469. "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
  470. "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
  471. "license": "MIT"
  472. },
  473. "node_modules/debug": {
  474. "version": "4.3.7",
  475. "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
  476. "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
  477. "license": "MIT",
  478. "optional": true,
  479. "dependencies": {
  480. "ms": "^2.1.3"
  481. },
  482. "engines": {
  483. "node": ">=6.0"
  484. },
  485. "peerDependenciesMeta": {
  486. "supports-color": {
  487. "optional": true
  488. }
  489. }
  490. },
  491. "node_modules/decompress-response": {
  492. "version": "6.0.0",
  493. "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
  494. "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
  495. "license": "MIT",
  496. "dependencies": {
  497. "mimic-response": "^3.1.0"
  498. },
  499. "engines": {
  500. "node": ">=10"
  501. },
  502. "funding": {
  503. "url": "https://github.com/sponsors/sindresorhus"
  504. }
  505. },
  506. "node_modules/deep-extend": {
  507. "version": "0.6.0",
  508. "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
  509. "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
  510. "license": "MIT",
  511. "engines": {
  512. "node": ">=4.0.0"
  513. }
  514. },
  515. "node_modules/define-data-property": {
  516. "version": "1.1.4",
  517. "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
  518. "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
  519. "license": "MIT",
  520. "dependencies": {
  521. "es-define-property": "^1.0.0",
  522. "es-errors": "^1.3.0",
  523. "gopd": "^1.0.1"
  524. },
  525. "engines": {
  526. "node": ">= 0.4"
  527. },
  528. "funding": {
  529. "url": "https://github.com/sponsors/ljharb"
  530. }
  531. },
  532. "node_modules/delegates": {
  533. "version": "1.0.0",
  534. "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
  535. "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
  536. "license": "MIT",
  537. "optional": true
  538. },
  539. "node_modules/denque": {
  540. "version": "2.1.0",
  541. "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
  542. "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
  543. "license": "Apache-2.0",
  544. "engines": {
  545. "node": ">=0.10"
  546. }
  547. },
  548. "node_modules/depd": {
  549. "version": "2.0.0",
  550. "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
  551. "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
  552. "license": "MIT",
  553. "engines": {
  554. "node": ">= 0.8"
  555. }
  556. },
  557. "node_modules/destroy": {
  558. "version": "1.2.0",
  559. "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
  560. "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
  561. "license": "MIT",
  562. "engines": {
  563. "node": ">= 0.8",
  564. "npm": "1.2.8000 || >= 1.4.16"
  565. }
  566. },
  567. "node_modules/detect-libc": {
  568. "version": "2.0.3",
  569. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
  570. "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
  571. "license": "Apache-2.0",
  572. "engines": {
  573. "node": ">=8"
  574. }
  575. },
  576. "node_modules/ecdsa-sig-formatter": {
  577. "version": "1.0.11",
  578. "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
  579. "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
  580. "license": "Apache-2.0",
  581. "dependencies": {
  582. "safe-buffer": "^5.0.1"
  583. }
  584. },
  585. "node_modules/ee-first": {
  586. "version": "1.1.1",
  587. "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
  588. "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
  589. "license": "MIT"
  590. },
  591. "node_modules/emoji-regex": {
  592. "version": "8.0.0",
  593. "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
  594. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  595. "license": "MIT",
  596. "optional": true
  597. },
  598. "node_modules/encodeurl": {
  599. "version": "2.0.0",
  600. "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
  601. "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
  602. "license": "MIT",
  603. "engines": {
  604. "node": ">= 0.8"
  605. }
  606. },
  607. "node_modules/encoding": {
  608. "version": "0.1.13",
  609. "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
  610. "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
  611. "license": "MIT",
  612. "optional": true,
  613. "dependencies": {
  614. "iconv-lite": "^0.6.2"
  615. }
  616. },
  617. "node_modules/end-of-stream": {
  618. "version": "1.4.4",
  619. "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
  620. "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
  621. "license": "MIT",
  622. "dependencies": {
  623. "once": "^1.4.0"
  624. }
  625. },
  626. "node_modules/env-paths": {
  627. "version": "2.2.1",
  628. "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
  629. "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
  630. "license": "MIT",
  631. "optional": true,
  632. "engines": {
  633. "node": ">=6"
  634. }
  635. },
  636. "node_modules/err-code": {
  637. "version": "2.0.3",
  638. "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
  639. "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
  640. "license": "MIT",
  641. "optional": true
  642. },
  643. "node_modules/es-define-property": {
  644. "version": "1.0.0",
  645. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
  646. "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
  647. "license": "MIT",
  648. "dependencies": {
  649. "get-intrinsic": "^1.2.4"
  650. },
  651. "engines": {
  652. "node": ">= 0.4"
  653. }
  654. },
  655. "node_modules/es-errors": {
  656. "version": "1.3.0",
  657. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  658. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  659. "license": "MIT",
  660. "engines": {
  661. "node": ">= 0.4"
  662. }
  663. },
  664. "node_modules/escape-html": {
  665. "version": "1.0.3",
  666. "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
  667. "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
  668. "license": "MIT"
  669. },
  670. "node_modules/etag": {
  671. "version": "1.8.1",
  672. "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
  673. "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
  674. "license": "MIT",
  675. "engines": {
  676. "node": ">= 0.6"
  677. }
  678. },
  679. "node_modules/expand-template": {
  680. "version": "2.0.3",
  681. "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
  682. "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
  683. "license": "(MIT OR WTFPL)",
  684. "engines": {
  685. "node": ">=6"
  686. }
  687. },
  688. "node_modules/express": {
  689. "version": "4.21.1",
  690. "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz",
  691. "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==",
  692. "license": "MIT",
  693. "dependencies": {
  694. "accepts": "~1.3.8",
  695. "array-flatten": "1.1.1",
  696. "body-parser": "1.20.3",
  697. "content-disposition": "0.5.4",
  698. "content-type": "~1.0.4",
  699. "cookie": "0.7.1",
  700. "cookie-signature": "1.0.6",
  701. "debug": "2.6.9",
  702. "depd": "2.0.0",
  703. "encodeurl": "~2.0.0",
  704. "escape-html": "~1.0.3",
  705. "etag": "~1.8.1",
  706. "finalhandler": "1.3.1",
  707. "fresh": "0.5.2",
  708. "http-errors": "2.0.0",
  709. "merge-descriptors": "1.0.3",
  710. "methods": "~1.1.2",
  711. "on-finished": "2.4.1",
  712. "parseurl": "~1.3.3",
  713. "path-to-regexp": "0.1.10",
  714. "proxy-addr": "~2.0.7",
  715. "qs": "6.13.0",
  716. "range-parser": "~1.2.1",
  717. "safe-buffer": "5.2.1",
  718. "send": "0.19.0",
  719. "serve-static": "1.16.2",
  720. "setprototypeof": "1.2.0",
  721. "statuses": "2.0.1",
  722. "type-is": "~1.6.18",
  723. "utils-merge": "1.0.1",
  724. "vary": "~1.1.2"
  725. },
  726. "engines": {
  727. "node": ">= 0.10.0"
  728. }
  729. },
  730. "node_modules/express/node_modules/debug": {
  731. "version": "2.6.9",
  732. "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
  733. "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
  734. "license": "MIT",
  735. "dependencies": {
  736. "ms": "2.0.0"
  737. }
  738. },
  739. "node_modules/express/node_modules/ms": {
  740. "version": "2.0.0",
  741. "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
  742. "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
  743. "license": "MIT"
  744. },
  745. "node_modules/file-uri-to-path": {
  746. "version": "1.0.0",
  747. "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
  748. "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
  749. "license": "MIT"
  750. },
  751. "node_modules/finalhandler": {
  752. "version": "1.3.1",
  753. "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
  754. "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
  755. "license": "MIT",
  756. "dependencies": {
  757. "debug": "2.6.9",
  758. "encodeurl": "~2.0.0",
  759. "escape-html": "~1.0.3",
  760. "on-finished": "2.4.1",
  761. "parseurl": "~1.3.3",
  762. "statuses": "2.0.1",
  763. "unpipe": "~1.0.0"
  764. },
  765. "engines": {
  766. "node": ">= 0.8"
  767. }
  768. },
  769. "node_modules/finalhandler/node_modules/debug": {
  770. "version": "2.6.9",
  771. "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
  772. "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
  773. "license": "MIT",
  774. "dependencies": {
  775. "ms": "2.0.0"
  776. }
  777. },
  778. "node_modules/finalhandler/node_modules/ms": {
  779. "version": "2.0.0",
  780. "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
  781. "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
  782. "license": "MIT"
  783. },
  784. "node_modules/forwarded": {
  785. "version": "0.2.0",
  786. "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
  787. "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
  788. "license": "MIT",
  789. "engines": {
  790. "node": ">= 0.6"
  791. }
  792. },
  793. "node_modules/fresh": {
  794. "version": "0.5.2",
  795. "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
  796. "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
  797. "license": "MIT",
  798. "engines": {
  799. "node": ">= 0.6"
  800. }
  801. },
  802. "node_modules/fs-constants": {
  803. "version": "1.0.0",
  804. "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
  805. "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
  806. "license": "MIT"
  807. },
  808. "node_modules/fs-minipass": {
  809. "version": "2.1.0",
  810. "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
  811. "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
  812. "license": "ISC",
  813. "dependencies": {
  814. "minipass": "^3.0.0"
  815. },
  816. "engines": {
  817. "node": ">= 8"
  818. }
  819. },
  820. "node_modules/fs.realpath": {
  821. "version": "1.0.0",
  822. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  823. "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
  824. "license": "ISC",
  825. "optional": true
  826. },
  827. "node_modules/function-bind": {
  828. "version": "1.1.2",
  829. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  830. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  831. "license": "MIT",
  832. "funding": {
  833. "url": "https://github.com/sponsors/ljharb"
  834. }
  835. },
  836. "node_modules/gauge": {
  837. "version": "4.0.4",
  838. "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
  839. "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
  840. "deprecated": "This package is no longer supported.",
  841. "license": "ISC",
  842. "optional": true,
  843. "dependencies": {
  844. "aproba": "^1.0.3 || ^2.0.0",
  845. "color-support": "^1.1.3",
  846. "console-control-strings": "^1.1.0",
  847. "has-unicode": "^2.0.1",
  848. "signal-exit": "^3.0.7",
  849. "string-width": "^4.2.3",
  850. "strip-ansi": "^6.0.1",
  851. "wide-align": "^1.1.5"
  852. },
  853. "engines": {
  854. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  855. }
  856. },
  857. "node_modules/generate-function": {
  858. "version": "2.3.1",
  859. "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz",
  860. "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==",
  861. "license": "MIT",
  862. "dependencies": {
  863. "is-property": "^1.0.2"
  864. }
  865. },
  866. "node_modules/get-intrinsic": {
  867. "version": "1.2.4",
  868. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
  869. "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
  870. "license": "MIT",
  871. "dependencies": {
  872. "es-errors": "^1.3.0",
  873. "function-bind": "^1.1.2",
  874. "has-proto": "^1.0.1",
  875. "has-symbols": "^1.0.3",
  876. "hasown": "^2.0.0"
  877. },
  878. "engines": {
  879. "node": ">= 0.4"
  880. },
  881. "funding": {
  882. "url": "https://github.com/sponsors/ljharb"
  883. }
  884. },
  885. "node_modules/github-from-package": {
  886. "version": "0.0.0",
  887. "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
  888. "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
  889. "license": "MIT"
  890. },
  891. "node_modules/glob": {
  892. "version": "7.2.3",
  893. "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
  894. "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
  895. "deprecated": "Glob versions prior to v9 are no longer supported",
  896. "license": "ISC",
  897. "optional": true,
  898. "dependencies": {
  899. "fs.realpath": "^1.0.0",
  900. "inflight": "^1.0.4",
  901. "inherits": "2",
  902. "minimatch": "^3.1.1",
  903. "once": "^1.3.0",
  904. "path-is-absolute": "^1.0.0"
  905. },
  906. "engines": {
  907. "node": "*"
  908. },
  909. "funding": {
  910. "url": "https://github.com/sponsors/isaacs"
  911. }
  912. },
  913. "node_modules/gopd": {
  914. "version": "1.1.0",
  915. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.1.0.tgz",
  916. "integrity": "sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==",
  917. "license": "MIT",
  918. "dependencies": {
  919. "get-intrinsic": "^1.2.4"
  920. },
  921. "engines": {
  922. "node": ">= 0.4"
  923. },
  924. "funding": {
  925. "url": "https://github.com/sponsors/ljharb"
  926. }
  927. },
  928. "node_modules/graceful-fs": {
  929. "version": "4.2.11",
  930. "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
  931. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  932. "license": "ISC",
  933. "optional": true
  934. },
  935. "node_modules/has-property-descriptors": {
  936. "version": "1.0.2",
  937. "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
  938. "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
  939. "license": "MIT",
  940. "dependencies": {
  941. "es-define-property": "^1.0.0"
  942. },
  943. "funding": {
  944. "url": "https://github.com/sponsors/ljharb"
  945. }
  946. },
  947. "node_modules/has-proto": {
  948. "version": "1.1.0",
  949. "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.1.0.tgz",
  950. "integrity": "sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==",
  951. "license": "MIT",
  952. "dependencies": {
  953. "call-bind": "^1.0.7"
  954. },
  955. "engines": {
  956. "node": ">= 0.4"
  957. },
  958. "funding": {
  959. "url": "https://github.com/sponsors/ljharb"
  960. }
  961. },
  962. "node_modules/has-symbols": {
  963. "version": "1.0.3",
  964. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
  965. "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
  966. "license": "MIT",
  967. "engines": {
  968. "node": ">= 0.4"
  969. },
  970. "funding": {
  971. "url": "https://github.com/sponsors/ljharb"
  972. }
  973. },
  974. "node_modules/has-unicode": {
  975. "version": "2.0.1",
  976. "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
  977. "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
  978. "license": "ISC",
  979. "optional": true
  980. },
  981. "node_modules/hasown": {
  982. "version": "2.0.2",
  983. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  984. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  985. "license": "MIT",
  986. "dependencies": {
  987. "function-bind": "^1.1.2"
  988. },
  989. "engines": {
  990. "node": ">= 0.4"
  991. }
  992. },
  993. "node_modules/html-entities": {
  994. "version": "2.5.2",
  995. "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz",
  996. "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==",
  997. "funding": [
  998. {
  999. "type": "github",
  1000. "url": "https://github.com/sponsors/mdevils"
  1001. },
  1002. {
  1003. "type": "patreon",
  1004. "url": "https://patreon.com/mdevils"
  1005. }
  1006. ],
  1007. "license": "MIT"
  1008. },
  1009. "node_modules/http-cache-semantics": {
  1010. "version": "4.1.1",
  1011. "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
  1012. "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==",
  1013. "license": "BSD-2-Clause",
  1014. "optional": true
  1015. },
  1016. "node_modules/http-errors": {
  1017. "version": "2.0.0",
  1018. "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
  1019. "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
  1020. "license": "MIT",
  1021. "dependencies": {
  1022. "depd": "2.0.0",
  1023. "inherits": "2.0.4",
  1024. "setprototypeof": "1.2.0",
  1025. "statuses": "2.0.1",
  1026. "toidentifier": "1.0.1"
  1027. },
  1028. "engines": {
  1029. "node": ">= 0.8"
  1030. }
  1031. },
  1032. "node_modules/http-proxy-agent": {
  1033. "version": "4.0.1",
  1034. "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
  1035. "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
  1036. "license": "MIT",
  1037. "optional": true,
  1038. "dependencies": {
  1039. "@tootallnate/once": "1",
  1040. "agent-base": "6",
  1041. "debug": "4"
  1042. },
  1043. "engines": {
  1044. "node": ">= 6"
  1045. }
  1046. },
  1047. "node_modules/https": {
  1048. "version": "1.0.0",
  1049. "resolved": "https://registry.npmjs.org/https/-/https-1.0.0.tgz",
  1050. "integrity": "sha512-4EC57ddXrkaF0x83Oj8sM6SLQHAWXw90Skqu2M4AEWENZ3F02dFJE/GARA8igO79tcgYqGrD7ae4f5L3um2lgg==",
  1051. "license": "ISC"
  1052. },
  1053. "node_modules/https-proxy-agent": {
  1054. "version": "5.0.1",
  1055. "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
  1056. "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
  1057. "license": "MIT",
  1058. "optional": true,
  1059. "dependencies": {
  1060. "agent-base": "6",
  1061. "debug": "4"
  1062. },
  1063. "engines": {
  1064. "node": ">= 6"
  1065. }
  1066. },
  1067. "node_modules/humanize-ms": {
  1068. "version": "1.2.1",
  1069. "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
  1070. "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
  1071. "license": "MIT",
  1072. "optional": true,
  1073. "dependencies": {
  1074. "ms": "^2.0.0"
  1075. }
  1076. },
  1077. "node_modules/iconv-lite": {
  1078. "version": "0.6.3",
  1079. "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
  1080. "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
  1081. "license": "MIT",
  1082. "dependencies": {
  1083. "safer-buffer": ">= 2.1.2 < 3.0.0"
  1084. },
  1085. "engines": {
  1086. "node": ">=0.10.0"
  1087. }
  1088. },
  1089. "node_modules/ieee754": {
  1090. "version": "1.2.1",
  1091. "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
  1092. "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
  1093. "funding": [
  1094. {
  1095. "type": "github",
  1096. "url": "https://github.com/sponsors/feross"
  1097. },
  1098. {
  1099. "type": "patreon",
  1100. "url": "https://www.patreon.com/feross"
  1101. },
  1102. {
  1103. "type": "consulting",
  1104. "url": "https://feross.org/support"
  1105. }
  1106. ],
  1107. "license": "BSD-3-Clause"
  1108. },
  1109. "node_modules/imurmurhash": {
  1110. "version": "0.1.4",
  1111. "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
  1112. "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
  1113. "license": "MIT",
  1114. "optional": true,
  1115. "engines": {
  1116. "node": ">=0.8.19"
  1117. }
  1118. },
  1119. "node_modules/indent-string": {
  1120. "version": "4.0.0",
  1121. "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
  1122. "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
  1123. "license": "MIT",
  1124. "optional": true,
  1125. "engines": {
  1126. "node": ">=8"
  1127. }
  1128. },
  1129. "node_modules/infer-owner": {
  1130. "version": "1.0.4",
  1131. "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
  1132. "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
  1133. "license": "ISC",
  1134. "optional": true
  1135. },
  1136. "node_modules/inflight": {
  1137. "version": "1.0.6",
  1138. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  1139. "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
  1140. "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
  1141. "license": "ISC",
  1142. "optional": true,
  1143. "dependencies": {
  1144. "once": "^1.3.0",
  1145. "wrappy": "1"
  1146. }
  1147. },
  1148. "node_modules/inherits": {
  1149. "version": "2.0.4",
  1150. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  1151. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  1152. "license": "ISC"
  1153. },
  1154. "node_modules/ini": {
  1155. "version": "1.3.8",
  1156. "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
  1157. "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
  1158. "license": "ISC"
  1159. },
  1160. "node_modules/ip-address": {
  1161. "version": "9.0.5",
  1162. "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz",
  1163. "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==",
  1164. "license": "MIT",
  1165. "optional": true,
  1166. "dependencies": {
  1167. "jsbn": "1.1.0",
  1168. "sprintf-js": "^1.1.3"
  1169. },
  1170. "engines": {
  1171. "node": ">= 12"
  1172. }
  1173. },
  1174. "node_modules/ipaddr.js": {
  1175. "version": "1.9.1",
  1176. "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
  1177. "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
  1178. "license": "MIT",
  1179. "engines": {
  1180. "node": ">= 0.10"
  1181. }
  1182. },
  1183. "node_modules/is-fullwidth-code-point": {
  1184. "version": "3.0.0",
  1185. "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  1186. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  1187. "license": "MIT",
  1188. "optional": true,
  1189. "engines": {
  1190. "node": ">=8"
  1191. }
  1192. },
  1193. "node_modules/is-lambda": {
  1194. "version": "1.0.1",
  1195. "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
  1196. "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==",
  1197. "license": "MIT",
  1198. "optional": true
  1199. },
  1200. "node_modules/is-property": {
  1201. "version": "1.0.2",
  1202. "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
  1203. "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==",
  1204. "license": "MIT"
  1205. },
  1206. "node_modules/isarray": {
  1207. "version": "1.0.0",
  1208. "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
  1209. "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
  1210. "license": "MIT"
  1211. },
  1212. "node_modules/isexe": {
  1213. "version": "2.0.0",
  1214. "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
  1215. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  1216. "license": "ISC",
  1217. "optional": true
  1218. },
  1219. "node_modules/jsbn": {
  1220. "version": "1.1.0",
  1221. "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz",
  1222. "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==",
  1223. "license": "MIT",
  1224. "optional": true
  1225. },
  1226. "node_modules/jsonwebtoken": {
  1227. "version": "9.0.2",
  1228. "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz",
  1229. "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==",
  1230. "license": "MIT",
  1231. "dependencies": {
  1232. "jws": "^3.2.2",
  1233. "lodash.includes": "^4.3.0",
  1234. "lodash.isboolean": "^3.0.3",
  1235. "lodash.isinteger": "^4.0.4",
  1236. "lodash.isnumber": "^3.0.3",
  1237. "lodash.isplainobject": "^4.0.6",
  1238. "lodash.isstring": "^4.0.1",
  1239. "lodash.once": "^4.0.0",
  1240. "ms": "^2.1.1",
  1241. "semver": "^7.5.4"
  1242. },
  1243. "engines": {
  1244. "node": ">=12",
  1245. "npm": ">=6"
  1246. }
  1247. },
  1248. "node_modules/jwa": {
  1249. "version": "1.4.1",
  1250. "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
  1251. "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
  1252. "license": "MIT",
  1253. "dependencies": {
  1254. "buffer-equal-constant-time": "1.0.1",
  1255. "ecdsa-sig-formatter": "1.0.11",
  1256. "safe-buffer": "^5.0.1"
  1257. }
  1258. },
  1259. "node_modules/jws": {
  1260. "version": "3.2.2",
  1261. "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
  1262. "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
  1263. "license": "MIT",
  1264. "dependencies": {
  1265. "jwa": "^1.4.1",
  1266. "safe-buffer": "^5.0.1"
  1267. }
  1268. },
  1269. "node_modules/lodash.includes": {
  1270. "version": "4.3.0",
  1271. "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
  1272. "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==",
  1273. "license": "MIT"
  1274. },
  1275. "node_modules/lodash.isboolean": {
  1276. "version": "3.0.3",
  1277. "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
  1278. "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==",
  1279. "license": "MIT"
  1280. },
  1281. "node_modules/lodash.isinteger": {
  1282. "version": "4.0.4",
  1283. "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
  1284. "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==",
  1285. "license": "MIT"
  1286. },
  1287. "node_modules/lodash.isnumber": {
  1288. "version": "3.0.3",
  1289. "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
  1290. "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==",
  1291. "license": "MIT"
  1292. },
  1293. "node_modules/lodash.isplainobject": {
  1294. "version": "4.0.6",
  1295. "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
  1296. "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
  1297. "license": "MIT"
  1298. },
  1299. "node_modules/lodash.isstring": {
  1300. "version": "4.0.1",
  1301. "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
  1302. "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==",
  1303. "license": "MIT"
  1304. },
  1305. "node_modules/lodash.once": {
  1306. "version": "4.1.1",
  1307. "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
  1308. "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
  1309. "license": "MIT"
  1310. },
  1311. "node_modules/long": {
  1312. "version": "5.2.3",
  1313. "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz",
  1314. "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==",
  1315. "license": "Apache-2.0"
  1316. },
  1317. "node_modules/lru-cache": {
  1318. "version": "6.0.0",
  1319. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
  1320. "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
  1321. "license": "ISC",
  1322. "optional": true,
  1323. "dependencies": {
  1324. "yallist": "^4.0.0"
  1325. },
  1326. "engines": {
  1327. "node": ">=10"
  1328. }
  1329. },
  1330. "node_modules/lru.min": {
  1331. "version": "1.1.1",
  1332. "resolved": "https://registry.npmjs.org/lru.min/-/lru.min-1.1.1.tgz",
  1333. "integrity": "sha512-FbAj6lXil6t8z4z3j0E5mfRlPzxkySotzUHwRXjlpRh10vc6AI6WN62ehZj82VG7M20rqogJ0GLwar2Xa05a8Q==",
  1334. "license": "MIT",
  1335. "engines": {
  1336. "bun": ">=1.0.0",
  1337. "deno": ">=1.30.0",
  1338. "node": ">=8.0.0"
  1339. },
  1340. "funding": {
  1341. "type": "github",
  1342. "url": "https://github.com/sponsors/wellwelwel"
  1343. }
  1344. },
  1345. "node_modules/make-fetch-happen": {
  1346. "version": "9.1.0",
  1347. "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
  1348. "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
  1349. "license": "ISC",
  1350. "optional": true,
  1351. "dependencies": {
  1352. "agentkeepalive": "^4.1.3",
  1353. "cacache": "^15.2.0",
  1354. "http-cache-semantics": "^4.1.0",
  1355. "http-proxy-agent": "^4.0.1",
  1356. "https-proxy-agent": "^5.0.0",
  1357. "is-lambda": "^1.0.1",
  1358. "lru-cache": "^6.0.0",
  1359. "minipass": "^3.1.3",
  1360. "minipass-collect": "^1.0.2",
  1361. "minipass-fetch": "^1.3.2",
  1362. "minipass-flush": "^1.0.5",
  1363. "minipass-pipeline": "^1.2.4",
  1364. "negotiator": "^0.6.2",
  1365. "promise-retry": "^2.0.1",
  1366. "socks-proxy-agent": "^6.0.0",
  1367. "ssri": "^8.0.0"
  1368. },
  1369. "engines": {
  1370. "node": ">= 10"
  1371. }
  1372. },
  1373. "node_modules/media-typer": {
  1374. "version": "0.3.0",
  1375. "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
  1376. "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
  1377. "license": "MIT",
  1378. "engines": {
  1379. "node": ">= 0.6"
  1380. }
  1381. },
  1382. "node_modules/merge-descriptors": {
  1383. "version": "1.0.3",
  1384. "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
  1385. "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
  1386. "license": "MIT",
  1387. "funding": {
  1388. "url": "https://github.com/sponsors/sindresorhus"
  1389. }
  1390. },
  1391. "node_modules/methods": {
  1392. "version": "1.1.2",
  1393. "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
  1394. "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
  1395. "license": "MIT",
  1396. "engines": {
  1397. "node": ">= 0.6"
  1398. }
  1399. },
  1400. "node_modules/mime": {
  1401. "version": "1.6.0",
  1402. "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
  1403. "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
  1404. "license": "MIT",
  1405. "bin": {
  1406. "mime": "cli.js"
  1407. },
  1408. "engines": {
  1409. "node": ">=4"
  1410. }
  1411. },
  1412. "node_modules/mime-db": {
  1413. "version": "1.52.0",
  1414. "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
  1415. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  1416. "license": "MIT",
  1417. "engines": {
  1418. "node": ">= 0.6"
  1419. }
  1420. },
  1421. "node_modules/mime-types": {
  1422. "version": "2.1.35",
  1423. "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
  1424. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  1425. "license": "MIT",
  1426. "dependencies": {
  1427. "mime-db": "1.52.0"
  1428. },
  1429. "engines": {
  1430. "node": ">= 0.6"
  1431. }
  1432. },
  1433. "node_modules/mimic-response": {
  1434. "version": "3.1.0",
  1435. "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
  1436. "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
  1437. "license": "MIT",
  1438. "engines": {
  1439. "node": ">=10"
  1440. },
  1441. "funding": {
  1442. "url": "https://github.com/sponsors/sindresorhus"
  1443. }
  1444. },
  1445. "node_modules/minimatch": {
  1446. "version": "3.1.2",
  1447. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
  1448. "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
  1449. "license": "ISC",
  1450. "optional": true,
  1451. "dependencies": {
  1452. "brace-expansion": "^1.1.7"
  1453. },
  1454. "engines": {
  1455. "node": "*"
  1456. }
  1457. },
  1458. "node_modules/minimist": {
  1459. "version": "1.2.8",
  1460. "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
  1461. "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
  1462. "license": "MIT",
  1463. "funding": {
  1464. "url": "https://github.com/sponsors/ljharb"
  1465. }
  1466. },
  1467. "node_modules/minipass": {
  1468. "version": "3.3.6",
  1469. "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
  1470. "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
  1471. "license": "ISC",
  1472. "dependencies": {
  1473. "yallist": "^4.0.0"
  1474. },
  1475. "engines": {
  1476. "node": ">=8"
  1477. }
  1478. },
  1479. "node_modules/minipass-collect": {
  1480. "version": "1.0.2",
  1481. "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
  1482. "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
  1483. "license": "ISC",
  1484. "optional": true,
  1485. "dependencies": {
  1486. "minipass": "^3.0.0"
  1487. },
  1488. "engines": {
  1489. "node": ">= 8"
  1490. }
  1491. },
  1492. "node_modules/minipass-fetch": {
  1493. "version": "1.4.1",
  1494. "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
  1495. "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
  1496. "license": "MIT",
  1497. "optional": true,
  1498. "dependencies": {
  1499. "minipass": "^3.1.0",
  1500. "minipass-sized": "^1.0.3",
  1501. "minizlib": "^2.0.0"
  1502. },
  1503. "engines": {
  1504. "node": ">=8"
  1505. },
  1506. "optionalDependencies": {
  1507. "encoding": "^0.1.12"
  1508. }
  1509. },
  1510. "node_modules/minipass-flush": {
  1511. "version": "1.0.5",
  1512. "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
  1513. "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
  1514. "license": "ISC",
  1515. "optional": true,
  1516. "dependencies": {
  1517. "minipass": "^3.0.0"
  1518. },
  1519. "engines": {
  1520. "node": ">= 8"
  1521. }
  1522. },
  1523. "node_modules/minipass-pipeline": {
  1524. "version": "1.2.4",
  1525. "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
  1526. "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
  1527. "license": "ISC",
  1528. "optional": true,
  1529. "dependencies": {
  1530. "minipass": "^3.0.0"
  1531. },
  1532. "engines": {
  1533. "node": ">=8"
  1534. }
  1535. },
  1536. "node_modules/minipass-sized": {
  1537. "version": "1.0.3",
  1538. "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
  1539. "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
  1540. "license": "ISC",
  1541. "optional": true,
  1542. "dependencies": {
  1543. "minipass": "^3.0.0"
  1544. },
  1545. "engines": {
  1546. "node": ">=8"
  1547. }
  1548. },
  1549. "node_modules/minizlib": {
  1550. "version": "2.1.2",
  1551. "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
  1552. "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
  1553. "license": "MIT",
  1554. "dependencies": {
  1555. "minipass": "^3.0.0",
  1556. "yallist": "^4.0.0"
  1557. },
  1558. "engines": {
  1559. "node": ">= 8"
  1560. }
  1561. },
  1562. "node_modules/mkdirp": {
  1563. "version": "1.0.4",
  1564. "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
  1565. "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
  1566. "license": "MIT",
  1567. "bin": {
  1568. "mkdirp": "bin/cmd.js"
  1569. },
  1570. "engines": {
  1571. "node": ">=10"
  1572. }
  1573. },
  1574. "node_modules/mkdirp-classic": {
  1575. "version": "0.5.3",
  1576. "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
  1577. "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
  1578. "license": "MIT"
  1579. },
  1580. "node_modules/ms": {
  1581. "version": "2.1.3",
  1582. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  1583. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  1584. "license": "MIT"
  1585. },
  1586. "node_modules/mysql": {
  1587. "version": "2.18.1",
  1588. "resolved": "https://registry.npmjs.org/mysql/-/mysql-2.18.1.tgz",
  1589. "integrity": "sha512-Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig==",
  1590. "license": "MIT",
  1591. "dependencies": {
  1592. "bignumber.js": "9.0.0",
  1593. "readable-stream": "2.3.7",
  1594. "safe-buffer": "5.1.2",
  1595. "sqlstring": "2.3.1"
  1596. },
  1597. "engines": {
  1598. "node": ">= 0.6"
  1599. }
  1600. },
  1601. "node_modules/mysql/node_modules/readable-stream": {
  1602. "version": "2.3.7",
  1603. "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
  1604. "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
  1605. "license": "MIT",
  1606. "dependencies": {
  1607. "core-util-is": "~1.0.0",
  1608. "inherits": "~2.0.3",
  1609. "isarray": "~1.0.0",
  1610. "process-nextick-args": "~2.0.0",
  1611. "safe-buffer": "~5.1.1",
  1612. "string_decoder": "~1.1.1",
  1613. "util-deprecate": "~1.0.1"
  1614. }
  1615. },
  1616. "node_modules/mysql/node_modules/safe-buffer": {
  1617. "version": "5.1.2",
  1618. "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
  1619. "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
  1620. "license": "MIT"
  1621. },
  1622. "node_modules/mysql/node_modules/string_decoder": {
  1623. "version": "1.1.1",
  1624. "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
  1625. "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
  1626. "license": "MIT",
  1627. "dependencies": {
  1628. "safe-buffer": "~5.1.0"
  1629. }
  1630. },
  1631. "node_modules/mysql2": {
  1632. "version": "3.11.5",
  1633. "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.11.5.tgz",
  1634. "integrity": "sha512-0XFu8rUmFN9vC0ME36iBvCUObftiMHItrYFhlCRvFWbLgpNqtC4Br/NmZX1HNCszxT0GGy5QtP+k3Q3eCJPaYA==",
  1635. "license": "MIT",
  1636. "dependencies": {
  1637. "aws-ssl-profiles": "^1.1.1",
  1638. "denque": "^2.1.0",
  1639. "generate-function": "^2.3.1",
  1640. "iconv-lite": "^0.6.3",
  1641. "long": "^5.2.1",
  1642. "lru.min": "^1.0.0",
  1643. "named-placeholders": "^1.1.3",
  1644. "seq-queue": "^0.0.5",
  1645. "sqlstring": "^2.3.2"
  1646. },
  1647. "engines": {
  1648. "node": ">= 8.0"
  1649. }
  1650. },
  1651. "node_modules/mysql2/node_modules/sqlstring": {
  1652. "version": "2.3.3",
  1653. "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz",
  1654. "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==",
  1655. "license": "MIT",
  1656. "engines": {
  1657. "node": ">= 0.6"
  1658. }
  1659. },
  1660. "node_modules/named-placeholders": {
  1661. "version": "1.1.3",
  1662. "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz",
  1663. "integrity": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==",
  1664. "license": "MIT",
  1665. "dependencies": {
  1666. "lru-cache": "^7.14.1"
  1667. },
  1668. "engines": {
  1669. "node": ">=12.0.0"
  1670. }
  1671. },
  1672. "node_modules/named-placeholders/node_modules/lru-cache": {
  1673. "version": "7.18.3",
  1674. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
  1675. "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
  1676. "license": "ISC",
  1677. "engines": {
  1678. "node": ">=12"
  1679. }
  1680. },
  1681. "node_modules/napi-build-utils": {
  1682. "version": "1.0.2",
  1683. "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz",
  1684. "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==",
  1685. "license": "MIT"
  1686. },
  1687. "node_modules/negotiator": {
  1688. "version": "0.6.4",
  1689. "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
  1690. "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
  1691. "license": "MIT",
  1692. "optional": true,
  1693. "engines": {
  1694. "node": ">= 0.6"
  1695. }
  1696. },
  1697. "node_modules/node-abi": {
  1698. "version": "3.71.0",
  1699. "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz",
  1700. "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==",
  1701. "license": "MIT",
  1702. "dependencies": {
  1703. "semver": "^7.3.5"
  1704. },
  1705. "engines": {
  1706. "node": ">=10"
  1707. }
  1708. },
  1709. "node_modules/node-addon-api": {
  1710. "version": "7.1.1",
  1711. "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
  1712. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  1713. "license": "MIT"
  1714. },
  1715. "node_modules/node-gyp": {
  1716. "version": "8.4.1",
  1717. "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz",
  1718. "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
  1719. "license": "MIT",
  1720. "optional": true,
  1721. "dependencies": {
  1722. "env-paths": "^2.2.0",
  1723. "glob": "^7.1.4",
  1724. "graceful-fs": "^4.2.6",
  1725. "make-fetch-happen": "^9.1.0",
  1726. "nopt": "^5.0.0",
  1727. "npmlog": "^6.0.0",
  1728. "rimraf": "^3.0.2",
  1729. "semver": "^7.3.5",
  1730. "tar": "^6.1.2",
  1731. "which": "^2.0.2"
  1732. },
  1733. "bin": {
  1734. "node-gyp": "bin/node-gyp.js"
  1735. },
  1736. "engines": {
  1737. "node": ">= 10.12.0"
  1738. }
  1739. },
  1740. "node_modules/node-run-cmd": {
  1741. "version": "1.0.1",
  1742. "resolved": "https://registry.npmjs.org/node-run-cmd/-/node-run-cmd-1.0.1.tgz",
  1743. "integrity": "sha512-OUePfObrxlzQa3NE9QFUGgyPvTi81/fV41gwSU+HE4tZ7sEHiRC+O88gjw68WXp7BSj9uWjEbdEv4ei0117ffA==",
  1744. "license": "MIT"
  1745. },
  1746. "node_modules/nopt": {
  1747. "version": "5.0.0",
  1748. "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
  1749. "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
  1750. "license": "ISC",
  1751. "optional": true,
  1752. "dependencies": {
  1753. "abbrev": "1"
  1754. },
  1755. "bin": {
  1756. "nopt": "bin/nopt.js"
  1757. },
  1758. "engines": {
  1759. "node": ">=6"
  1760. }
  1761. },
  1762. "node_modules/npmlog": {
  1763. "version": "6.0.2",
  1764. "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
  1765. "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
  1766. "deprecated": "This package is no longer supported.",
  1767. "license": "ISC",
  1768. "optional": true,
  1769. "dependencies": {
  1770. "are-we-there-yet": "^3.0.0",
  1771. "console-control-strings": "^1.1.0",
  1772. "gauge": "^4.0.3",
  1773. "set-blocking": "^2.0.0"
  1774. },
  1775. "engines": {
  1776. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  1777. }
  1778. },
  1779. "node_modules/object-inspect": {
  1780. "version": "1.13.3",
  1781. "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
  1782. "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
  1783. "license": "MIT",
  1784. "engines": {
  1785. "node": ">= 0.4"
  1786. },
  1787. "funding": {
  1788. "url": "https://github.com/sponsors/ljharb"
  1789. }
  1790. },
  1791. "node_modules/on-finished": {
  1792. "version": "2.4.1",
  1793. "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
  1794. "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
  1795. "license": "MIT",
  1796. "dependencies": {
  1797. "ee-first": "1.1.1"
  1798. },
  1799. "engines": {
  1800. "node": ">= 0.8"
  1801. }
  1802. },
  1803. "node_modules/once": {
  1804. "version": "1.4.0",
  1805. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  1806. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  1807. "license": "ISC",
  1808. "dependencies": {
  1809. "wrappy": "1"
  1810. }
  1811. },
  1812. "node_modules/p-map": {
  1813. "version": "4.0.0",
  1814. "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
  1815. "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
  1816. "license": "MIT",
  1817. "optional": true,
  1818. "dependencies": {
  1819. "aggregate-error": "^3.0.0"
  1820. },
  1821. "engines": {
  1822. "node": ">=10"
  1823. },
  1824. "funding": {
  1825. "url": "https://github.com/sponsors/sindresorhus"
  1826. }
  1827. },
  1828. "node_modules/parseurl": {
  1829. "version": "1.3.3",
  1830. "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
  1831. "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
  1832. "license": "MIT",
  1833. "engines": {
  1834. "node": ">= 0.8"
  1835. }
  1836. },
  1837. "node_modules/path-is-absolute": {
  1838. "version": "1.0.1",
  1839. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  1840. "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
  1841. "license": "MIT",
  1842. "optional": true,
  1843. "engines": {
  1844. "node": ">=0.10.0"
  1845. }
  1846. },
  1847. "node_modules/path-to-regexp": {
  1848. "version": "0.1.10",
  1849. "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz",
  1850. "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==",
  1851. "license": "MIT"
  1852. },
  1853. "node_modules/prebuild-install": {
  1854. "version": "7.1.2",
  1855. "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz",
  1856. "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==",
  1857. "license": "MIT",
  1858. "dependencies": {
  1859. "detect-libc": "^2.0.0",
  1860. "expand-template": "^2.0.3",
  1861. "github-from-package": "0.0.0",
  1862. "minimist": "^1.2.3",
  1863. "mkdirp-classic": "^0.5.3",
  1864. "napi-build-utils": "^1.0.1",
  1865. "node-abi": "^3.3.0",
  1866. "pump": "^3.0.0",
  1867. "rc": "^1.2.7",
  1868. "simple-get": "^4.0.0",
  1869. "tar-fs": "^2.0.0",
  1870. "tunnel-agent": "^0.6.0"
  1871. },
  1872. "bin": {
  1873. "prebuild-install": "bin.js"
  1874. },
  1875. "engines": {
  1876. "node": ">=10"
  1877. }
  1878. },
  1879. "node_modules/process-nextick-args": {
  1880. "version": "2.0.1",
  1881. "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
  1882. "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
  1883. "license": "MIT"
  1884. },
  1885. "node_modules/promise-inflight": {
  1886. "version": "1.0.1",
  1887. "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
  1888. "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
  1889. "license": "ISC",
  1890. "optional": true
  1891. },
  1892. "node_modules/promise-retry": {
  1893. "version": "2.0.1",
  1894. "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
  1895. "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
  1896. "license": "MIT",
  1897. "optional": true,
  1898. "dependencies": {
  1899. "err-code": "^2.0.2",
  1900. "retry": "^0.12.0"
  1901. },
  1902. "engines": {
  1903. "node": ">=10"
  1904. }
  1905. },
  1906. "node_modules/proxy-addr": {
  1907. "version": "2.0.7",
  1908. "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
  1909. "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
  1910. "license": "MIT",
  1911. "dependencies": {
  1912. "forwarded": "0.2.0",
  1913. "ipaddr.js": "1.9.1"
  1914. },
  1915. "engines": {
  1916. "node": ">= 0.10"
  1917. }
  1918. },
  1919. "node_modules/pump": {
  1920. "version": "3.0.2",
  1921. "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
  1922. "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
  1923. "license": "MIT",
  1924. "dependencies": {
  1925. "end-of-stream": "^1.1.0",
  1926. "once": "^1.3.1"
  1927. }
  1928. },
  1929. "node_modules/qs": {
  1930. "version": "6.13.0",
  1931. "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
  1932. "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
  1933. "license": "BSD-3-Clause",
  1934. "dependencies": {
  1935. "side-channel": "^1.0.6"
  1936. },
  1937. "engines": {
  1938. "node": ">=0.6"
  1939. },
  1940. "funding": {
  1941. "url": "https://github.com/sponsors/ljharb"
  1942. }
  1943. },
  1944. "node_modules/range-parser": {
  1945. "version": "1.2.1",
  1946. "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
  1947. "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
  1948. "license": "MIT",
  1949. "engines": {
  1950. "node": ">= 0.6"
  1951. }
  1952. },
  1953. "node_modules/raw-body": {
  1954. "version": "2.5.2",
  1955. "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
  1956. "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
  1957. "license": "MIT",
  1958. "dependencies": {
  1959. "bytes": "3.1.2",
  1960. "http-errors": "2.0.0",
  1961. "iconv-lite": "0.4.24",
  1962. "unpipe": "1.0.0"
  1963. },
  1964. "engines": {
  1965. "node": ">= 0.8"
  1966. }
  1967. },
  1968. "node_modules/raw-body/node_modules/iconv-lite": {
  1969. "version": "0.4.24",
  1970. "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
  1971. "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
  1972. "license": "MIT",
  1973. "dependencies": {
  1974. "safer-buffer": ">= 2.1.2 < 3"
  1975. },
  1976. "engines": {
  1977. "node": ">=0.10.0"
  1978. }
  1979. },
  1980. "node_modules/rc": {
  1981. "version": "1.2.8",
  1982. "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
  1983. "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
  1984. "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
  1985. "dependencies": {
  1986. "deep-extend": "^0.6.0",
  1987. "ini": "~1.3.0",
  1988. "minimist": "^1.2.0",
  1989. "strip-json-comments": "~2.0.1"
  1990. },
  1991. "bin": {
  1992. "rc": "cli.js"
  1993. }
  1994. },
  1995. "node_modules/readable-stream": {
  1996. "version": "3.6.2",
  1997. "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
  1998. "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
  1999. "license": "MIT",
  2000. "dependencies": {
  2001. "inherits": "^2.0.3",
  2002. "string_decoder": "^1.1.1",
  2003. "util-deprecate": "^1.0.1"
  2004. },
  2005. "engines": {
  2006. "node": ">= 6"
  2007. }
  2008. },
  2009. "node_modules/retry": {
  2010. "version": "0.12.0",
  2011. "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
  2012. "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
  2013. "license": "MIT",
  2014. "optional": true,
  2015. "engines": {
  2016. "node": ">= 4"
  2017. }
  2018. },
  2019. "node_modules/rimraf": {
  2020. "version": "3.0.2",
  2021. "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
  2022. "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
  2023. "deprecated": "Rimraf versions prior to v4 are no longer supported",
  2024. "license": "ISC",
  2025. "optional": true,
  2026. "dependencies": {
  2027. "glob": "^7.1.3"
  2028. },
  2029. "bin": {
  2030. "rimraf": "bin.js"
  2031. },
  2032. "funding": {
  2033. "url": "https://github.com/sponsors/isaacs"
  2034. }
  2035. },
  2036. "node_modules/safe-buffer": {
  2037. "version": "5.2.1",
  2038. "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
  2039. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  2040. "funding": [
  2041. {
  2042. "type": "github",
  2043. "url": "https://github.com/sponsors/feross"
  2044. },
  2045. {
  2046. "type": "patreon",
  2047. "url": "https://www.patreon.com/feross"
  2048. },
  2049. {
  2050. "type": "consulting",
  2051. "url": "https://feross.org/support"
  2052. }
  2053. ],
  2054. "license": "MIT"
  2055. },
  2056. "node_modules/safer-buffer": {
  2057. "version": "2.1.2",
  2058. "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
  2059. "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
  2060. "license": "MIT"
  2061. },
  2062. "node_modules/semver": {
  2063. "version": "7.6.3",
  2064. "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
  2065. "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
  2066. "license": "ISC",
  2067. "bin": {
  2068. "semver": "bin/semver.js"
  2069. },
  2070. "engines": {
  2071. "node": ">=10"
  2072. }
  2073. },
  2074. "node_modules/send": {
  2075. "version": "0.19.0",
  2076. "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
  2077. "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
  2078. "license": "MIT",
  2079. "dependencies": {
  2080. "debug": "2.6.9",
  2081. "depd": "2.0.0",
  2082. "destroy": "1.2.0",
  2083. "encodeurl": "~1.0.2",
  2084. "escape-html": "~1.0.3",
  2085. "etag": "~1.8.1",
  2086. "fresh": "0.5.2",
  2087. "http-errors": "2.0.0",
  2088. "mime": "1.6.0",
  2089. "ms": "2.1.3",
  2090. "on-finished": "2.4.1",
  2091. "range-parser": "~1.2.1",
  2092. "statuses": "2.0.1"
  2093. },
  2094. "engines": {
  2095. "node": ">= 0.8.0"
  2096. }
  2097. },
  2098. "node_modules/send/node_modules/debug": {
  2099. "version": "2.6.9",
  2100. "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
  2101. "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
  2102. "license": "MIT",
  2103. "dependencies": {
  2104. "ms": "2.0.0"
  2105. }
  2106. },
  2107. "node_modules/send/node_modules/debug/node_modules/ms": {
  2108. "version": "2.0.0",
  2109. "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
  2110. "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
  2111. "license": "MIT"
  2112. },
  2113. "node_modules/send/node_modules/encodeurl": {
  2114. "version": "1.0.2",
  2115. "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
  2116. "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
  2117. "license": "MIT",
  2118. "engines": {
  2119. "node": ">= 0.8"
  2120. }
  2121. },
  2122. "node_modules/seq-queue": {
  2123. "version": "0.0.5",
  2124. "resolved": "https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz",
  2125. "integrity": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q=="
  2126. },
  2127. "node_modules/serve-static": {
  2128. "version": "1.16.2",
  2129. "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
  2130. "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
  2131. "license": "MIT",
  2132. "dependencies": {
  2133. "encodeurl": "~2.0.0",
  2134. "escape-html": "~1.0.3",
  2135. "parseurl": "~1.3.3",
  2136. "send": "0.19.0"
  2137. },
  2138. "engines": {
  2139. "node": ">= 0.8.0"
  2140. }
  2141. },
  2142. "node_modules/set-blocking": {
  2143. "version": "2.0.0",
  2144. "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
  2145. "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
  2146. "license": "ISC",
  2147. "optional": true
  2148. },
  2149. "node_modules/set-function-length": {
  2150. "version": "1.2.2",
  2151. "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
  2152. "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
  2153. "license": "MIT",
  2154. "dependencies": {
  2155. "define-data-property": "^1.1.4",
  2156. "es-errors": "^1.3.0",
  2157. "function-bind": "^1.1.2",
  2158. "get-intrinsic": "^1.2.4",
  2159. "gopd": "^1.0.1",
  2160. "has-property-descriptors": "^1.0.2"
  2161. },
  2162. "engines": {
  2163. "node": ">= 0.4"
  2164. }
  2165. },
  2166. "node_modules/setprototypeof": {
  2167. "version": "1.2.0",
  2168. "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
  2169. "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
  2170. "license": "ISC"
  2171. },
  2172. "node_modules/side-channel": {
  2173. "version": "1.0.6",
  2174. "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
  2175. "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
  2176. "license": "MIT",
  2177. "dependencies": {
  2178. "call-bind": "^1.0.7",
  2179. "es-errors": "^1.3.0",
  2180. "get-intrinsic": "^1.2.4",
  2181. "object-inspect": "^1.13.1"
  2182. },
  2183. "engines": {
  2184. "node": ">= 0.4"
  2185. },
  2186. "funding": {
  2187. "url": "https://github.com/sponsors/ljharb"
  2188. }
  2189. },
  2190. "node_modules/signal-exit": {
  2191. "version": "3.0.7",
  2192. "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
  2193. "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
  2194. "license": "ISC",
  2195. "optional": true
  2196. },
  2197. "node_modules/simple-concat": {
  2198. "version": "1.0.1",
  2199. "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
  2200. "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
  2201. "funding": [
  2202. {
  2203. "type": "github",
  2204. "url": "https://github.com/sponsors/feross"
  2205. },
  2206. {
  2207. "type": "patreon",
  2208. "url": "https://www.patreon.com/feross"
  2209. },
  2210. {
  2211. "type": "consulting",
  2212. "url": "https://feross.org/support"
  2213. }
  2214. ],
  2215. "license": "MIT"
  2216. },
  2217. "node_modules/simple-get": {
  2218. "version": "4.0.1",
  2219. "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
  2220. "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
  2221. "funding": [
  2222. {
  2223. "type": "github",
  2224. "url": "https://github.com/sponsors/feross"
  2225. },
  2226. {
  2227. "type": "patreon",
  2228. "url": "https://www.patreon.com/feross"
  2229. },
  2230. {
  2231. "type": "consulting",
  2232. "url": "https://feross.org/support"
  2233. }
  2234. ],
  2235. "license": "MIT",
  2236. "dependencies": {
  2237. "decompress-response": "^6.0.0",
  2238. "once": "^1.3.1",
  2239. "simple-concat": "^1.0.0"
  2240. }
  2241. },
  2242. "node_modules/smart-buffer": {
  2243. "version": "4.2.0",
  2244. "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
  2245. "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
  2246. "license": "MIT",
  2247. "optional": true,
  2248. "engines": {
  2249. "node": ">= 6.0.0",
  2250. "npm": ">= 3.0.0"
  2251. }
  2252. },
  2253. "node_modules/socks": {
  2254. "version": "2.8.3",
  2255. "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz",
  2256. "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==",
  2257. "license": "MIT",
  2258. "optional": true,
  2259. "dependencies": {
  2260. "ip-address": "^9.0.5",
  2261. "smart-buffer": "^4.2.0"
  2262. },
  2263. "engines": {
  2264. "node": ">= 10.0.0",
  2265. "npm": ">= 3.0.0"
  2266. }
  2267. },
  2268. "node_modules/socks-proxy-agent": {
  2269. "version": "6.2.1",
  2270. "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz",
  2271. "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==",
  2272. "license": "MIT",
  2273. "optional": true,
  2274. "dependencies": {
  2275. "agent-base": "^6.0.2",
  2276. "debug": "^4.3.3",
  2277. "socks": "^2.6.2"
  2278. },
  2279. "engines": {
  2280. "node": ">= 10"
  2281. }
  2282. },
  2283. "node_modules/sprintf-js": {
  2284. "version": "1.1.3",
  2285. "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
  2286. "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==",
  2287. "license": "BSD-3-Clause",
  2288. "optional": true
  2289. },
  2290. "node_modules/sqlite3": {
  2291. "version": "5.1.7",
  2292. "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.7.tgz",
  2293. "integrity": "sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==",
  2294. "hasInstallScript": true,
  2295. "license": "BSD-3-Clause",
  2296. "dependencies": {
  2297. "bindings": "^1.5.0",
  2298. "node-addon-api": "^7.0.0",
  2299. "prebuild-install": "^7.1.1",
  2300. "tar": "^6.1.11"
  2301. },
  2302. "optionalDependencies": {
  2303. "node-gyp": "8.x"
  2304. },
  2305. "peerDependencies": {
  2306. "node-gyp": "8.x"
  2307. },
  2308. "peerDependenciesMeta": {
  2309. "node-gyp": {
  2310. "optional": true
  2311. }
  2312. }
  2313. },
  2314. "node_modules/sqlstring": {
  2315. "version": "2.3.1",
  2316. "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz",
  2317. "integrity": "sha512-ooAzh/7dxIG5+uDik1z/Rd1vli0+38izZhGzSa34FwR7IbelPWCCKSNIl8jlL/F7ERvy8CB2jNeM1E9i9mXMAQ==",
  2318. "license": "MIT",
  2319. "engines": {
  2320. "node": ">= 0.6"
  2321. }
  2322. },
  2323. "node_modules/ssri": {
  2324. "version": "8.0.1",
  2325. "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
  2326. "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
  2327. "license": "ISC",
  2328. "optional": true,
  2329. "dependencies": {
  2330. "minipass": "^3.1.1"
  2331. },
  2332. "engines": {
  2333. "node": ">= 8"
  2334. }
  2335. },
  2336. "node_modules/statuses": {
  2337. "version": "2.0.1",
  2338. "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
  2339. "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
  2340. "license": "MIT",
  2341. "engines": {
  2342. "node": ">= 0.8"
  2343. }
  2344. },
  2345. "node_modules/string_decoder": {
  2346. "version": "1.3.0",
  2347. "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
  2348. "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
  2349. "license": "MIT",
  2350. "dependencies": {
  2351. "safe-buffer": "~5.2.0"
  2352. }
  2353. },
  2354. "node_modules/string-width": {
  2355. "version": "4.2.3",
  2356. "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
  2357. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  2358. "license": "MIT",
  2359. "optional": true,
  2360. "dependencies": {
  2361. "emoji-regex": "^8.0.0",
  2362. "is-fullwidth-code-point": "^3.0.0",
  2363. "strip-ansi": "^6.0.1"
  2364. },
  2365. "engines": {
  2366. "node": ">=8"
  2367. }
  2368. },
  2369. "node_modules/strip-ansi": {
  2370. "version": "6.0.1",
  2371. "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2372. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2373. "license": "MIT",
  2374. "optional": true,
  2375. "dependencies": {
  2376. "ansi-regex": "^5.0.1"
  2377. },
  2378. "engines": {
  2379. "node": ">=8"
  2380. }
  2381. },
  2382. "node_modules/strip-json-comments": {
  2383. "version": "2.0.1",
  2384. "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
  2385. "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
  2386. "license": "MIT",
  2387. "engines": {
  2388. "node": ">=0.10.0"
  2389. }
  2390. },
  2391. "node_modules/tar": {
  2392. "version": "6.2.1",
  2393. "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
  2394. "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
  2395. "license": "ISC",
  2396. "dependencies": {
  2397. "chownr": "^2.0.0",
  2398. "fs-minipass": "^2.0.0",
  2399. "minipass": "^5.0.0",
  2400. "minizlib": "^2.1.1",
  2401. "mkdirp": "^1.0.3",
  2402. "yallist": "^4.0.0"
  2403. },
  2404. "engines": {
  2405. "node": ">=10"
  2406. }
  2407. },
  2408. "node_modules/tar-fs": {
  2409. "version": "2.1.1",
  2410. "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
  2411. "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
  2412. "license": "MIT",
  2413. "dependencies": {
  2414. "chownr": "^1.1.1",
  2415. "mkdirp-classic": "^0.5.2",
  2416. "pump": "^3.0.0",
  2417. "tar-stream": "^2.1.4"
  2418. }
  2419. },
  2420. "node_modules/tar-fs/node_modules/chownr": {
  2421. "version": "1.1.4",
  2422. "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
  2423. "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
  2424. "license": "ISC"
  2425. },
  2426. "node_modules/tar-stream": {
  2427. "version": "2.2.0",
  2428. "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
  2429. "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
  2430. "license": "MIT",
  2431. "dependencies": {
  2432. "bl": "^4.0.3",
  2433. "end-of-stream": "^1.4.1",
  2434. "fs-constants": "^1.0.0",
  2435. "inherits": "^2.0.3",
  2436. "readable-stream": "^3.1.1"
  2437. },
  2438. "engines": {
  2439. "node": ">=6"
  2440. }
  2441. },
  2442. "node_modules/tar/node_modules/minipass": {
  2443. "version": "5.0.0",
  2444. "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
  2445. "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
  2446. "license": "ISC",
  2447. "engines": {
  2448. "node": ">=8"
  2449. }
  2450. },
  2451. "node_modules/toidentifier": {
  2452. "version": "1.0.1",
  2453. "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
  2454. "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
  2455. "license": "MIT",
  2456. "engines": {
  2457. "node": ">=0.6"
  2458. }
  2459. },
  2460. "node_modules/tunnel-agent": {
  2461. "version": "0.6.0",
  2462. "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
  2463. "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
  2464. "license": "Apache-2.0",
  2465. "dependencies": {
  2466. "safe-buffer": "^5.0.1"
  2467. },
  2468. "engines": {
  2469. "node": "*"
  2470. }
  2471. },
  2472. "node_modules/type-is": {
  2473. "version": "1.6.18",
  2474. "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
  2475. "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
  2476. "license": "MIT",
  2477. "dependencies": {
  2478. "media-typer": "0.3.0",
  2479. "mime-types": "~2.1.24"
  2480. },
  2481. "engines": {
  2482. "node": ">= 0.6"
  2483. }
  2484. },
  2485. "node_modules/unique-filename": {
  2486. "version": "1.1.1",
  2487. "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
  2488. "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
  2489. "license": "ISC",
  2490. "optional": true,
  2491. "dependencies": {
  2492. "unique-slug": "^2.0.0"
  2493. }
  2494. },
  2495. "node_modules/unique-slug": {
  2496. "version": "2.0.2",
  2497. "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
  2498. "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
  2499. "license": "ISC",
  2500. "optional": true,
  2501. "dependencies": {
  2502. "imurmurhash": "^0.1.4"
  2503. }
  2504. },
  2505. "node_modules/unpipe": {
  2506. "version": "1.0.0",
  2507. "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
  2508. "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
  2509. "license": "MIT",
  2510. "engines": {
  2511. "node": ">= 0.8"
  2512. }
  2513. },
  2514. "node_modules/util-deprecate": {
  2515. "version": "1.0.2",
  2516. "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
  2517. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  2518. "license": "MIT"
  2519. },
  2520. "node_modules/utils-merge": {
  2521. "version": "1.0.1",
  2522. "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
  2523. "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
  2524. "license": "MIT",
  2525. "engines": {
  2526. "node": ">= 0.4.0"
  2527. }
  2528. },
  2529. "node_modules/vary": {
  2530. "version": "1.1.2",
  2531. "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
  2532. "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
  2533. "license": "MIT",
  2534. "engines": {
  2535. "node": ">= 0.8"
  2536. }
  2537. },
  2538. "node_modules/which": {
  2539. "version": "2.0.2",
  2540. "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
  2541. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  2542. "license": "ISC",
  2543. "optional": true,
  2544. "dependencies": {
  2545. "isexe": "^2.0.0"
  2546. },
  2547. "bin": {
  2548. "node-which": "bin/node-which"
  2549. },
  2550. "engines": {
  2551. "node": ">= 8"
  2552. }
  2553. },
  2554. "node_modules/wide-align": {
  2555. "version": "1.1.5",
  2556. "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
  2557. "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
  2558. "license": "ISC",
  2559. "optional": true,
  2560. "dependencies": {
  2561. "string-width": "^1.0.2 || 2 || 3 || 4"
  2562. }
  2563. },
  2564. "node_modules/wrappy": {
  2565. "version": "1.0.2",
  2566. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  2567. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  2568. "license": "ISC"
  2569. },
  2570. "node_modules/yallist": {
  2571. "version": "4.0.0",
  2572. "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
  2573. "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
  2574. "license": "ISC"
  2575. }
  2576. }
  2577. }