@stablyai/internal-playwright-core 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (405) hide show
  1. package/LICENSE +202 -0
  2. package/NOTICE +5 -0
  3. package/README.md +3 -0
  4. package/ThirdPartyNotices.txt +1134 -0
  5. package/bin/install_media_pack.ps1 +5 -0
  6. package/bin/install_webkit_wsl.ps1 +35 -0
  7. package/bin/reinstall_chrome_beta_linux.sh +42 -0
  8. package/bin/reinstall_chrome_beta_mac.sh +13 -0
  9. package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  10. package/bin/reinstall_chrome_stable_linux.sh +42 -0
  11. package/bin/reinstall_chrome_stable_mac.sh +12 -0
  12. package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  13. package/bin/reinstall_msedge_beta_linux.sh +48 -0
  14. package/bin/reinstall_msedge_beta_mac.sh +11 -0
  15. package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  16. package/bin/reinstall_msedge_dev_linux.sh +48 -0
  17. package/bin/reinstall_msedge_dev_mac.sh +11 -0
  18. package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  19. package/bin/reinstall_msedge_stable_linux.sh +48 -0
  20. package/bin/reinstall_msedge_stable_mac.sh +11 -0
  21. package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  22. package/browsers.json +80 -0
  23. package/cli.js +18 -0
  24. package/index.d.ts +17 -0
  25. package/index.js +32 -0
  26. package/index.mjs +28 -0
  27. package/lib/androidServerImpl.js +65 -0
  28. package/lib/browserServerImpl.js +120 -0
  29. package/lib/cli/cli.js +58 -0
  30. package/lib/cli/driver.js +97 -0
  31. package/lib/cli/program.js +634 -0
  32. package/lib/cli/programWithTestStub.js +74 -0
  33. package/lib/client/accessibility.js +49 -0
  34. package/lib/client/android.js +361 -0
  35. package/lib/client/api.js +137 -0
  36. package/lib/client/artifact.js +79 -0
  37. package/lib/client/browser.js +163 -0
  38. package/lib/client/browserContext.js +529 -0
  39. package/lib/client/browserType.js +184 -0
  40. package/lib/client/cdpSession.js +51 -0
  41. package/lib/client/channelOwner.js +194 -0
  42. package/lib/client/clientHelper.js +64 -0
  43. package/lib/client/clientInstrumentation.js +55 -0
  44. package/lib/client/clientStackTrace.js +69 -0
  45. package/lib/client/clock.js +68 -0
  46. package/lib/client/connection.js +314 -0
  47. package/lib/client/consoleMessage.js +54 -0
  48. package/lib/client/coverage.js +44 -0
  49. package/lib/client/dialog.js +56 -0
  50. package/lib/client/download.js +62 -0
  51. package/lib/client/electron.js +138 -0
  52. package/lib/client/elementHandle.js +281 -0
  53. package/lib/client/errors.js +77 -0
  54. package/lib/client/eventEmitter.js +314 -0
  55. package/lib/client/events.js +99 -0
  56. package/lib/client/fetch.js +369 -0
  57. package/lib/client/fileChooser.js +46 -0
  58. package/lib/client/fileUtils.js +34 -0
  59. package/lib/client/frame.js +408 -0
  60. package/lib/client/harRouter.js +87 -0
  61. package/lib/client/input.js +84 -0
  62. package/lib/client/jsHandle.js +109 -0
  63. package/lib/client/jsonPipe.js +39 -0
  64. package/lib/client/localUtils.js +60 -0
  65. package/lib/client/locator.js +368 -0
  66. package/lib/client/network.js +747 -0
  67. package/lib/client/page.js +721 -0
  68. package/lib/client/platform.js +74 -0
  69. package/lib/client/playwright.js +71 -0
  70. package/lib/client/selectors.js +55 -0
  71. package/lib/client/stream.js +39 -0
  72. package/lib/client/timeoutSettings.js +79 -0
  73. package/lib/client/tracing.js +117 -0
  74. package/lib/client/types.js +28 -0
  75. package/lib/client/video.js +59 -0
  76. package/lib/client/waiter.js +142 -0
  77. package/lib/client/webError.js +39 -0
  78. package/lib/client/webSocket.js +93 -0
  79. package/lib/client/worker.js +63 -0
  80. package/lib/client/writableStream.js +39 -0
  81. package/lib/common/debugLogger.js +90 -0
  82. package/lib/common/socksProxy.js +569 -0
  83. package/lib/common/timeoutSettings.js +73 -0
  84. package/lib/common/types.js +5 -0
  85. package/lib/generated/bindingsControllerSource.js +28 -0
  86. package/lib/generated/clockSource.js +28 -0
  87. package/lib/generated/consoleApiSource.js +28 -0
  88. package/lib/generated/injectedScriptSource.js +28 -0
  89. package/lib/generated/pollingRecorderSource.js +28 -0
  90. package/lib/generated/recorderSource.js +28 -0
  91. package/lib/generated/storageScriptSource.js +28 -0
  92. package/lib/generated/utilityScriptSource.js +28 -0
  93. package/lib/generated/webSocketMockSource.js +336 -0
  94. package/lib/image_tools/colorUtils.js +98 -0
  95. package/lib/image_tools/compare.js +108 -0
  96. package/lib/image_tools/imageChannel.js +70 -0
  97. package/lib/image_tools/stats.js +102 -0
  98. package/lib/inProcessFactory.js +60 -0
  99. package/lib/index.js +19 -0
  100. package/lib/inprocess.js +3 -0
  101. package/lib/outofprocess.js +76 -0
  102. package/lib/protocol/debug.js +27 -0
  103. package/lib/protocol/serializers.js +192 -0
  104. package/lib/protocol/transport.js +82 -0
  105. package/lib/protocol/validator.js +2919 -0
  106. package/lib/protocol/validatorPrimitives.js +193 -0
  107. package/lib/remote/playwrightConnection.js +129 -0
  108. package/lib/remote/playwrightServer.js +335 -0
  109. package/lib/server/accessibility.js +69 -0
  110. package/lib/server/android/android.js +465 -0
  111. package/lib/server/android/backendAdb.js +177 -0
  112. package/lib/server/artifact.js +127 -0
  113. package/lib/server/bidi/bidiBrowser.js +490 -0
  114. package/lib/server/bidi/bidiChromium.js +153 -0
  115. package/lib/server/bidi/bidiConnection.js +212 -0
  116. package/lib/server/bidi/bidiExecutionContext.js +221 -0
  117. package/lib/server/bidi/bidiFirefox.js +130 -0
  118. package/lib/server/bidi/bidiInput.js +146 -0
  119. package/lib/server/bidi/bidiNetworkManager.js +383 -0
  120. package/lib/server/bidi/bidiOverCdp.js +102 -0
  121. package/lib/server/bidi/bidiPage.js +552 -0
  122. package/lib/server/bidi/bidiPdf.js +106 -0
  123. package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
  124. package/lib/server/bidi/third_party/bidiDeserializer.js +98 -0
  125. package/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
  126. package/lib/server/bidi/third_party/bidiProtocol.js +24 -0
  127. package/lib/server/bidi/third_party/bidiProtocolCore.js +179 -0
  128. package/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
  129. package/lib/server/bidi/third_party/bidiSerializer.js +148 -0
  130. package/lib/server/bidi/third_party/firefoxPrefs.js +259 -0
  131. package/lib/server/browser.js +149 -0
  132. package/lib/server/browserContext.js +695 -0
  133. package/lib/server/browserType.js +328 -0
  134. package/lib/server/callLog.js +82 -0
  135. package/lib/server/chromium/appIcon.png +0 -0
  136. package/lib/server/chromium/chromium.js +402 -0
  137. package/lib/server/chromium/chromiumSwitches.js +95 -0
  138. package/lib/server/chromium/crAccessibility.js +263 -0
  139. package/lib/server/chromium/crBrowser.js +501 -0
  140. package/lib/server/chromium/crConnection.js +202 -0
  141. package/lib/server/chromium/crCoverage.js +235 -0
  142. package/lib/server/chromium/crDevTools.js +113 -0
  143. package/lib/server/chromium/crDragDrop.js +131 -0
  144. package/lib/server/chromium/crExecutionContext.js +146 -0
  145. package/lib/server/chromium/crInput.js +187 -0
  146. package/lib/server/chromium/crNetworkManager.js +666 -0
  147. package/lib/server/chromium/crPage.js +1069 -0
  148. package/lib/server/chromium/crPdf.js +121 -0
  149. package/lib/server/chromium/crProtocolHelper.js +145 -0
  150. package/lib/server/chromium/crServiceWorker.js +123 -0
  151. package/lib/server/chromium/defaultFontFamilies.js +162 -0
  152. package/lib/server/chromium/protocol.d.js +16 -0
  153. package/lib/server/chromium/videoRecorder.js +113 -0
  154. package/lib/server/clock.js +149 -0
  155. package/lib/server/codegen/csharp.js +327 -0
  156. package/lib/server/codegen/java.js +274 -0
  157. package/lib/server/codegen/javascript.js +270 -0
  158. package/lib/server/codegen/jsonl.js +52 -0
  159. package/lib/server/codegen/language.js +132 -0
  160. package/lib/server/codegen/languages.js +68 -0
  161. package/lib/server/codegen/python.js +279 -0
  162. package/lib/server/codegen/types.js +16 -0
  163. package/lib/server/console.js +53 -0
  164. package/lib/server/cookieStore.js +206 -0
  165. package/lib/server/debugController.js +191 -0
  166. package/lib/server/debugger.js +119 -0
  167. package/lib/server/deviceDescriptors.js +39 -0
  168. package/lib/server/deviceDescriptorsSource.json +1779 -0
  169. package/lib/server/dialog.js +116 -0
  170. package/lib/server/dispatchers/androidDispatcher.js +325 -0
  171. package/lib/server/dispatchers/artifactDispatcher.js +118 -0
  172. package/lib/server/dispatchers/browserContextDispatcher.js +364 -0
  173. package/lib/server/dispatchers/browserDispatcher.js +118 -0
  174. package/lib/server/dispatchers/browserTypeDispatcher.js +64 -0
  175. package/lib/server/dispatchers/cdpSessionDispatcher.js +44 -0
  176. package/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
  177. package/lib/server/dispatchers/dialogDispatcher.js +47 -0
  178. package/lib/server/dispatchers/dispatcher.js +371 -0
  179. package/lib/server/dispatchers/electronDispatcher.js +89 -0
  180. package/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
  181. package/lib/server/dispatchers/frameDispatcher.js +227 -0
  182. package/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
  183. package/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
  184. package/lib/server/dispatchers/localUtilsDispatcher.js +149 -0
  185. package/lib/server/dispatchers/networkDispatchers.js +213 -0
  186. package/lib/server/dispatchers/pageDispatcher.js +401 -0
  187. package/lib/server/dispatchers/playwrightDispatcher.js +108 -0
  188. package/lib/server/dispatchers/selectorsDispatcher.js +36 -0
  189. package/lib/server/dispatchers/streamDispatcher.js +67 -0
  190. package/lib/server/dispatchers/tracingDispatcher.js +68 -0
  191. package/lib/server/dispatchers/webSocketRouteDispatcher.js +165 -0
  192. package/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
  193. package/lib/server/dom.js +806 -0
  194. package/lib/server/download.js +70 -0
  195. package/lib/server/electron/electron.js +270 -0
  196. package/lib/server/electron/loader.js +29 -0
  197. package/lib/server/errors.js +69 -0
  198. package/lib/server/fetch.js +621 -0
  199. package/lib/server/fileChooser.js +43 -0
  200. package/lib/server/fileUploadUtils.js +84 -0
  201. package/lib/server/firefox/ffAccessibility.js +238 -0
  202. package/lib/server/firefox/ffBrowser.js +428 -0
  203. package/lib/server/firefox/ffConnection.js +147 -0
  204. package/lib/server/firefox/ffExecutionContext.js +150 -0
  205. package/lib/server/firefox/ffInput.js +159 -0
  206. package/lib/server/firefox/ffNetworkManager.js +256 -0
  207. package/lib/server/firefox/ffPage.js +503 -0
  208. package/lib/server/firefox/firefox.js +116 -0
  209. package/lib/server/firefox/protocol.d.js +16 -0
  210. package/lib/server/formData.js +147 -0
  211. package/lib/server/frameSelectors.js +156 -0
  212. package/lib/server/frames.js +1502 -0
  213. package/lib/server/har/harRecorder.js +147 -0
  214. package/lib/server/har/harTracer.js +607 -0
  215. package/lib/server/harBackend.js +157 -0
  216. package/lib/server/helper.js +96 -0
  217. package/lib/server/index.js +58 -0
  218. package/lib/server/input.js +273 -0
  219. package/lib/server/instrumentation.js +69 -0
  220. package/lib/server/isomorphic/utilityScriptSerializers.js +212 -0
  221. package/lib/server/javascript.js +291 -0
  222. package/lib/server/launchApp.js +128 -0
  223. package/lib/server/localUtils.js +218 -0
  224. package/lib/server/macEditingCommands.js +143 -0
  225. package/lib/server/network.js +629 -0
  226. package/lib/server/page.js +871 -0
  227. package/lib/server/pipeTransport.js +89 -0
  228. package/lib/server/playwright.js +69 -0
  229. package/lib/server/progress.js +112 -0
  230. package/lib/server/protocolError.js +52 -0
  231. package/lib/server/recorder/chat.js +161 -0
  232. package/lib/server/recorder/codeGenerator.js +153 -0
  233. package/lib/server/recorder/csharp.js +310 -0
  234. package/lib/server/recorder/java.js +248 -0
  235. package/lib/server/recorder/javascript.js +229 -0
  236. package/lib/server/recorder/jsonl.js +47 -0
  237. package/lib/server/recorder/language.js +44 -0
  238. package/lib/server/recorder/python.js +276 -0
  239. package/lib/server/recorder/recorderActions.js +5 -0
  240. package/lib/server/recorder/recorderApp.js +387 -0
  241. package/lib/server/recorder/recorderRunner.js +138 -0
  242. package/lib/server/recorder/recorderSignalProcessor.js +83 -0
  243. package/lib/server/recorder/recorderUtils.js +157 -0
  244. package/lib/server/recorder/throttledFile.js +57 -0
  245. package/lib/server/recorder/utils.js +45 -0
  246. package/lib/server/recorder.js +499 -0
  247. package/lib/server/registry/browserFetcher.js +175 -0
  248. package/lib/server/registry/dependencies.js +371 -0
  249. package/lib/server/registry/index.js +1331 -0
  250. package/lib/server/registry/nativeDeps.js +1280 -0
  251. package/lib/server/registry/oopDownloadBrowserMain.js +120 -0
  252. package/lib/server/screenshotter.js +333 -0
  253. package/lib/server/selectors.js +112 -0
  254. package/lib/server/socksClientCertificatesInterceptor.js +383 -0
  255. package/lib/server/socksInterceptor.js +95 -0
  256. package/lib/server/stably/ai-tools/http-request.js +70 -0
  257. package/lib/server/stably/ai-tools/stablyApiCaller.js +137 -0
  258. package/lib/server/stably/autohealing/elementHandleFromCoordinates.js +64 -0
  259. package/lib/server/stably/autohealing/healingService.js +228 -0
  260. package/lib/server/stably/autohealing/screenshotFrame.js +41 -0
  261. package/lib/server/stably/constants.js +31 -0
  262. package/lib/server/trace/recorder/snapshotter.js +147 -0
  263. package/lib/server/trace/recorder/snapshotterInjected.js +541 -0
  264. package/lib/server/trace/recorder/tracing.js +602 -0
  265. package/lib/server/trace/test/inMemorySnapshotter.js +87 -0
  266. package/lib/server/trace/viewer/traceViewer.js +240 -0
  267. package/lib/server/transport.js +181 -0
  268. package/lib/server/types.js +28 -0
  269. package/lib/server/usKeyboardLayout.js +145 -0
  270. package/lib/server/utils/ascii.js +44 -0
  271. package/lib/server/utils/comparators.js +161 -0
  272. package/lib/server/utils/crypto.js +216 -0
  273. package/lib/server/utils/debug.js +42 -0
  274. package/lib/server/utils/debugLogger.js +122 -0
  275. package/lib/server/utils/env.js +73 -0
  276. package/lib/server/utils/eventsHelper.js +39 -0
  277. package/lib/server/utils/expectUtils.js +38 -0
  278. package/lib/server/utils/fileUtils.js +191 -0
  279. package/lib/server/utils/happyEyeballs.js +207 -0
  280. package/lib/server/utils/hostPlatform.js +111 -0
  281. package/lib/server/utils/httpServer.js +218 -0
  282. package/lib/server/utils/image_tools/colorUtils.js +89 -0
  283. package/lib/server/utils/image_tools/compare.js +109 -0
  284. package/lib/server/utils/image_tools/imageChannel.js +78 -0
  285. package/lib/server/utils/image_tools/stats.js +102 -0
  286. package/lib/server/utils/linuxUtils.js +71 -0
  287. package/lib/server/utils/network.js +233 -0
  288. package/lib/server/utils/nodePlatform.js +148 -0
  289. package/lib/server/utils/pipeTransport.js +84 -0
  290. package/lib/server/utils/processLauncher.js +241 -0
  291. package/lib/server/utils/profiler.js +65 -0
  292. package/lib/server/utils/socksProxy.js +511 -0
  293. package/lib/server/utils/spawnAsync.js +41 -0
  294. package/lib/server/utils/task.js +51 -0
  295. package/lib/server/utils/userAgent.js +98 -0
  296. package/lib/server/utils/wsServer.js +121 -0
  297. package/lib/server/utils/zipFile.js +74 -0
  298. package/lib/server/utils/zones.js +57 -0
  299. package/lib/server/webkit/protocol.d.js +16 -0
  300. package/lib/server/webkit/webkit.js +119 -0
  301. package/lib/server/webkit/wkAccessibility.js +237 -0
  302. package/lib/server/webkit/wkBrowser.js +339 -0
  303. package/lib/server/webkit/wkConnection.js +149 -0
  304. package/lib/server/webkit/wkExecutionContext.js +154 -0
  305. package/lib/server/webkit/wkInput.js +181 -0
  306. package/lib/server/webkit/wkInterceptableRequest.js +169 -0
  307. package/lib/server/webkit/wkPage.js +1134 -0
  308. package/lib/server/webkit/wkProvisionalPage.js +83 -0
  309. package/lib/server/webkit/wkWorkers.js +104 -0
  310. package/lib/server/webkit/wsl/webkit-wsl-transport-client.js +74 -0
  311. package/lib/server/webkit/wsl/webkit-wsl-transport-server.js +113 -0
  312. package/lib/third_party/diff_match_patch.js +2222 -0
  313. package/lib/third_party/pixelmatch.js +255 -0
  314. package/lib/utils/ascii.js +31 -0
  315. package/lib/utils/comparators.js +171 -0
  316. package/lib/utils/crypto.js +33 -0
  317. package/lib/utils/debug.js +46 -0
  318. package/lib/utils/debugLogger.js +89 -0
  319. package/lib/utils/env.js +49 -0
  320. package/lib/utils/eventsHelper.js +38 -0
  321. package/lib/utils/fileUtils.js +205 -0
  322. package/lib/utils/glob.js +83 -0
  323. package/lib/utils/happy-eyeballs.js +160 -0
  324. package/lib/utils/headers.js +52 -0
  325. package/lib/utils/hostPlatform.js +128 -0
  326. package/lib/utils/httpServer.js +236 -0
  327. package/lib/utils/index.js +346 -0
  328. package/lib/utils/isomorphic/ariaSnapshot.js +392 -0
  329. package/lib/utils/isomorphic/assert.js +31 -0
  330. package/lib/utils/isomorphic/colors.js +72 -0
  331. package/lib/utils/isomorphic/cssParser.js +245 -0
  332. package/lib/utils/isomorphic/cssTokenizer.js +1051 -0
  333. package/lib/utils/isomorphic/headers.js +53 -0
  334. package/lib/utils/isomorphic/locatorGenerators.js +673 -0
  335. package/lib/utils/isomorphic/locatorParser.js +176 -0
  336. package/lib/utils/isomorphic/locatorUtils.js +81 -0
  337. package/lib/utils/isomorphic/manualPromise.js +114 -0
  338. package/lib/utils/isomorphic/mimeType.js +459 -0
  339. package/lib/utils/isomorphic/multimap.js +80 -0
  340. package/lib/utils/isomorphic/protocolFormatter.js +78 -0
  341. package/lib/utils/isomorphic/protocolMetainfo.js +321 -0
  342. package/lib/utils/isomorphic/rtti.js +43 -0
  343. package/lib/utils/isomorphic/selectorParser.js +386 -0
  344. package/lib/utils/isomorphic/semaphore.js +54 -0
  345. package/lib/utils/isomorphic/stackTrace.js +158 -0
  346. package/lib/utils/isomorphic/stringUtils.js +155 -0
  347. package/lib/utils/isomorphic/time.js +49 -0
  348. package/lib/utils/isomorphic/timeoutRunner.js +66 -0
  349. package/lib/utils/isomorphic/traceUtils.js +58 -0
  350. package/lib/utils/isomorphic/types.js +16 -0
  351. package/lib/utils/isomorphic/urlMatch.js +176 -0
  352. package/lib/utils/isomorphic/utilityScriptSerializers.js +251 -0
  353. package/lib/utils/linuxUtils.js +78 -0
  354. package/lib/utils/manualPromise.js +109 -0
  355. package/lib/utils/mimeType.js +29 -0
  356. package/lib/utils/multimap.js +75 -0
  357. package/lib/utils/network.js +188 -0
  358. package/lib/utils/processLauncher.js +248 -0
  359. package/lib/utils/profiler.js +53 -0
  360. package/lib/utils/rtti.js +44 -0
  361. package/lib/utils/semaphore.js +51 -0
  362. package/lib/utils/spawnAsync.js +45 -0
  363. package/lib/utils/stackTrace.js +121 -0
  364. package/lib/utils/task.js +58 -0
  365. package/lib/utils/time.js +37 -0
  366. package/lib/utils/timeoutRunner.js +66 -0
  367. package/lib/utils/traceUtils.js +44 -0
  368. package/lib/utils/userAgent.js +105 -0
  369. package/lib/utils/wsServer.js +127 -0
  370. package/lib/utils/zipFile.js +75 -0
  371. package/lib/utils/zones.js +62 -0
  372. package/lib/utils.js +107 -0
  373. package/lib/utilsBundle.js +109 -0
  374. package/lib/utilsBundleImpl/index.js +218 -0
  375. package/lib/utilsBundleImpl/xdg-open +1066 -0
  376. package/lib/vite/htmlReport/index.html +84 -0
  377. package/lib/vite/recorder/assets/codeMirrorModule-C3UTv-Ge.css +1 -0
  378. package/lib/vite/recorder/assets/codeMirrorModule-RJCXzfmE.js +24 -0
  379. package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  380. package/lib/vite/recorder/assets/index-Ri0uHF7I.css +1 -0
  381. package/lib/vite/recorder/assets/index-Y-X2TGJv.js +193 -0
  382. package/lib/vite/recorder/index.html +29 -0
  383. package/lib/vite/recorder/playwright-logo.svg +9 -0
  384. package/lib/vite/traceViewer/assets/codeMirrorModule-Bhnc5o2x.js +24 -0
  385. package/lib/vite/traceViewer/assets/defaultSettingsView-ClwvkA2N.js +265 -0
  386. package/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  387. package/lib/vite/traceViewer/codeMirrorModule.C3UTv-Ge.css +1 -0
  388. package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  389. package/lib/vite/traceViewer/defaultSettingsView.TQ8_7ybu.css +1 -0
  390. package/lib/vite/traceViewer/index.DFO9NNF5.js +2 -0
  391. package/lib/vite/traceViewer/index.I8N9v4jT.css +1 -0
  392. package/lib/vite/traceViewer/index.html +43 -0
  393. package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  394. package/lib/vite/traceViewer/snapshot.html +21 -0
  395. package/lib/vite/traceViewer/sw.bundle.js +3 -0
  396. package/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  397. package/lib/vite/traceViewer/uiMode.Shu3QS-1.js +5 -0
  398. package/lib/vite/traceViewer/uiMode.html +17 -0
  399. package/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  400. package/lib/zipBundle.js +34 -0
  401. package/lib/zipBundleImpl.js +5 -0
  402. package/package.json +43 -0
  403. package/types/protocol.d.ts +23130 -0
  404. package/types/structs.d.ts +45 -0
  405. package/types/types.d.ts +22857 -0
@@ -0,0 +1,1134 @@
1
+ microsoft/playwright-core
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
6
+
7
+ - agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
8
+ - balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
9
+ - brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
10
+ - buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
11
+ - codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
12
+ - colors@1.4.0 (https://github.com/Marak/colors.js)
13
+ - commander@13.1.0 (https://github.com/tj/commander.js)
14
+ - concat-map@0.0.1 (https://github.com/substack/node-concat-map)
15
+ - debug@4.3.4 (https://github.com/debug-js/debug)
16
+ - debug@4.4.0 (https://github.com/debug-js/debug)
17
+ - define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
18
+ - diff@7.0.0 (https://github.com/kpdecker/jsdiff)
19
+ - dotenv@16.4.5 (https://github.com/motdotla/dotenv)
20
+ - end-of-stream@1.4.4 (https://github.com/mafintosh/end-of-stream)
21
+ - get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
22
+ - graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
23
+ - https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
24
+ - ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
25
+ - is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
26
+ - is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
27
+ - jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
28
+ - jsbn@1.1.0 (https://github.com/andyperlitch/jsbn)
29
+ - mime@3.0.0 (https://github.com/broofa/mime)
30
+ - minimatch@3.1.2 (https://github.com/isaacs/minimatch)
31
+ - ms@2.1.2 (https://github.com/zeit/ms)
32
+ - ms@2.1.3 (https://github.com/vercel/ms)
33
+ - once@1.4.0 (https://github.com/isaacs/once)
34
+ - open@8.4.0 (https://github.com/sindresorhus/open)
35
+ - pend@1.2.0 (https://github.com/andrewrk/node-pend)
36
+ - pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
37
+ - progress@2.0.3 (https://github.com/visionmedia/node-progress)
38
+ - proxy-from-env@1.1.0 (https://github.com/Rob--W/proxy-from-env)
39
+ - pump@3.0.2 (https://github.com/mafintosh/pump)
40
+ - retry@0.12.0 (https://github.com/tim-kos/node-retry)
41
+ - signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
42
+ - smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
43
+ - socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
44
+ - socks@2.8.3 (https://github.com/JoshGlazebrook/socks)
45
+ - sprintf-js@1.1.3 (https://github.com/alexei/sprintf.js)
46
+ - wrappy@1.0.2 (https://github.com/npm/wrappy)
47
+ - ws@8.17.1 (https://github.com/websockets/ws)
48
+ - yaml@2.6.0 (https://github.com/eemeli/yaml)
49
+ - yauzl@3.2.0 (https://github.com/thejoshwolfe/yauzl)
50
+ - yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
51
+
52
+ %% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
53
+ =========================================
54
+ (The MIT License)
55
+
56
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
57
+
58
+ Permission is hereby granted, free of charge, to any person obtaining
59
+ a copy of this software and associated documentation files (the
60
+ 'Software'), to deal in the Software without restriction, including
61
+ without limitation the rights to use, copy, modify, merge, publish,
62
+ distribute, sublicense, and/or sell copies of the Software, and to
63
+ permit persons to whom the Software is furnished to do so, subject to
64
+ the following conditions:
65
+
66
+ The above copyright notice and this permission notice shall be
67
+ included in all copies or substantial portions of the Software.
68
+
69
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
70
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
71
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
72
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
73
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
74
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
75
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
76
+ =========================================
77
+ END OF agent-base@7.1.4 AND INFORMATION
78
+
79
+ %% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
80
+ =========================================
81
+ (MIT)
82
+
83
+ Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
84
+
85
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
86
+ this software and associated documentation files (the "Software"), to deal in
87
+ the Software without restriction, including without limitation the rights to
88
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
89
+ of the Software, and to permit persons to whom the Software is furnished to do
90
+ so, subject to the following conditions:
91
+
92
+ The above copyright notice and this permission notice shall be included in all
93
+ copies or substantial portions of the Software.
94
+
95
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
96
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
97
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
98
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
99
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
100
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
101
+ SOFTWARE.
102
+ =========================================
103
+ END OF balanced-match@1.0.2 AND INFORMATION
104
+
105
+ %% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
106
+ =========================================
107
+ MIT License
108
+
109
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
110
+
111
+ Permission is hereby granted, free of charge, to any person obtaining a copy
112
+ of this software and associated documentation files (the "Software"), to deal
113
+ in the Software without restriction, including without limitation the rights
114
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
115
+ copies of the Software, and to permit persons to whom the Software is
116
+ furnished to do so, subject to the following conditions:
117
+
118
+ The above copyright notice and this permission notice shall be included in all
119
+ copies or substantial portions of the Software.
120
+
121
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
122
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
123
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
124
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
125
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
126
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
127
+ SOFTWARE.
128
+ =========================================
129
+ END OF brace-expansion@1.1.12 AND INFORMATION
130
+
131
+ %% buffer-crc32@0.2.13 NOTICES AND INFORMATION BEGIN HERE
132
+ =========================================
133
+ The MIT License
134
+
135
+ Copyright (c) 2013 Brian J. Brennan
136
+
137
+ Permission is hereby granted, free of charge, to any person obtaining a copy
138
+ of this software and associated documentation files (the "Software"), to deal in
139
+ the Software without restriction, including without limitation the rights to use,
140
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
141
+ Software, and to permit persons to whom the Software is furnished to do so,
142
+ subject to the following conditions:
143
+
144
+ The above copyright notice and this permission notice shall be included in all
145
+ copies or substantial portions of the Software.
146
+
147
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
148
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
149
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
150
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
151
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
152
+ =========================================
153
+ END OF buffer-crc32@0.2.13 AND INFORMATION
154
+
155
+ %% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
156
+ =========================================
157
+ MIT License
158
+
159
+ Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
160
+
161
+ Permission is hereby granted, free of charge, to any person obtaining a copy
162
+ of this software and associated documentation files (the "Software"), to deal
163
+ in the Software without restriction, including without limitation the rights
164
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
165
+ copies of the Software, and to permit persons to whom the Software is
166
+ furnished to do so, subject to the following conditions:
167
+
168
+ The above copyright notice and this permission notice shall be included in
169
+ all copies or substantial portions of the Software.
170
+
171
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
172
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
173
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
174
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
175
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
176
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
177
+ THE SOFTWARE.
178
+ =========================================
179
+ END OF codemirror@5.65.18 AND INFORMATION
180
+
181
+ %% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
182
+ =========================================
183
+ MIT License
184
+
185
+ Original Library
186
+ - Copyright (c) Marak Squires
187
+
188
+ Additional Functionality
189
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
190
+
191
+ Permission is hereby granted, free of charge, to any person obtaining a copy
192
+ of this software and associated documentation files (the "Software"), to deal
193
+ in the Software without restriction, including without limitation the rights
194
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
195
+ copies of the Software, and to permit persons to whom the Software is
196
+ furnished to do so, subject to the following conditions:
197
+
198
+ The above copyright notice and this permission notice shall be included in
199
+ all copies or substantial portions of the Software.
200
+
201
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
202
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
203
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
204
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
205
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
206
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
207
+ THE SOFTWARE.
208
+ =========================================
209
+ END OF colors@1.4.0 AND INFORMATION
210
+
211
+ %% commander@13.1.0 NOTICES AND INFORMATION BEGIN HERE
212
+ =========================================
213
+ (The MIT License)
214
+
215
+ Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
216
+
217
+ Permission is hereby granted, free of charge, to any person obtaining
218
+ a copy of this software and associated documentation files (the
219
+ 'Software'), to deal in the Software without restriction, including
220
+ without limitation the rights to use, copy, modify, merge, publish,
221
+ distribute, sublicense, and/or sell copies of the Software, and to
222
+ permit persons to whom the Software is furnished to do so, subject to
223
+ the following conditions:
224
+
225
+ The above copyright notice and this permission notice shall be
226
+ included in all copies or substantial portions of the Software.
227
+
228
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
229
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
230
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
231
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
232
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
233
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
234
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
235
+ =========================================
236
+ END OF commander@13.1.0 AND INFORMATION
237
+
238
+ %% concat-map@0.0.1 NOTICES AND INFORMATION BEGIN HERE
239
+ =========================================
240
+ This software is released under the MIT license:
241
+
242
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
243
+ this software and associated documentation files (the "Software"), to deal in
244
+ the Software without restriction, including without limitation the rights to
245
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
246
+ the Software, and to permit persons to whom the Software is furnished to do so,
247
+ subject to the following conditions:
248
+
249
+ The above copyright notice and this permission notice shall be included in all
250
+ copies or substantial portions of the Software.
251
+
252
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
253
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
254
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
255
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
256
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
257
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
258
+ =========================================
259
+ END OF concat-map@0.0.1 AND INFORMATION
260
+
261
+ %% debug@4.3.4 NOTICES AND INFORMATION BEGIN HERE
262
+ =========================================
263
+ (The MIT License)
264
+
265
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
266
+ Copyright (c) 2018-2021 Josh Junon
267
+
268
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
269
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
270
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
271
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
272
+ subject to the following conditions:
273
+
274
+ The above copyright notice and this permission notice shall be included in all copies or substantial
275
+ portions of the Software.
276
+
277
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
278
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
279
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
280
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
281
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
282
+ =========================================
283
+ END OF debug@4.3.4 AND INFORMATION
284
+
285
+ %% debug@4.4.0 NOTICES AND INFORMATION BEGIN HERE
286
+ =========================================
287
+ (The MIT License)
288
+
289
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
290
+ Copyright (c) 2018-2021 Josh Junon
291
+
292
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
293
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
294
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
295
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
296
+ subject to the following conditions:
297
+
298
+ The above copyright notice and this permission notice shall be included in all copies or substantial
299
+ portions of the Software.
300
+
301
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
302
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
303
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
304
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
305
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
306
+ =========================================
307
+ END OF debug@4.4.0 AND INFORMATION
308
+
309
+ %% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
310
+ =========================================
311
+ MIT License
312
+
313
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
314
+
315
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
316
+
317
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
318
+
319
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
320
+ =========================================
321
+ END OF define-lazy-prop@2.0.0 AND INFORMATION
322
+
323
+ %% diff@7.0.0 NOTICES AND INFORMATION BEGIN HERE
324
+ =========================================
325
+ BSD 3-Clause License
326
+
327
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
328
+ All rights reserved.
329
+
330
+ Redistribution and use in source and binary forms, with or without
331
+ modification, are permitted provided that the following conditions are met:
332
+
333
+ 1. Redistributions of source code must retain the above copyright notice, this
334
+ list of conditions and the following disclaimer.
335
+
336
+ 2. Redistributions in binary form must reproduce the above copyright notice,
337
+ this list of conditions and the following disclaimer in the documentation
338
+ and/or other materials provided with the distribution.
339
+
340
+ 3. Neither the name of the copyright holder nor the names of its
341
+ contributors may be used to endorse or promote products derived from
342
+ this software without specific prior written permission.
343
+
344
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
345
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
346
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
347
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
348
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
349
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
350
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
351
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
352
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
353
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
354
+ =========================================
355
+ END OF diff@7.0.0 AND INFORMATION
356
+
357
+ %% dotenv@16.4.5 NOTICES AND INFORMATION BEGIN HERE
358
+ =========================================
359
+ Copyright (c) 2015, Scott Motte
360
+ All rights reserved.
361
+
362
+ Redistribution and use in source and binary forms, with or without
363
+ modification, are permitted provided that the following conditions are met:
364
+
365
+ * Redistributions of source code must retain the above copyright notice, this
366
+ list of conditions and the following disclaimer.
367
+
368
+ * Redistributions in binary form must reproduce the above copyright notice,
369
+ this list of conditions and the following disclaimer in the documentation
370
+ and/or other materials provided with the distribution.
371
+
372
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
373
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
374
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
375
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
376
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
377
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
378
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
379
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
380
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
381
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
382
+ =========================================
383
+ END OF dotenv@16.4.5 AND INFORMATION
384
+
385
+ %% end-of-stream@1.4.4 NOTICES AND INFORMATION BEGIN HERE
386
+ =========================================
387
+ The MIT License (MIT)
388
+
389
+ Copyright (c) 2014 Mathias Buus
390
+
391
+ Permission is hereby granted, free of charge, to any person obtaining a copy
392
+ of this software and associated documentation files (the "Software"), to deal
393
+ in the Software without restriction, including without limitation the rights
394
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
395
+ copies of the Software, and to permit persons to whom the Software is
396
+ furnished to do so, subject to the following conditions:
397
+
398
+ The above copyright notice and this permission notice shall be included in
399
+ all copies or substantial portions of the Software.
400
+
401
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
402
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
403
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
404
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
405
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
406
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
407
+ THE SOFTWARE.
408
+ =========================================
409
+ END OF end-of-stream@1.4.4 AND INFORMATION
410
+
411
+ %% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
412
+ =========================================
413
+ MIT License
414
+
415
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
416
+
417
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
418
+
419
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
420
+
421
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
422
+ =========================================
423
+ END OF get-stream@5.2.0 AND INFORMATION
424
+
425
+ %% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
426
+ =========================================
427
+ The ISC License
428
+
429
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
430
+
431
+ Permission to use, copy, modify, and/or distribute this software for any
432
+ purpose with or without fee is hereby granted, provided that the above
433
+ copyright notice and this permission notice appear in all copies.
434
+
435
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
436
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
437
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
438
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
439
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
440
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
441
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
442
+ =========================================
443
+ END OF graceful-fs@4.2.10 AND INFORMATION
444
+
445
+ %% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
446
+ =========================================
447
+ (The MIT License)
448
+
449
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
450
+
451
+ Permission is hereby granted, free of charge, to any person obtaining
452
+ a copy of this software and associated documentation files (the
453
+ 'Software'), to deal in the Software without restriction, including
454
+ without limitation the rights to use, copy, modify, merge, publish,
455
+ distribute, sublicense, and/or sell copies of the Software, and to
456
+ permit persons to whom the Software is furnished to do so, subject to
457
+ the following conditions:
458
+
459
+ The above copyright notice and this permission notice shall be
460
+ included in all copies or substantial portions of the Software.
461
+
462
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
463
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
464
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
465
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
466
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
467
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
468
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
469
+ =========================================
470
+ END OF https-proxy-agent@7.0.6 AND INFORMATION
471
+
472
+ %% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
473
+ =========================================
474
+ Copyright (C) 2011 by Beau Gunderson
475
+
476
+ Permission is hereby granted, free of charge, to any person obtaining a copy
477
+ of this software and associated documentation files (the "Software"), to deal
478
+ in the Software without restriction, including without limitation the rights
479
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
480
+ copies of the Software, and to permit persons to whom the Software is
481
+ furnished to do so, subject to the following conditions:
482
+
483
+ The above copyright notice and this permission notice shall be included in
484
+ all copies or substantial portions of the Software.
485
+
486
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
487
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
488
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
489
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
490
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
491
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
492
+ THE SOFTWARE.
493
+ =========================================
494
+ END OF ip-address@9.0.5 AND INFORMATION
495
+
496
+ %% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
497
+ =========================================
498
+ MIT License
499
+
500
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
501
+
502
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
503
+
504
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
505
+
506
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
507
+ =========================================
508
+ END OF is-docker@2.2.1 AND INFORMATION
509
+
510
+ %% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
511
+ =========================================
512
+ MIT License
513
+
514
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
515
+
516
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
517
+
518
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
519
+
520
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
521
+ =========================================
522
+ END OF is-wsl@2.2.0 AND INFORMATION
523
+
524
+ %% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
525
+ =========================================
526
+ Copyright (c) 2014, Eugene Ware
527
+ All rights reserved.
528
+
529
+ Redistribution and use in source and binary forms, with or without
530
+ modification, are permitted provided that the following conditions are met:
531
+
532
+ 1. Redistributions of source code must retain the above copyright
533
+ notice, this list of conditions and the following disclaimer.
534
+ 2. Redistributions in binary form must reproduce the above copyright
535
+ notice, this list of conditions and the following disclaimer in the
536
+ documentation and/or other materials provided with the distribution.
537
+ 3. Neither the name of Eugene Ware nor the names of its contributors
538
+ may be used to endorse or promote products derived from this software
539
+ without specific prior written permission.
540
+
541
+ THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
542
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
543
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
544
+ DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
545
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
546
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
547
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
548
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
549
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
550
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
551
+ =========================================
552
+ END OF jpeg-js@0.4.4 AND INFORMATION
553
+
554
+ %% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
555
+ =========================================
556
+ Licensing
557
+ ---------
558
+
559
+ This software is covered under the following copyright:
560
+
561
+ /*
562
+ * Copyright (c) 2003-2005 Tom Wu
563
+ * All Rights Reserved.
564
+ *
565
+ * Permission is hereby granted, free of charge, to any person obtaining
566
+ * a copy of this software and associated documentation files (the
567
+ * "Software"), to deal in the Software without restriction, including
568
+ * without limitation the rights to use, copy, modify, merge, publish,
569
+ * distribute, sublicense, and/or sell copies of the Software, and to
570
+ * permit persons to whom the Software is furnished to do so, subject to
571
+ * the following conditions:
572
+ *
573
+ * The above copyright notice and this permission notice shall be
574
+ * included in all copies or substantial portions of the Software.
575
+ *
576
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
577
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
578
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
579
+ *
580
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
581
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
582
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
583
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
584
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
585
+ *
586
+ * In addition, the following condition applies:
587
+ *
588
+ * All redistributions must retain an intact copy of this copyright notice
589
+ * and disclaimer.
590
+ */
591
+
592
+ Address all questions regarding this license to:
593
+
594
+ Tom Wu
595
+ tjw@cs.Stanford.EDU
596
+ =========================================
597
+ END OF jsbn@1.1.0 AND INFORMATION
598
+
599
+ %% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
600
+ =========================================
601
+ The MIT License (MIT)
602
+
603
+ Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
604
+
605
+ Permission is hereby granted, free of charge, to any person obtaining a copy
606
+ of this software and associated documentation files (the "Software"), to deal
607
+ in the Software without restriction, including without limitation the rights
608
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
609
+ copies of the Software, and to permit persons to whom the Software is
610
+ furnished to do so, subject to the following conditions:
611
+
612
+ The above copyright notice and this permission notice shall be included in
613
+ all copies or substantial portions of the Software.
614
+
615
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
616
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
617
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
618
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
619
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
620
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
621
+ THE SOFTWARE.
622
+ =========================================
623
+ END OF mime@3.0.0 AND INFORMATION
624
+
625
+ %% minimatch@3.1.2 NOTICES AND INFORMATION BEGIN HERE
626
+ =========================================
627
+ The ISC License
628
+
629
+ Copyright (c) Isaac Z. Schlueter and Contributors
630
+
631
+ Permission to use, copy, modify, and/or distribute this software for any
632
+ purpose with or without fee is hereby granted, provided that the above
633
+ copyright notice and this permission notice appear in all copies.
634
+
635
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
636
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
637
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
638
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
639
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
640
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
641
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
642
+ =========================================
643
+ END OF minimatch@3.1.2 AND INFORMATION
644
+
645
+ %% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
646
+ =========================================
647
+ The MIT License (MIT)
648
+
649
+ Copyright (c) 2016 Zeit, Inc.
650
+
651
+ Permission is hereby granted, free of charge, to any person obtaining a copy
652
+ of this software and associated documentation files (the "Software"), to deal
653
+ in the Software without restriction, including without limitation the rights
654
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
655
+ copies of the Software, and to permit persons to whom the Software is
656
+ furnished to do so, subject to the following conditions:
657
+
658
+ The above copyright notice and this permission notice shall be included in all
659
+ copies or substantial portions of the Software.
660
+
661
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
662
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
663
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
664
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
665
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
666
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
667
+ SOFTWARE.
668
+ =========================================
669
+ END OF ms@2.1.2 AND INFORMATION
670
+
671
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
672
+ =========================================
673
+ The MIT License (MIT)
674
+
675
+ Copyright (c) 2020 Vercel, Inc.
676
+
677
+ Permission is hereby granted, free of charge, to any person obtaining a copy
678
+ of this software and associated documentation files (the "Software"), to deal
679
+ in the Software without restriction, including without limitation the rights
680
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
681
+ copies of the Software, and to permit persons to whom the Software is
682
+ furnished to do so, subject to the following conditions:
683
+
684
+ The above copyright notice and this permission notice shall be included in all
685
+ copies or substantial portions of the Software.
686
+
687
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
688
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
689
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
690
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
691
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
692
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
693
+ SOFTWARE.
694
+ =========================================
695
+ END OF ms@2.1.3 AND INFORMATION
696
+
697
+ %% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
698
+ =========================================
699
+ The ISC License
700
+
701
+ Copyright (c) Isaac Z. Schlueter and Contributors
702
+
703
+ Permission to use, copy, modify, and/or distribute this software for any
704
+ purpose with or without fee is hereby granted, provided that the above
705
+ copyright notice and this permission notice appear in all copies.
706
+
707
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
708
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
709
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
710
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
711
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
712
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
713
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
714
+ =========================================
715
+ END OF once@1.4.0 AND INFORMATION
716
+
717
+ %% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
718
+ =========================================
719
+ MIT License
720
+
721
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
722
+
723
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
724
+
725
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
726
+
727
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
728
+ =========================================
729
+ END OF open@8.4.0 AND INFORMATION
730
+
731
+ %% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
732
+ =========================================
733
+ The MIT License (Expat)
734
+
735
+ Copyright (c) 2014 Andrew Kelley
736
+
737
+ Permission is hereby granted, free of charge, to any person
738
+ obtaining a copy of this software and associated documentation files
739
+ (the "Software"), to deal in the Software without restriction,
740
+ including without limitation the rights to use, copy, modify, merge,
741
+ publish, distribute, sublicense, and/or sell copies of the Software,
742
+ and to permit persons to whom the Software is furnished to do so,
743
+ subject to the following conditions:
744
+
745
+ The above copyright notice and this permission notice shall be
746
+ included in all copies or substantial portions of the Software.
747
+
748
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
749
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
750
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
751
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
752
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
753
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
754
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
755
+ SOFTWARE.
756
+ =========================================
757
+ END OF pend@1.2.0 AND INFORMATION
758
+
759
+ %% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
760
+ =========================================
761
+ pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
762
+ pngjs derived work Copyright (c) 2012 Kuba Niegowski
763
+
764
+ Permission is hereby granted, free of charge, to any person obtaining a copy
765
+ of this software and associated documentation files (the "Software"), to deal
766
+ in the Software without restriction, including without limitation the rights
767
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
768
+ copies of the Software, and to permit persons to whom the Software is
769
+ furnished to do so, subject to the following conditions:
770
+
771
+ The above copyright notice and this permission notice shall be included in
772
+ all copies or substantial portions of the Software.
773
+
774
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
775
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
776
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
777
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
778
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
779
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
780
+ THE SOFTWARE.
781
+ =========================================
782
+ END OF pngjs@6.0.0 AND INFORMATION
783
+
784
+ %% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
785
+ =========================================
786
+ (The MIT License)
787
+
788
+ Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
789
+
790
+ Permission is hereby granted, free of charge, to any person obtaining
791
+ a copy of this software and associated documentation files (the
792
+ 'Software'), to deal in the Software without restriction, including
793
+ without limitation the rights to use, copy, modify, merge, publish,
794
+ distribute, sublicense, and/or sell copies of the Software, and to
795
+ permit persons to whom the Software is furnished to do so, subject to
796
+ the following conditions:
797
+
798
+ The above copyright notice and this permission notice shall be
799
+ included in all copies or substantial portions of the Software.
800
+
801
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
802
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
803
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
804
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
805
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
806
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
807
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
808
+ =========================================
809
+ END OF progress@2.0.3 AND INFORMATION
810
+
811
+ %% proxy-from-env@1.1.0 NOTICES AND INFORMATION BEGIN HERE
812
+ =========================================
813
+ The MIT License
814
+
815
+ Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
816
+
817
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
818
+ this software and associated documentation files (the "Software"), to deal in
819
+ the Software without restriction, including without limitation the rights to
820
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
821
+ of the Software, and to permit persons to whom the Software is furnished to do
822
+ so, subject to the following conditions:
823
+
824
+ The above copyright notice and this permission notice shall be included in all
825
+ copies or substantial portions of the Software.
826
+
827
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
828
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
829
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
830
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
831
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
832
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
833
+ =========================================
834
+ END OF proxy-from-env@1.1.0 AND INFORMATION
835
+
836
+ %% pump@3.0.2 NOTICES AND INFORMATION BEGIN HERE
837
+ =========================================
838
+ The MIT License (MIT)
839
+
840
+ Copyright (c) 2014 Mathias Buus
841
+
842
+ Permission is hereby granted, free of charge, to any person obtaining a copy
843
+ of this software and associated documentation files (the "Software"), to deal
844
+ in the Software without restriction, including without limitation the rights
845
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
846
+ copies of the Software, and to permit persons to whom the Software is
847
+ furnished to do so, subject to the following conditions:
848
+
849
+ The above copyright notice and this permission notice shall be included in
850
+ all copies or substantial portions of the Software.
851
+
852
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
853
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
854
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
855
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
856
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
857
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
858
+ THE SOFTWARE.
859
+ =========================================
860
+ END OF pump@3.0.2 AND INFORMATION
861
+
862
+ %% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
863
+ =========================================
864
+ Copyright (c) 2011:
865
+ Tim Koschützki (tim@debuggable.com)
866
+ Felix Geisendörfer (felix@debuggable.com)
867
+
868
+ Permission is hereby granted, free of charge, to any person obtaining a copy
869
+ of this software and associated documentation files (the "Software"), to deal
870
+ in the Software without restriction, including without limitation the rights
871
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
872
+ copies of the Software, and to permit persons to whom the Software is
873
+ furnished to do so, subject to the following conditions:
874
+
875
+ The above copyright notice and this permission notice shall be included in
876
+ all copies or substantial portions of the Software.
877
+
878
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
879
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
880
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
881
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
882
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
883
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
884
+ THE SOFTWARE.
885
+ =========================================
886
+ END OF retry@0.12.0 AND INFORMATION
887
+
888
+ %% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
889
+ =========================================
890
+ The ISC License
891
+
892
+ Copyright (c) 2015, Contributors
893
+
894
+ Permission to use, copy, modify, and/or distribute this software
895
+ for any purpose with or without fee is hereby granted, provided
896
+ that the above copyright notice and this permission notice
897
+ appear in all copies.
898
+
899
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
900
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
901
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
902
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
903
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
904
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
905
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
906
+ =========================================
907
+ END OF signal-exit@3.0.7 AND INFORMATION
908
+
909
+ %% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
910
+ =========================================
911
+ The MIT License (MIT)
912
+
913
+ Copyright (c) 2013-2017 Josh Glazebrook
914
+
915
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
916
+ this software and associated documentation files (the "Software"), to deal in
917
+ the Software without restriction, including without limitation the rights to
918
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
919
+ the Software, and to permit persons to whom the Software is furnished to do so,
920
+ subject to the following conditions:
921
+
922
+ The above copyright notice and this permission notice shall be included in all
923
+ copies or substantial portions of the Software.
924
+
925
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
926
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
927
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
928
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
929
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
930
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
931
+ =========================================
932
+ END OF smart-buffer@4.2.0 AND INFORMATION
933
+
934
+ %% socks-proxy-agent@8.0.5 NOTICES AND INFORMATION BEGIN HERE
935
+ =========================================
936
+ (The MIT License)
937
+
938
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
939
+
940
+ Permission is hereby granted, free of charge, to any person obtaining
941
+ a copy of this software and associated documentation files (the
942
+ 'Software'), to deal in the Software without restriction, including
943
+ without limitation the rights to use, copy, modify, merge, publish,
944
+ distribute, sublicense, and/or sell copies of the Software, and to
945
+ permit persons to whom the Software is furnished to do so, subject to
946
+ the following conditions:
947
+
948
+ The above copyright notice and this permission notice shall be
949
+ included in all copies or substantial portions of the Software.
950
+
951
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
952
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
953
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
954
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
955
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
956
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
957
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
958
+ =========================================
959
+ END OF socks-proxy-agent@8.0.5 AND INFORMATION
960
+
961
+ %% socks@2.8.3 NOTICES AND INFORMATION BEGIN HERE
962
+ =========================================
963
+ The MIT License (MIT)
964
+
965
+ Copyright (c) 2013 Josh Glazebrook
966
+
967
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
968
+ this software and associated documentation files (the "Software"), to deal in
969
+ the Software without restriction, including without limitation the rights to
970
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
971
+ the Software, and to permit persons to whom the Software is furnished to do so,
972
+ subject to the following conditions:
973
+
974
+ The above copyright notice and this permission notice shall be included in all
975
+ copies or substantial portions of the Software.
976
+
977
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
978
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
979
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
980
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
981
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
982
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
983
+ =========================================
984
+ END OF socks@2.8.3 AND INFORMATION
985
+
986
+ %% sprintf-js@1.1.3 NOTICES AND INFORMATION BEGIN HERE
987
+ =========================================
988
+ Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>
989
+ All rights reserved.
990
+
991
+ Redistribution and use in source and binary forms, with or without
992
+ modification, are permitted provided that the following conditions are met:
993
+ * Redistributions of source code must retain the above copyright
994
+ notice, this list of conditions and the following disclaimer.
995
+ * Redistributions in binary form must reproduce the above copyright
996
+ notice, this list of conditions and the following disclaimer in the
997
+ documentation and/or other materials provided with the distribution.
998
+ * Neither the name of this software nor the names of its contributors may be
999
+ used to endorse or promote products derived from this software without
1000
+ specific prior written permission.
1001
+
1002
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1003
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1004
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1005
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
1006
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1007
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1008
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1009
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1010
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1011
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1012
+ =========================================
1013
+ END OF sprintf-js@1.1.3 AND INFORMATION
1014
+
1015
+ %% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
1016
+ =========================================
1017
+ The ISC License
1018
+
1019
+ Copyright (c) Isaac Z. Schlueter and Contributors
1020
+
1021
+ Permission to use, copy, modify, and/or distribute this software for any
1022
+ purpose with or without fee is hereby granted, provided that the above
1023
+ copyright notice and this permission notice appear in all copies.
1024
+
1025
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1026
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1027
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1028
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1029
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1030
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1031
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1032
+ =========================================
1033
+ END OF wrappy@1.0.2 AND INFORMATION
1034
+
1035
+ %% ws@8.17.1 NOTICES AND INFORMATION BEGIN HERE
1036
+ =========================================
1037
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
1038
+ Copyright (c) 2013 Arnout Kazemier and contributors
1039
+ Copyright (c) 2016 Luigi Pinca and contributors
1040
+
1041
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1042
+ this software and associated documentation files (the "Software"), to deal in
1043
+ the Software without restriction, including without limitation the rights to
1044
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1045
+ the Software, and to permit persons to whom the Software is furnished to do so,
1046
+ subject to the following conditions:
1047
+
1048
+ The above copyright notice and this permission notice shall be included in all
1049
+ copies or substantial portions of the Software.
1050
+
1051
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1052
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1053
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1054
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1055
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1056
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1057
+ =========================================
1058
+ END OF ws@8.17.1 AND INFORMATION
1059
+
1060
+ %% yaml@2.6.0 NOTICES AND INFORMATION BEGIN HERE
1061
+ =========================================
1062
+ Copyright Eemeli Aro <eemeli@gmail.com>
1063
+
1064
+ Permission to use, copy, modify, and/or distribute this software for any purpose
1065
+ with or without fee is hereby granted, provided that the above copyright notice
1066
+ and this permission notice appear in all copies.
1067
+
1068
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1069
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1070
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1071
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
1072
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1073
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
1074
+ THIS SOFTWARE.
1075
+ =========================================
1076
+ END OF yaml@2.6.0 AND INFORMATION
1077
+
1078
+ %% yauzl@3.2.0 NOTICES AND INFORMATION BEGIN HERE
1079
+ =========================================
1080
+ The MIT License (MIT)
1081
+
1082
+ Copyright (c) 2014 Josh Wolfe
1083
+
1084
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1085
+ of this software and associated documentation files (the "Software"), to deal
1086
+ in the Software without restriction, including without limitation the rights
1087
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1088
+ copies of the Software, and to permit persons to whom the Software is
1089
+ furnished to do so, subject to the following conditions:
1090
+
1091
+ The above copyright notice and this permission notice shall be included in all
1092
+ copies or substantial portions of the Software.
1093
+
1094
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1095
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1096
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1097
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1098
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1099
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1100
+ SOFTWARE.
1101
+ =========================================
1102
+ END OF yauzl@3.2.0 AND INFORMATION
1103
+
1104
+ %% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
1105
+ =========================================
1106
+ The MIT License (MIT)
1107
+
1108
+ Copyright (c) 2014 Josh Wolfe
1109
+
1110
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1111
+ of this software and associated documentation files (the "Software"), to deal
1112
+ in the Software without restriction, including without limitation the rights
1113
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1114
+ copies of the Software, and to permit persons to whom the Software is
1115
+ furnished to do so, subject to the following conditions:
1116
+
1117
+ The above copyright notice and this permission notice shall be included in all
1118
+ copies or substantial portions of the Software.
1119
+
1120
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1121
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1122
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1123
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1124
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1125
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1126
+ SOFTWARE.
1127
+ =========================================
1128
+ END OF yazl@2.5.1 AND INFORMATION
1129
+
1130
+ SUMMARY BEGIN HERE
1131
+ =========================================
1132
+ Total Packages: 44
1133
+ =========================================
1134
+ END OF SUMMARY