easytouch-linux 1.0.6 → 1.0.7

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 (331) hide show
  1. package/.playwright/node/LICENSE +2607 -0
  2. package/.playwright/node/linux-x64/node +0 -0
  3. package/.playwright/package/README.md +3 -0
  4. package/.playwright/package/ThirdPartyNotices.txt +1602 -0
  5. package/.playwright/package/api.json +1 -0
  6. package/.playwright/package/bin/install_media_pack.ps1 +5 -0
  7. package/.playwright/package/bin/reinstall_chrome_beta_linux.sh +42 -0
  8. package/.playwright/package/bin/reinstall_chrome_beta_mac.sh +13 -0
  9. package/.playwright/package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  10. package/.playwright/package/bin/reinstall_chrome_stable_linux.sh +42 -0
  11. package/.playwright/package/bin/reinstall_chrome_stable_mac.sh +12 -0
  12. package/.playwright/package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  13. package/.playwright/package/bin/reinstall_msedge_beta_linux.sh +48 -0
  14. package/.playwright/package/bin/reinstall_msedge_beta_mac.sh +11 -0
  15. package/.playwright/package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  16. package/.playwright/package/bin/reinstall_msedge_dev_linux.sh +48 -0
  17. package/.playwright/package/bin/reinstall_msedge_dev_mac.sh +11 -0
  18. package/.playwright/package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  19. package/.playwright/package/bin/reinstall_msedge_stable_linux.sh +48 -0
  20. package/.playwright/package/bin/reinstall_msedge_stable_mac.sh +11 -0
  21. package/.playwright/package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  22. package/.playwright/package/browsers.json +66 -0
  23. package/.playwright/package/cli.js +18 -0
  24. package/.playwright/package/index.d.ts +17 -0
  25. package/.playwright/package/index.js +33 -0
  26. package/.playwright/package/index.mjs +28 -0
  27. package/.playwright/package/lib/androidServerImpl.js +69 -0
  28. package/.playwright/package/lib/browserServerImpl.js +92 -0
  29. package/.playwright/package/lib/cli/driver.js +95 -0
  30. package/.playwright/package/lib/cli/program.js +583 -0
  31. package/.playwright/package/lib/cli/programWithTestStub.js +67 -0
  32. package/.playwright/package/lib/client/accessibility.js +50 -0
  33. package/.playwright/package/lib/client/android.js +473 -0
  34. package/.playwright/package/lib/client/api.js +285 -0
  35. package/.playwright/package/lib/client/artifact.js +79 -0
  36. package/.playwright/package/lib/client/browser.js +145 -0
  37. package/.playwright/package/lib/client/browserContext.js +559 -0
  38. package/.playwright/package/lib/client/browserType.js +241 -0
  39. package/.playwright/package/lib/client/cdpSession.js +53 -0
  40. package/.playwright/package/lib/client/channelOwner.js +215 -0
  41. package/.playwright/package/lib/client/clientHelper.js +57 -0
  42. package/.playwright/package/lib/client/clientInstrumentation.js +52 -0
  43. package/.playwright/package/lib/client/clock.js +68 -0
  44. package/.playwright/package/lib/client/connection.js +333 -0
  45. package/.playwright/package/lib/client/consoleMessage.js +55 -0
  46. package/.playwright/package/lib/client/coverage.js +41 -0
  47. package/.playwright/package/lib/client/dialog.js +57 -0
  48. package/.playwright/package/lib/client/download.js +62 -0
  49. package/.playwright/package/lib/client/electron.js +135 -0
  50. package/.playwright/package/lib/client/elementHandle.js +321 -0
  51. package/.playwright/package/lib/client/errors.js +77 -0
  52. package/.playwright/package/lib/client/eventEmitter.js +314 -0
  53. package/.playwright/package/lib/client/events.js +94 -0
  54. package/.playwright/package/lib/client/fetch.js +391 -0
  55. package/.playwright/package/lib/client/fileChooser.js +45 -0
  56. package/.playwright/package/lib/client/frame.js +504 -0
  57. package/.playwright/package/lib/client/harRouter.js +99 -0
  58. package/.playwright/package/lib/client/input.js +111 -0
  59. package/.playwright/package/lib/client/jsHandle.js +121 -0
  60. package/.playwright/package/lib/client/jsonPipe.js +35 -0
  61. package/.playwright/package/lib/client/localUtils.js +36 -0
  62. package/.playwright/package/lib/client/locator.js +448 -0
  63. package/.playwright/package/lib/client/network.js +769 -0
  64. package/.playwright/package/lib/client/page.js +748 -0
  65. package/.playwright/package/lib/client/playwright.js +80 -0
  66. package/.playwright/package/lib/client/selectors.js +67 -0
  67. package/.playwright/package/lib/client/stream.js +54 -0
  68. package/.playwright/package/lib/client/tracing.js +147 -0
  69. package/.playwright/package/lib/client/types.js +24 -0
  70. package/.playwright/package/lib/client/video.js +51 -0
  71. package/.playwright/package/lib/client/waiter.js +162 -0
  72. package/.playwright/package/lib/client/webError.js +37 -0
  73. package/.playwright/package/lib/client/worker.js +71 -0
  74. package/.playwright/package/lib/client/writableStream.js +54 -0
  75. package/.playwright/package/lib/common/socksProxy.js +569 -0
  76. package/.playwright/package/lib/common/timeoutSettings.js +73 -0
  77. package/.playwright/package/lib/common/types.js +5 -0
  78. package/.playwright/package/lib/generated/clockSource.js +7 -0
  79. package/.playwright/package/lib/generated/consoleApiSource.js +7 -0
  80. package/.playwright/package/lib/generated/injectedScriptSource.js +7 -0
  81. package/.playwright/package/lib/generated/pollingRecorderSource.js +7 -0
  82. package/.playwright/package/lib/generated/utilityScriptSource.js +7 -0
  83. package/.playwright/package/lib/generated/webSocketMockSource.js +7 -0
  84. package/.playwright/package/lib/image_tools/colorUtils.js +98 -0
  85. package/.playwright/package/lib/image_tools/compare.js +108 -0
  86. package/.playwright/package/lib/image_tools/imageChannel.js +70 -0
  87. package/.playwright/package/lib/image_tools/stats.js +102 -0
  88. package/.playwright/package/lib/inProcessFactory.js +56 -0
  89. package/.playwright/package/lib/inprocess.js +20 -0
  90. package/.playwright/package/lib/outofprocess.js +67 -0
  91. package/.playwright/package/lib/protocol/debug.js +27 -0
  92. package/.playwright/package/lib/protocol/serializers.js +173 -0
  93. package/.playwright/package/lib/protocol/transport.js +82 -0
  94. package/.playwright/package/lib/protocol/validator.js +2780 -0
  95. package/.playwright/package/lib/protocol/validatorPrimitives.js +139 -0
  96. package/.playwright/package/lib/remote/playwrightConnection.js +275 -0
  97. package/.playwright/package/lib/remote/playwrightServer.js +111 -0
  98. package/.playwright/package/lib/server/accessibility.js +62 -0
  99. package/.playwright/package/lib/server/android/android.js +441 -0
  100. package/.playwright/package/lib/server/android/backendAdb.js +172 -0
  101. package/.playwright/package/lib/server/artifact.js +104 -0
  102. package/.playwright/package/lib/server/bidi/bidiBrowser.js +314 -0
  103. package/.playwright/package/lib/server/bidi/bidiChromium.js +124 -0
  104. package/.playwright/package/lib/server/bidi/bidiConnection.js +204 -0
  105. package/.playwright/package/lib/server/bidi/bidiExecutionContext.js +175 -0
  106. package/.playwright/package/lib/server/bidi/bidiFirefox.js +104 -0
  107. package/.playwright/package/lib/server/bidi/bidiInput.js +160 -0
  108. package/.playwright/package/lib/server/bidi/bidiNetworkManager.js +337 -0
  109. package/.playwright/package/lib/server/bidi/bidiOverCdp.js +103 -0
  110. package/.playwright/package/lib/server/bidi/bidiPage.js +518 -0
  111. package/.playwright/package/lib/server/bidi/bidiPdf.js +140 -0
  112. package/.playwright/package/lib/server/bidi/third_party/bidiDeserializer.js +93 -0
  113. package/.playwright/package/lib/server/bidi/third_party/bidiKeyboard.js +240 -0
  114. package/.playwright/package/lib/server/bidi/third_party/bidiProtocol.js +139 -0
  115. package/.playwright/package/lib/server/bidi/third_party/bidiSerializer.js +144 -0
  116. package/.playwright/package/lib/server/bidi/third_party/firefoxPrefs.js +221 -0
  117. package/.playwright/package/lib/server/browser.js +148 -0
  118. package/.playwright/package/lib/server/browserContext.js +675 -0
  119. package/.playwright/package/lib/server/browserType.js +338 -0
  120. package/.playwright/package/lib/server/chromium/appIcon.png +0 -0
  121. package/.playwright/package/lib/server/chromium/chromium.js +354 -0
  122. package/.playwright/package/lib/server/chromium/chromiumSwitches.js +46 -0
  123. package/.playwright/package/lib/server/chromium/crAccessibility.js +237 -0
  124. package/.playwright/package/lib/server/chromium/crBrowser.js +516 -0
  125. package/.playwright/package/lib/server/chromium/crConnection.js +228 -0
  126. package/.playwright/package/lib/server/chromium/crCoverage.js +246 -0
  127. package/.playwright/package/lib/server/chromium/crDevTools.js +104 -0
  128. package/.playwright/package/lib/server/chromium/crDragDrop.js +143 -0
  129. package/.playwright/package/lib/server/chromium/crExecutionContext.js +132 -0
  130. package/.playwright/package/lib/server/chromium/crInput.js +182 -0
  131. package/.playwright/package/lib/server/chromium/crNetworkManager.js +767 -0
  132. package/.playwright/package/lib/server/chromium/crPage.js +1122 -0
  133. package/.playwright/package/lib/server/chromium/crPdf.js +153 -0
  134. package/.playwright/package/lib/server/chromium/crProtocolHelper.js +133 -0
  135. package/.playwright/package/lib/server/chromium/crServiceWorker.js +112 -0
  136. package/.playwright/package/lib/server/chromium/defaultFontFamilies.js +145 -0
  137. package/.playwright/package/lib/server/chromium/videoRecorder.js +155 -0
  138. package/.playwright/package/lib/server/clock.js +125 -0
  139. package/.playwright/package/lib/server/codegen/csharp.js +304 -0
  140. package/.playwright/package/lib/server/codegen/java.js +243 -0
  141. package/.playwright/package/lib/server/codegen/javascript.js +253 -0
  142. package/.playwright/package/lib/server/codegen/jsonl.js +47 -0
  143. package/.playwright/package/lib/server/codegen/language.js +88 -0
  144. package/.playwright/package/lib/server/codegen/languages.js +30 -0
  145. package/.playwright/package/lib/server/codegen/python.js +262 -0
  146. package/.playwright/package/lib/server/codegen/types.js +5 -0
  147. package/.playwright/package/lib/server/console.js +57 -0
  148. package/.playwright/package/lib/server/cookieStore.js +185 -0
  149. package/.playwright/package/lib/server/debugController.js +212 -0
  150. package/.playwright/package/lib/server/debugger.js +132 -0
  151. package/.playwright/package/lib/server/deviceDescriptors.js +26 -0
  152. package/.playwright/package/lib/server/deviceDescriptorsSource.json +1669 -0
  153. package/.playwright/package/lib/server/dialog.js +71 -0
  154. package/.playwright/package/lib/server/dispatchers/androidDispatcher.js +204 -0
  155. package/.playwright/package/lib/server/dispatchers/artifactDispatcher.js +118 -0
  156. package/.playwright/package/lib/server/dispatchers/browserContextDispatcher.js +357 -0
  157. package/.playwright/package/lib/server/dispatchers/browserDispatcher.js +170 -0
  158. package/.playwright/package/lib/server/dispatchers/browserTypeDispatcher.js +55 -0
  159. package/.playwright/package/lib/server/dispatchers/cdpSessionDispatcher.js +48 -0
  160. package/.playwright/package/lib/server/dispatchers/debugControllerDispatcher.js +105 -0
  161. package/.playwright/package/lib/server/dispatchers/dialogDispatcher.js +44 -0
  162. package/.playwright/package/lib/server/dispatchers/dispatcher.js +395 -0
  163. package/.playwright/package/lib/server/dispatchers/electronDispatcher.js +93 -0
  164. package/.playwright/package/lib/server/dispatchers/elementHandlerDispatcher.js +228 -0
  165. package/.playwright/package/lib/server/dispatchers/frameDispatcher.js +294 -0
  166. package/.playwright/package/lib/server/dispatchers/jsHandleDispatcher.js +97 -0
  167. package/.playwright/package/lib/server/dispatchers/jsonPipeDispatcher.js +59 -0
  168. package/.playwright/package/lib/server/dispatchers/localUtilsDispatcher.js +413 -0
  169. package/.playwright/package/lib/server/dispatchers/networkDispatchers.js +221 -0
  170. package/.playwright/package/lib/server/dispatchers/pageDispatcher.js +367 -0
  171. package/.playwright/package/lib/server/dispatchers/playwrightDispatcher.js +107 -0
  172. package/.playwright/package/lib/server/dispatchers/selectorsDispatcher.js +36 -0
  173. package/.playwright/package/lib/server/dispatchers/streamDispatcher.js +62 -0
  174. package/.playwright/package/lib/server/dispatchers/tracingDispatcher.js +64 -0
  175. package/.playwright/package/lib/server/dispatchers/webSocketRouteDispatcher.js +188 -0
  176. package/.playwright/package/lib/server/dispatchers/writableStreamDispatcher.js +58 -0
  177. package/.playwright/package/lib/server/dom.js +893 -0
  178. package/.playwright/package/lib/server/download.js +60 -0
  179. package/.playwright/package/lib/server/electron/electron.js +296 -0
  180. package/.playwright/package/lib/server/electron/loader.js +57 -0
  181. package/.playwright/package/lib/server/errors.js +68 -0
  182. package/.playwright/package/lib/server/fetch.js +663 -0
  183. package/.playwright/package/lib/server/fileChooser.js +42 -0
  184. package/.playwright/package/lib/server/fileUploadUtils.js +75 -0
  185. package/.playwright/package/lib/server/firefox/ffAccessibility.js +216 -0
  186. package/.playwright/package/lib/server/firefox/ffBrowser.js +462 -0
  187. package/.playwright/package/lib/server/firefox/ffConnection.js +168 -0
  188. package/.playwright/package/lib/server/firefox/ffExecutionContext.js +123 -0
  189. package/.playwright/package/lib/server/firefox/ffInput.js +161 -0
  190. package/.playwright/package/lib/server/firefox/ffNetworkManager.js +233 -0
  191. package/.playwright/package/lib/server/firefox/ffPage.js +544 -0
  192. package/.playwright/package/lib/server/firefox/firefox.js +99 -0
  193. package/.playwright/package/lib/server/formData.js +75 -0
  194. package/.playwright/package/lib/server/frameSelectors.js +171 -0
  195. package/.playwright/package/lib/server/frames.js +1663 -0
  196. package/.playwright/package/lib/server/har/harRecorder.js +139 -0
  197. package/.playwright/package/lib/server/har/harTracer.js +542 -0
  198. package/.playwright/package/lib/server/helper.js +103 -0
  199. package/.playwright/package/lib/server/index.js +108 -0
  200. package/.playwright/package/lib/server/input.js +309 -0
  201. package/.playwright/package/lib/server/instrumentation.js +70 -0
  202. package/.playwright/package/lib/server/isomorphic/utilityScriptSerializers.js +226 -0
  203. package/.playwright/package/lib/server/javascript.js +293 -0
  204. package/.playwright/package/lib/server/launchApp.js +91 -0
  205. package/.playwright/package/lib/server/macEditingCommands.js +139 -0
  206. package/.playwright/package/lib/server/network.js +617 -0
  207. package/.playwright/package/lib/server/page.js +863 -0
  208. package/.playwright/package/lib/server/pipeTransport.js +85 -0
  209. package/.playwright/package/lib/server/playwright.js +88 -0
  210. package/.playwright/package/lib/server/progress.js +99 -0
  211. package/.playwright/package/lib/server/protocolError.js +49 -0
  212. package/.playwright/package/lib/server/recorder/chat.js +177 -0
  213. package/.playwright/package/lib/server/recorder/contextRecorder.js +290 -0
  214. package/.playwright/package/lib/server/recorder/recorderApp.js +187 -0
  215. package/.playwright/package/lib/server/recorder/recorderCollection.js +104 -0
  216. package/.playwright/package/lib/server/recorder/recorderFrontend.js +5 -0
  217. package/.playwright/package/lib/server/recorder/recorderRunner.js +159 -0
  218. package/.playwright/package/lib/server/recorder/recorderUtils.js +89 -0
  219. package/.playwright/package/lib/server/recorder/throttledFile.js +46 -0
  220. package/.playwright/package/lib/server/recorder.js +367 -0
  221. package/.playwright/package/lib/server/registry/browserFetcher.js +168 -0
  222. package/.playwright/package/lib/server/registry/dependencies.js +322 -0
  223. package/.playwright/package/lib/server/registry/index.js +1165 -0
  224. package/.playwright/package/lib/server/registry/nativeDeps.js +496 -0
  225. package/.playwright/package/lib/server/registry/oopDownloadBrowserMain.js +138 -0
  226. package/.playwright/package/lib/server/screenshotter.js +348 -0
  227. package/.playwright/package/lib/server/selectors.js +73 -0
  228. package/.playwright/package/lib/server/socksClientCertificatesInterceptor.js +340 -0
  229. package/.playwright/package/lib/server/socksInterceptor.js +100 -0
  230. package/.playwright/package/lib/server/trace/recorder/snapshotter.js +161 -0
  231. package/.playwright/package/lib/server/trace/recorder/snapshotterInjected.js +518 -0
  232. package/.playwright/package/lib/server/trace/recorder/tracing.js +596 -0
  233. package/.playwright/package/lib/server/trace/test/inMemorySnapshotter.js +93 -0
  234. package/.playwright/package/lib/server/trace/viewer/traceViewer.js +219 -0
  235. package/.playwright/package/lib/server/transport.js +192 -0
  236. package/.playwright/package/lib/server/types.js +24 -0
  237. package/.playwright/package/lib/server/usKeyboardLayout.js +555 -0
  238. package/.playwright/package/lib/server/webkit/webkit.js +87 -0
  239. package/.playwright/package/lib/server/webkit/wkAccessibility.js +194 -0
  240. package/.playwright/package/lib/server/webkit/wkBrowser.js +329 -0
  241. package/.playwright/package/lib/server/webkit/wkConnection.js +173 -0
  242. package/.playwright/package/lib/server/webkit/wkExecutionContext.js +131 -0
  243. package/.playwright/package/lib/server/webkit/wkInput.js +179 -0
  244. package/.playwright/package/lib/server/webkit/wkInterceptableRequest.js +162 -0
  245. package/.playwright/package/lib/server/webkit/wkPage.js +1207 -0
  246. package/.playwright/package/lib/server/webkit/wkProvisionalPage.js +94 -0
  247. package/.playwright/package/lib/server/webkit/wkWorkers.js +104 -0
  248. package/.playwright/package/lib/third_party/pixelmatch.js +255 -0
  249. package/.playwright/package/lib/utils/ascii.js +31 -0
  250. package/.playwright/package/lib/utils/comparators.js +159 -0
  251. package/.playwright/package/lib/utils/crypto.js +171 -0
  252. package/.playwright/package/lib/utils/debug.js +46 -0
  253. package/.playwright/package/lib/utils/debugLogger.js +93 -0
  254. package/.playwright/package/lib/utils/env.js +49 -0
  255. package/.playwright/package/lib/utils/eventsHelper.js +38 -0
  256. package/.playwright/package/lib/utils/expectUtils.js +33 -0
  257. package/.playwright/package/lib/utils/fileUtils.js +205 -0
  258. package/.playwright/package/lib/utils/happy-eyeballs.js +194 -0
  259. package/.playwright/package/lib/utils/headers.js +52 -0
  260. package/.playwright/package/lib/utils/hostPlatform.js +145 -0
  261. package/.playwright/package/lib/utils/httpServer.js +233 -0
  262. package/.playwright/package/lib/utils/index.js +368 -0
  263. package/.playwright/package/lib/utils/isomorphic/ariaSnapshot.js +391 -0
  264. package/.playwright/package/lib/utils/isomorphic/cssParser.js +250 -0
  265. package/.playwright/package/lib/utils/isomorphic/cssTokenizer.js +979 -0
  266. package/.playwright/package/lib/utils/isomorphic/locatorGenerators.js +660 -0
  267. package/.playwright/package/lib/utils/isomorphic/locatorParser.js +185 -0
  268. package/.playwright/package/lib/utils/isomorphic/locatorUtils.js +62 -0
  269. package/.playwright/package/lib/utils/isomorphic/mimeType.js +29 -0
  270. package/.playwright/package/lib/utils/isomorphic/selectorParser.js +397 -0
  271. package/.playwright/package/lib/utils/isomorphic/stringUtils.js +169 -0
  272. package/.playwright/package/lib/utils/isomorphic/traceUtils.js +39 -0
  273. package/.playwright/package/lib/utils/isomorphic/urlMatch.js +122 -0
  274. package/.playwright/package/lib/utils/linuxUtils.js +78 -0
  275. package/.playwright/package/lib/utils/manualPromise.js +109 -0
  276. package/.playwright/package/lib/utils/multimap.js +75 -0
  277. package/.playwright/package/lib/utils/network.js +160 -0
  278. package/.playwright/package/lib/utils/processLauncher.js +248 -0
  279. package/.playwright/package/lib/utils/profiler.js +53 -0
  280. package/.playwright/package/lib/utils/rtti.js +44 -0
  281. package/.playwright/package/lib/utils/semaphore.js +51 -0
  282. package/.playwright/package/lib/utils/sequence.js +64 -0
  283. package/.playwright/package/lib/utils/spawnAsync.js +45 -0
  284. package/.playwright/package/lib/utils/stackTrace.js +134 -0
  285. package/.playwright/package/lib/utils/task.js +58 -0
  286. package/.playwright/package/lib/utils/time.js +37 -0
  287. package/.playwright/package/lib/utils/timeoutRunner.js +66 -0
  288. package/.playwright/package/lib/utils/traceUtils.js +44 -0
  289. package/.playwright/package/lib/utils/userAgent.js +105 -0
  290. package/.playwright/package/lib/utils/wsServer.js +128 -0
  291. package/.playwright/package/lib/utils/zipFile.js +75 -0
  292. package/.playwright/package/lib/utils/zones.js +69 -0
  293. package/.playwright/package/lib/utilsBundle.js +81 -0
  294. package/.playwright/package/lib/utilsBundleImpl/index.js +210 -0
  295. package/.playwright/package/lib/utilsBundleImpl/xdg-open +1066 -0
  296. package/.playwright/package/lib/vite/htmlReport/index.html +69 -0
  297. package/.playwright/package/lib/vite/recorder/assets/codeMirrorModule-C3UTv-Ge.css +1 -0
  298. package/.playwright/package/lib/vite/recorder/assets/codeMirrorModule-k-61wZCK.js +24 -0
  299. package/.playwright/package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  300. package/.playwright/package/lib/vite/recorder/assets/index-B70BEW3b.js +184 -0
  301. package/.playwright/package/lib/vite/recorder/assets/index-eHBmevrY.css +1 -0
  302. package/.playwright/package/lib/vite/recorder/index.html +29 -0
  303. package/.playwright/package/lib/vite/recorder/playwright-logo.svg +9 -0
  304. package/.playwright/package/lib/vite/traceViewer/assets/codeMirrorModule-CyuxU5C-.js +24 -0
  305. package/.playwright/package/lib/vite/traceViewer/assets/defaultSettingsView-5nVJRt0A.js +243 -0
  306. package/.playwright/package/lib/vite/traceViewer/assets/xtermModule-c-SNdYZy.js +9 -0
  307. package/.playwright/package/lib/vite/traceViewer/codeMirrorModule.C3UTv-Ge.css +1 -0
  308. package/.playwright/package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  309. package/.playwright/package/lib/vite/traceViewer/defaultSettingsView.2xeEXCXv.css +1 -0
  310. package/.playwright/package/lib/vite/traceViewer/index.CFOW-Ezb.css +1 -0
  311. package/.playwright/package/lib/vite/traceViewer/index.html +43 -0
  312. package/.playwright/package/lib/vite/traceViewer/index.qVn2ZnpC.js +2 -0
  313. package/.playwright/package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  314. package/.playwright/package/lib/vite/traceViewer/snapshot.html +21 -0
  315. package/.playwright/package/lib/vite/traceViewer/sw.bundle.js +3 -0
  316. package/.playwright/package/lib/vite/traceViewer/uiMode.BatfzHMG.css +1 -0
  317. package/.playwright/package/lib/vite/traceViewer/uiMode.html +17 -0
  318. package/.playwright/package/lib/vite/traceViewer/uiMode.m4IPRPOd.js +5 -0
  319. package/.playwright/package/lib/vite/traceViewer/xtermModule.Beg8tuEN.css +32 -0
  320. package/.playwright/package/lib/zipBundle.js +25 -0
  321. package/.playwright/package/lib/zipBundleImpl.js +5 -0
  322. package/.playwright/package/package.json +44 -0
  323. package/.playwright/package/protocol.yml +3758 -0
  324. package/.playwright/package/types/protocol.d.ts +21868 -0
  325. package/.playwright/package/types/structs.d.ts +45 -0
  326. package/.playwright/package/types/types.d.ts +22663 -0
  327. package/README.md +6 -6
  328. package/et +0 -0
  329. package/package.json +7 -2
  330. package/playwright.ps1 +7 -0
  331. package/scripts/playwright-bridge.js +560 -0
@@ -0,0 +1,1602 @@
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
+ - @types/node@17.0.24 (https://github.com/DefinitelyTyped/DefinitelyTyped)
8
+ - @types/yauzl@2.10.0 (https://github.com/DefinitelyTyped/DefinitelyTyped)
9
+ - agent-base@6.0.2 (https://github.com/TooTallNate/node-agent-base)
10
+ - balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
11
+ - brace-expansion@1.1.11 (https://github.com/juliangruber/brace-expansion)
12
+ - buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
13
+ - codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
14
+ - colors@1.4.0 (https://github.com/Marak/colors.js)
15
+ - commander@8.3.0 (https://github.com/tj/commander.js)
16
+ - concat-map@0.0.1 (https://github.com/substack/node-concat-map)
17
+ - debug@4.3.4 (https://github.com/debug-js/debug)
18
+ - define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
19
+ - diff@7.0.0 (https://github.com/kpdecker/jsdiff)
20
+ - dotenv@16.4.5 (https://github.com/motdotla/dotenv)
21
+ - end-of-stream@1.4.4 (https://github.com/mafintosh/end-of-stream)
22
+ - escape-string-regexp@2.0.0 (https://github.com/sindresorhus/escape-string-regexp)
23
+ - extract-zip@2.0.1 (https://github.com/maxogden/extract-zip)
24
+ - fd-slicer@1.1.0 (https://github.com/andrewrk/node-fd-slicer)
25
+ - get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
26
+ - graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
27
+ - https-proxy-agent@5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent)
28
+ - ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
29
+ - is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
30
+ - is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
31
+ - jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
32
+ - jsbn@1.1.0 (https://github.com/andyperlitch/jsbn)
33
+ - mime@3.0.0 (https://github.com/broofa/mime)
34
+ - minimatch@3.1.2 (https://github.com/isaacs/minimatch)
35
+ - ms@2.1.2 (https://github.com/zeit/ms)
36
+ - once@1.4.0 (https://github.com/isaacs/once)
37
+ - open@8.4.0 (https://github.com/sindresorhus/open)
38
+ - pend@1.2.0 (https://github.com/andrewrk/node-pend)
39
+ - pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
40
+ - progress@2.0.3 (https://github.com/visionmedia/node-progress)
41
+ - proxy-from-env@1.1.0 (https://github.com/Rob--W/proxy-from-env)
42
+ - pump@3.0.0 (https://github.com/mafintosh/pump)
43
+ - retry@0.12.0 (https://github.com/tim-kos/node-retry)
44
+ - signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
45
+ - smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
46
+ - socks-proxy-agent@6.1.1 (https://github.com/TooTallNate/node-socks-proxy-agent)
47
+ - socks@2.8.3 (https://github.com/JoshGlazebrook/socks)
48
+ - sprintf-js@1.1.3 (https://github.com/alexei/sprintf.js)
49
+ - stack-utils@2.0.5 (https://github.com/tapjs/stack-utils)
50
+ - wrappy@1.0.2 (https://github.com/npm/wrappy)
51
+ - ws@8.17.1 (https://github.com/websockets/ws)
52
+ - yaml@2.6.0 (https://github.com/eemeli/yaml)
53
+ - yauzl@2.10.0 (https://github.com/thejoshwolfe/yauzl)
54
+ - yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
55
+
56
+ %% @types/node@17.0.24 NOTICES AND INFORMATION BEGIN HERE
57
+ =========================================
58
+ MIT License
59
+
60
+ Copyright (c) Microsoft Corporation.
61
+
62
+ Permission is hereby granted, free of charge, to any person obtaining a copy
63
+ of this software and associated documentation files (the "Software"), to deal
64
+ in the Software without restriction, including without limitation the rights
65
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
66
+ copies of the Software, and to permit persons to whom the Software is
67
+ furnished to do so, subject to the following conditions:
68
+
69
+ The above copyright notice and this permission notice shall be included in all
70
+ copies or substantial portions of the Software.
71
+
72
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
73
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
74
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
75
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
76
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
77
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
78
+ SOFTWARE
79
+ =========================================
80
+ END OF @types/node@17.0.24 AND INFORMATION
81
+
82
+ %% @types/yauzl@2.10.0 NOTICES AND INFORMATION BEGIN HERE
83
+ =========================================
84
+ MIT License
85
+
86
+ Copyright (c) Microsoft Corporation.
87
+
88
+ Permission is hereby granted, free of charge, to any person obtaining a copy
89
+ of this software and associated documentation files (the "Software"), to deal
90
+ in the Software without restriction, including without limitation the rights
91
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
92
+ copies of the Software, and to permit persons to whom the Software is
93
+ furnished to do so, subject to the following conditions:
94
+
95
+ The above copyright notice and this permission notice shall be included in all
96
+ copies or substantial portions of the Software.
97
+
98
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
99
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
100
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
101
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
102
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
103
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
104
+ SOFTWARE
105
+ =========================================
106
+ END OF @types/yauzl@2.10.0 AND INFORMATION
107
+
108
+ %% agent-base@6.0.2 NOTICES AND INFORMATION BEGIN HERE
109
+ =========================================
110
+ agent-base
111
+ ==========
112
+ ### Turn a function into an [`http.Agent`][http.Agent] instance
113
+ [![Build Status](https://github.com/TooTallNate/node-agent-base/workflows/Node%20CI/badge.svg)](https://github.com/TooTallNate/node-agent-base/actions?workflow=Node+CI)
114
+
115
+ This module provides an `http.Agent` generator. That is, you pass it an async
116
+ callback function, and it returns a new `http.Agent` instance that will invoke the
117
+ given callback function when sending outbound HTTP requests.
118
+
119
+ #### Some subclasses:
120
+
121
+ Here's some more interesting uses of `agent-base`.
122
+ Send a pull request to list yours!
123
+
124
+ * [`http-proxy-agent`][http-proxy-agent]: An HTTP(s) proxy `http.Agent` implementation for HTTP endpoints
125
+ * [`https-proxy-agent`][https-proxy-agent]: An HTTP(s) proxy `http.Agent` implementation for HTTPS endpoints
126
+ * [`pac-proxy-agent`][pac-proxy-agent]: A PAC file proxy `http.Agent` implementation for HTTP and HTTPS
127
+ * [`socks-proxy-agent`][socks-proxy-agent]: A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS
128
+
129
+
130
+ Installation
131
+ ------------
132
+
133
+ Install with `npm`:
134
+
135
+ ``` bash
136
+ $ npm install agent-base
137
+ ```
138
+
139
+
140
+ Example
141
+ -------
142
+
143
+ Here's a minimal example that creates a new `net.Socket` connection to the server
144
+ for every HTTP request (i.e. the equivalent of `agent: false` option):
145
+
146
+ ```js
147
+ var net = require('net');
148
+ var tls = require('tls');
149
+ var url = require('url');
150
+ var http = require('http');
151
+ var agent = require('agent-base');
152
+
153
+ var endpoint = 'http://nodejs.org/api/';
154
+ var parsed = url.parse(endpoint);
155
+
156
+ // This is the important part!
157
+ parsed.agent = agent(function (req, opts) {
158
+ var socket;
159
+ // `secureEndpoint` is true when using the https module
160
+ if (opts.secureEndpoint) {
161
+ socket = tls.connect(opts);
162
+ } else {
163
+ socket = net.connect(opts);
164
+ }
165
+ return socket;
166
+ });
167
+
168
+ // Everything else works just like normal...
169
+ http.get(parsed, function (res) {
170
+ console.log('"response" event!', res.headers);
171
+ res.pipe(process.stdout);
172
+ });
173
+ ```
174
+
175
+ Returning a Promise or using an `async` function is also supported:
176
+
177
+ ```js
178
+ agent(async function (req, opts) {
179
+ await sleep(1000);
180
+ // etc…
181
+ });
182
+ ```
183
+
184
+ Return another `http.Agent` instance to "pass through" the responsibility
185
+ for that HTTP request to that agent:
186
+
187
+ ```js
188
+ agent(function (req, opts) {
189
+ return opts.secureEndpoint ? https.globalAgent : http.globalAgent;
190
+ });
191
+ ```
192
+
193
+
194
+ API
195
+ ---
196
+
197
+ ## Agent(Function callback[, Object options]) → [http.Agent][]
198
+
199
+ Creates a base `http.Agent` that will execute the callback function `callback`
200
+ for every HTTP request that it is used as the `agent` for. The callback function
201
+ is responsible for creating a `stream.Duplex` instance of some kind that will be
202
+ used as the underlying socket in the HTTP request.
203
+
204
+ The `options` object accepts the following properties:
205
+
206
+ * `timeout` - Number - Timeout for the `callback()` function in milliseconds. Defaults to Infinity (optional).
207
+
208
+ The callback function should have the following signature:
209
+
210
+ ### callback(http.ClientRequest req, Object options, Function cb) → undefined
211
+
212
+ The ClientRequest `req` can be accessed to read request headers and
213
+ and the path, etc. The `options` object contains the options passed
214
+ to the `http.request()`/`https.request()` function call, and is formatted
215
+ to be directly passed to `net.connect()`/`tls.connect()`, or however
216
+ else you want a Socket to be created. Pass the created socket to
217
+ the callback function `cb` once created, and the HTTP request will
218
+ continue to proceed.
219
+
220
+ If the `https` module is used to invoke the HTTP request, then the
221
+ `secureEndpoint` property on `options` _will be set to `true`_.
222
+
223
+
224
+ License
225
+ -------
226
+
227
+ (The MIT License)
228
+
229
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
230
+
231
+ Permission is hereby granted, free of charge, to any person obtaining
232
+ a copy of this software and associated documentation files (the
233
+ 'Software'), to deal in the Software without restriction, including
234
+ without limitation the rights to use, copy, modify, merge, publish,
235
+ distribute, sublicense, and/or sell copies of the Software, and to
236
+ permit persons to whom the Software is furnished to do so, subject to
237
+ the following conditions:
238
+
239
+ The above copyright notice and this permission notice shall be
240
+ included in all copies or substantial portions of the Software.
241
+
242
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
243
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
244
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
245
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
246
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
247
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
248
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
249
+
250
+ [http-proxy-agent]: https://github.com/TooTallNate/node-http-proxy-agent
251
+ [https-proxy-agent]: https://github.com/TooTallNate/node-https-proxy-agent
252
+ [pac-proxy-agent]: https://github.com/TooTallNate/node-pac-proxy-agent
253
+ [socks-proxy-agent]: https://github.com/TooTallNate/node-socks-proxy-agent
254
+ [http.Agent]: https://nodejs.org/api/http.html#http_class_http_agent
255
+ =========================================
256
+ END OF agent-base@6.0.2 AND INFORMATION
257
+
258
+ %% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
259
+ =========================================
260
+ (MIT)
261
+
262
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
263
+
264
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
265
+ this software and associated documentation files (the "Software"), to deal in
266
+ the Software without restriction, including without limitation the rights to
267
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
268
+ of the Software, and to permit persons to whom the Software is furnished to do
269
+ so, subject to the following conditions:
270
+
271
+ The above copyright notice and this permission notice shall be included in all
272
+ copies or substantial portions of the Software.
273
+
274
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
275
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
276
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
277
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
278
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
279
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
280
+ SOFTWARE.
281
+ =========================================
282
+ END OF balanced-match@1.0.2 AND INFORMATION
283
+
284
+ %% brace-expansion@1.1.11 NOTICES AND INFORMATION BEGIN HERE
285
+ =========================================
286
+ MIT License
287
+
288
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
289
+
290
+ Permission is hereby granted, free of charge, to any person obtaining a copy
291
+ of this software and associated documentation files (the "Software"), to deal
292
+ in the Software without restriction, including without limitation the rights
293
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
294
+ copies of the Software, and to permit persons to whom the Software is
295
+ furnished to do so, subject to the following conditions:
296
+
297
+ The above copyright notice and this permission notice shall be included in all
298
+ copies or substantial portions of the Software.
299
+
300
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
301
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
302
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
303
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
304
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
305
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
306
+ SOFTWARE.
307
+ =========================================
308
+ END OF brace-expansion@1.1.11 AND INFORMATION
309
+
310
+ %% buffer-crc32@0.2.13 NOTICES AND INFORMATION BEGIN HERE
311
+ =========================================
312
+ The MIT License
313
+
314
+ Copyright (c) 2013 Brian J. Brennan
315
+
316
+ Permission is hereby granted, free of charge, to any person obtaining a copy
317
+ of this software and associated documentation files (the "Software"), to deal in
318
+ the Software without restriction, including without limitation the rights to use,
319
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
320
+ Software, and to permit persons to whom the Software is furnished to do so,
321
+ subject to the following conditions:
322
+
323
+ The above copyright notice and this permission notice shall be included in all
324
+ copies or substantial portions of the Software.
325
+
326
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
327
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
328
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
329
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
330
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
331
+ =========================================
332
+ END OF buffer-crc32@0.2.13 AND INFORMATION
333
+
334
+ %% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
335
+ =========================================
336
+ MIT License
337
+
338
+ Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
339
+
340
+ Permission is hereby granted, free of charge, to any person obtaining a copy
341
+ of this software and associated documentation files (the "Software"), to deal
342
+ in the Software without restriction, including without limitation the rights
343
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
344
+ copies of the Software, and to permit persons to whom the Software is
345
+ furnished to do so, subject to the following conditions:
346
+
347
+ The above copyright notice and this permission notice shall be included in
348
+ all copies or substantial portions of the Software.
349
+
350
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
351
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
352
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
353
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
354
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
355
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
356
+ THE SOFTWARE.
357
+ =========================================
358
+ END OF codemirror@5.65.18 AND INFORMATION
359
+
360
+ %% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
361
+ =========================================
362
+ MIT License
363
+
364
+ Original Library
365
+ - Copyright (c) Marak Squires
366
+
367
+ Additional Functionality
368
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
369
+
370
+ Permission is hereby granted, free of charge, to any person obtaining a copy
371
+ of this software and associated documentation files (the "Software"), to deal
372
+ in the Software without restriction, including without limitation the rights
373
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
374
+ copies of the Software, and to permit persons to whom the Software is
375
+ furnished to do so, subject to the following conditions:
376
+
377
+ The above copyright notice and this permission notice shall be included in
378
+ all copies or substantial portions of the Software.
379
+
380
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
381
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
382
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
383
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
384
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
385
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
386
+ THE SOFTWARE.
387
+ =========================================
388
+ END OF colors@1.4.0 AND INFORMATION
389
+
390
+ %% commander@8.3.0 NOTICES AND INFORMATION BEGIN HERE
391
+ =========================================
392
+ (The MIT License)
393
+
394
+ Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
395
+
396
+ Permission is hereby granted, free of charge, to any person obtaining
397
+ a copy of this software and associated documentation files (the
398
+ 'Software'), to deal in the Software without restriction, including
399
+ without limitation the rights to use, copy, modify, merge, publish,
400
+ distribute, sublicense, and/or sell copies of the Software, and to
401
+ permit persons to whom the Software is furnished to do so, subject to
402
+ the following conditions:
403
+
404
+ The above copyright notice and this permission notice shall be
405
+ included in all copies or substantial portions of the Software.
406
+
407
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
408
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
409
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
410
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
411
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
412
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
413
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
414
+ =========================================
415
+ END OF commander@8.3.0 AND INFORMATION
416
+
417
+ %% concat-map@0.0.1 NOTICES AND INFORMATION BEGIN HERE
418
+ =========================================
419
+ This software is released under the MIT license:
420
+
421
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
422
+ this software and associated documentation files (the "Software"), to deal in
423
+ the Software without restriction, including without limitation the rights to
424
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
425
+ the Software, and to permit persons to whom the Software is furnished to do so,
426
+ subject to the following conditions:
427
+
428
+ The above copyright notice and this permission notice shall be included in all
429
+ copies or substantial portions of the Software.
430
+
431
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
432
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
433
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
434
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
435
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
436
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
437
+ =========================================
438
+ END OF concat-map@0.0.1 AND INFORMATION
439
+
440
+ %% debug@4.3.4 NOTICES AND INFORMATION BEGIN HERE
441
+ =========================================
442
+ (The MIT License)
443
+
444
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
445
+ Copyright (c) 2018-2021 Josh Junon
446
+
447
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
448
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
449
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
450
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
451
+ subject to the following conditions:
452
+
453
+ The above copyright notice and this permission notice shall be included in all copies or substantial
454
+ portions of the Software.
455
+
456
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
457
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
458
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
459
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
460
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
461
+ =========================================
462
+ END OF debug@4.3.4 AND INFORMATION
463
+
464
+ %% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
465
+ =========================================
466
+ MIT License
467
+
468
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
469
+
470
+ 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:
471
+
472
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
473
+
474
+ 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.
475
+ =========================================
476
+ END OF define-lazy-prop@2.0.0 AND INFORMATION
477
+
478
+ %% diff@7.0.0 NOTICES AND INFORMATION BEGIN HERE
479
+ =========================================
480
+ BSD 3-Clause License
481
+
482
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
483
+ All rights reserved.
484
+
485
+ Redistribution and use in source and binary forms, with or without
486
+ modification, are permitted provided that the following conditions are met:
487
+
488
+ 1. Redistributions of source code must retain the above copyright notice, this
489
+ list of conditions and the following disclaimer.
490
+
491
+ 2. Redistributions in binary form must reproduce the above copyright notice,
492
+ this list of conditions and the following disclaimer in the documentation
493
+ and/or other materials provided with the distribution.
494
+
495
+ 3. Neither the name of the copyright holder nor the names of its
496
+ contributors may be used to endorse or promote products derived from
497
+ this software without specific prior written permission.
498
+
499
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
500
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
501
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
502
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
503
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
504
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
505
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
506
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
507
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
508
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
509
+ =========================================
510
+ END OF diff@7.0.0 AND INFORMATION
511
+
512
+ %% dotenv@16.4.5 NOTICES AND INFORMATION BEGIN HERE
513
+ =========================================
514
+ Copyright (c) 2015, Scott Motte
515
+ All rights reserved.
516
+
517
+ Redistribution and use in source and binary forms, with or without
518
+ modification, are permitted provided that the following conditions are met:
519
+
520
+ * Redistributions of source code must retain the above copyright notice, this
521
+ list of conditions and the following disclaimer.
522
+
523
+ * Redistributions in binary form must reproduce the above copyright notice,
524
+ this list of conditions and the following disclaimer in the documentation
525
+ and/or other materials provided with the distribution.
526
+
527
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
528
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
529
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
530
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
531
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
532
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
533
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
534
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
535
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
536
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
537
+ =========================================
538
+ END OF dotenv@16.4.5 AND INFORMATION
539
+
540
+ %% end-of-stream@1.4.4 NOTICES AND INFORMATION BEGIN HERE
541
+ =========================================
542
+ The MIT License (MIT)
543
+
544
+ Copyright (c) 2014 Mathias Buus
545
+
546
+ Permission is hereby granted, free of charge, to any person obtaining a copy
547
+ of this software and associated documentation files (the "Software"), to deal
548
+ in the Software without restriction, including without limitation the rights
549
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
550
+ copies of the Software, and to permit persons to whom the Software is
551
+ furnished to do so, subject to the following conditions:
552
+
553
+ The above copyright notice and this permission notice shall be included in
554
+ all copies or substantial portions of the Software.
555
+
556
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
557
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
558
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
559
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
560
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
561
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
562
+ THE SOFTWARE.
563
+ =========================================
564
+ END OF end-of-stream@1.4.4 AND INFORMATION
565
+
566
+ %% escape-string-regexp@2.0.0 NOTICES AND INFORMATION BEGIN HERE
567
+ =========================================
568
+ MIT License
569
+
570
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
571
+
572
+ 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:
573
+
574
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
575
+
576
+ 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.
577
+ =========================================
578
+ END OF escape-string-regexp@2.0.0 AND INFORMATION
579
+
580
+ %% extract-zip@2.0.1 NOTICES AND INFORMATION BEGIN HERE
581
+ =========================================
582
+ Copyright (c) 2014 Max Ogden and other contributors
583
+ All rights reserved.
584
+
585
+ Redistribution and use in source and binary forms, with or without
586
+ modification, are permitted provided that the following conditions are met:
587
+
588
+ * Redistributions of source code must retain the above copyright notice, this
589
+ list of conditions and the following disclaimer.
590
+
591
+ * Redistributions in binary form must reproduce the above copyright notice,
592
+ this list of conditions and the following disclaimer in the documentation
593
+ and/or other materials provided with the distribution.
594
+
595
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
596
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
597
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
598
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
599
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
600
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
601
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
602
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
603
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
604
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
605
+ =========================================
606
+ END OF extract-zip@2.0.1 AND INFORMATION
607
+
608
+ %% fd-slicer@1.1.0 NOTICES AND INFORMATION BEGIN HERE
609
+ =========================================
610
+ Copyright (c) 2014 Andrew Kelley
611
+
612
+ Permission is hereby granted, free of charge, to any person
613
+ obtaining a copy of this software and associated documentation files
614
+ (the "Software"), to deal in the Software without restriction,
615
+ including without limitation the rights to use, copy, modify, merge,
616
+ publish, distribute, sublicense, and/or sell copies of the Software,
617
+ and to permit persons to whom the Software is furnished to do so,
618
+ subject to the following conditions:
619
+
620
+ The above copyright notice and this permission notice shall be
621
+ included in all copies or substantial portions of the Software.
622
+
623
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
624
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
625
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
626
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
627
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
628
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
629
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
630
+ SOFTWARE.
631
+ =========================================
632
+ END OF fd-slicer@1.1.0 AND INFORMATION
633
+
634
+ %% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
635
+ =========================================
636
+ MIT License
637
+
638
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
639
+
640
+ 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:
641
+
642
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
643
+
644
+ 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.
645
+ =========================================
646
+ END OF get-stream@5.2.0 AND INFORMATION
647
+
648
+ %% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
649
+ =========================================
650
+ The ISC License
651
+
652
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
653
+
654
+ Permission to use, copy, modify, and/or distribute this software for any
655
+ purpose with or without fee is hereby granted, provided that the above
656
+ copyright notice and this permission notice appear in all copies.
657
+
658
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
659
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
660
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
661
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
662
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
663
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
664
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
665
+ =========================================
666
+ END OF graceful-fs@4.2.10 AND INFORMATION
667
+
668
+ %% https-proxy-agent@5.0.1 NOTICES AND INFORMATION BEGIN HERE
669
+ =========================================
670
+ https-proxy-agent
671
+ ================
672
+ ### An HTTP(s) proxy `http.Agent` implementation for HTTPS
673
+ [![Build Status](https://github.com/TooTallNate/node-https-proxy-agent/workflows/Node%20CI/badge.svg)](https://github.com/TooTallNate/node-https-proxy-agent/actions?workflow=Node+CI)
674
+
675
+ This module provides an `http.Agent` implementation that connects to a specified
676
+ HTTP or HTTPS proxy server, and can be used with the built-in `https` module.
677
+
678
+ Specifically, this `Agent` implementation connects to an intermediary "proxy"
679
+ server and issues the [CONNECT HTTP method][CONNECT], which tells the proxy to
680
+ open a direct TCP connection to the destination server.
681
+
682
+ Since this agent implements the CONNECT HTTP method, it also works with other
683
+ protocols that use this method when connecting over proxies (i.e. WebSockets).
684
+ See the "Examples" section below for more.
685
+
686
+
687
+ Installation
688
+ ------------
689
+
690
+ Install with `npm`:
691
+
692
+ ``` bash
693
+ $ npm install https-proxy-agent
694
+ ```
695
+
696
+
697
+ Examples
698
+ --------
699
+
700
+ #### `https` module example
701
+
702
+ ``` js
703
+ var url = require('url');
704
+ var https = require('https');
705
+ var HttpsProxyAgent = require('https-proxy-agent');
706
+
707
+ // HTTP/HTTPS proxy to connect to
708
+ var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
709
+ console.log('using proxy server %j', proxy);
710
+
711
+ // HTTPS endpoint for the proxy to connect to
712
+ var endpoint = process.argv[2] || 'https://graph.facebook.com/tootallnate';
713
+ console.log('attempting to GET %j', endpoint);
714
+ var options = url.parse(endpoint);
715
+
716
+ // create an instance of the `HttpsProxyAgent` class with the proxy server information
717
+ var agent = new HttpsProxyAgent(proxy);
718
+ options.agent = agent;
719
+
720
+ https.get(options, function (res) {
721
+ console.log('"response" event!', res.headers);
722
+ res.pipe(process.stdout);
723
+ });
724
+ ```
725
+
726
+ #### `ws` WebSocket connection example
727
+
728
+ ``` js
729
+ var url = require('url');
730
+ var WebSocket = require('ws');
731
+ var HttpsProxyAgent = require('https-proxy-agent');
732
+
733
+ // HTTP/HTTPS proxy to connect to
734
+ var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
735
+ console.log('using proxy server %j', proxy);
736
+
737
+ // WebSocket endpoint for the proxy to connect to
738
+ var endpoint = process.argv[2] || 'ws://echo.websocket.org';
739
+ var parsed = url.parse(endpoint);
740
+ console.log('attempting to connect to WebSocket %j', endpoint);
741
+
742
+ // create an instance of the `HttpsProxyAgent` class with the proxy server information
743
+ var options = url.parse(proxy);
744
+
745
+ var agent = new HttpsProxyAgent(options);
746
+
747
+ // finally, initiate the WebSocket connection
748
+ var socket = new WebSocket(endpoint, { agent: agent });
749
+
750
+ socket.on('open', function () {
751
+ console.log('"open" event!');
752
+ socket.send('hello world');
753
+ });
754
+
755
+ socket.on('message', function (data, flags) {
756
+ console.log('"message" event! %j %j', data, flags);
757
+ socket.close();
758
+ });
759
+ ```
760
+
761
+ API
762
+ ---
763
+
764
+ ### new HttpsProxyAgent(Object options)
765
+
766
+ The `HttpsProxyAgent` class implements an `http.Agent` subclass that connects
767
+ to the specified "HTTP(s) proxy server" in order to proxy HTTPS and/or WebSocket
768
+ requests. This is achieved by using the [HTTP `CONNECT` method][CONNECT].
769
+
770
+ The `options` argument may either be a string URI of the proxy server to use, or an
771
+ "options" object with more specific properties:
772
+
773
+ * `host` - String - Proxy host to connect to (may use `hostname` as well). Required.
774
+ * `port` - Number - Proxy port to connect to. Required.
775
+ * `protocol` - String - If `https:`, then use TLS to connect to the proxy.
776
+ * `headers` - Object - Additional HTTP headers to be sent on the HTTP CONNECT method.
777
+ * Any other options given are passed to the `net.connect()`/`tls.connect()` functions.
778
+
779
+
780
+ License
781
+ -------
782
+
783
+ (The MIT License)
784
+
785
+ Copyright (c) 2013 Nathan Rajlich &lt;nathan@tootallnate.net&gt;
786
+
787
+ Permission is hereby granted, free of charge, to any person obtaining
788
+ a copy of this software and associated documentation files (the
789
+ 'Software'), to deal in the Software without restriction, including
790
+ without limitation the rights to use, copy, modify, merge, publish,
791
+ distribute, sublicense, and/or sell copies of the Software, and to
792
+ permit persons to whom the Software is furnished to do so, subject to
793
+ the following conditions:
794
+
795
+ The above copyright notice and this permission notice shall be
796
+ included in all copies or substantial portions of the Software.
797
+
798
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
799
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
800
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
801
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
802
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
803
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
804
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
805
+
806
+ [CONNECT]: http://en.wikipedia.org/wiki/HTTP_tunnel#HTTP_CONNECT_Tunneling
807
+ =========================================
808
+ END OF https-proxy-agent@5.0.1 AND INFORMATION
809
+
810
+ %% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
811
+ =========================================
812
+ Copyright (C) 2011 by Beau Gunderson
813
+
814
+ Permission is hereby granted, free of charge, to any person obtaining a copy
815
+ of this software and associated documentation files (the "Software"), to deal
816
+ in the Software without restriction, including without limitation the rights
817
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
818
+ copies of the Software, and to permit persons to whom the Software is
819
+ furnished to do so, subject to the following conditions:
820
+
821
+ The above copyright notice and this permission notice shall be included in
822
+ all copies or substantial portions of the Software.
823
+
824
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
825
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
826
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
827
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
828
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
829
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
830
+ THE SOFTWARE.
831
+ =========================================
832
+ END OF ip-address@9.0.5 AND INFORMATION
833
+
834
+ %% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
835
+ =========================================
836
+ MIT License
837
+
838
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
839
+
840
+ 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:
841
+
842
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
843
+
844
+ 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.
845
+ =========================================
846
+ END OF is-docker@2.2.1 AND INFORMATION
847
+
848
+ %% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
849
+ =========================================
850
+ MIT License
851
+
852
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
853
+
854
+ 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:
855
+
856
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
857
+
858
+ 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.
859
+ =========================================
860
+ END OF is-wsl@2.2.0 AND INFORMATION
861
+
862
+ %% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
863
+ =========================================
864
+ Copyright (c) 2014, Eugene Ware
865
+ All rights reserved.
866
+
867
+ Redistribution and use in source and binary forms, with or without
868
+ modification, are permitted provided that the following conditions are met:
869
+
870
+ 1. Redistributions of source code must retain the above copyright
871
+ notice, this list of conditions and the following disclaimer.
872
+ 2. Redistributions in binary form must reproduce the above copyright
873
+ notice, this list of conditions and the following disclaimer in the
874
+ documentation and/or other materials provided with the distribution.
875
+ 3. Neither the name of Eugene Ware nor the names of its contributors
876
+ may be used to endorse or promote products derived from this software
877
+ without specific prior written permission.
878
+
879
+ THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
880
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
881
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
882
+ DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
883
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
884
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
885
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
886
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
887
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
888
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
889
+ =========================================
890
+ END OF jpeg-js@0.4.4 AND INFORMATION
891
+
892
+ %% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
893
+ =========================================
894
+ Licensing
895
+ ---------
896
+
897
+ This software is covered under the following copyright:
898
+
899
+ /*
900
+ * Copyright (c) 2003-2005 Tom Wu
901
+ * All Rights Reserved.
902
+ *
903
+ * Permission is hereby granted, free of charge, to any person obtaining
904
+ * a copy of this software and associated documentation files (the
905
+ * "Software"), to deal in the Software without restriction, including
906
+ * without limitation the rights to use, copy, modify, merge, publish,
907
+ * distribute, sublicense, and/or sell copies of the Software, and to
908
+ * permit persons to whom the Software is furnished to do so, subject to
909
+ * the following conditions:
910
+ *
911
+ * The above copyright notice and this permission notice shall be
912
+ * included in all copies or substantial portions of the Software.
913
+ *
914
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
915
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
916
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
917
+ *
918
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
919
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
920
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
921
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
922
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
923
+ *
924
+ * In addition, the following condition applies:
925
+ *
926
+ * All redistributions must retain an intact copy of this copyright notice
927
+ * and disclaimer.
928
+ */
929
+
930
+ Address all questions regarding this license to:
931
+
932
+ Tom Wu
933
+ tjw@cs.Stanford.EDU
934
+ =========================================
935
+ END OF jsbn@1.1.0 AND INFORMATION
936
+
937
+ %% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
938
+ =========================================
939
+ The MIT License (MIT)
940
+
941
+ Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
942
+
943
+ Permission is hereby granted, free of charge, to any person obtaining a copy
944
+ of this software and associated documentation files (the "Software"), to deal
945
+ in the Software without restriction, including without limitation the rights
946
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
947
+ copies of the Software, and to permit persons to whom the Software is
948
+ furnished to do so, subject to the following conditions:
949
+
950
+ The above copyright notice and this permission notice shall be included in
951
+ all copies or substantial portions of the Software.
952
+
953
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
954
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
955
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
956
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
957
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
958
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
959
+ THE SOFTWARE.
960
+ =========================================
961
+ END OF mime@3.0.0 AND INFORMATION
962
+
963
+ %% minimatch@3.1.2 NOTICES AND INFORMATION BEGIN HERE
964
+ =========================================
965
+ The ISC License
966
+
967
+ Copyright (c) Isaac Z. Schlueter and Contributors
968
+
969
+ Permission to use, copy, modify, and/or distribute this software for any
970
+ purpose with or without fee is hereby granted, provided that the above
971
+ copyright notice and this permission notice appear in all copies.
972
+
973
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
974
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
975
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
976
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
977
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
978
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
979
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
980
+ =========================================
981
+ END OF minimatch@3.1.2 AND INFORMATION
982
+
983
+ %% ms@2.1.2 NOTICES AND INFORMATION BEGIN HERE
984
+ =========================================
985
+ The MIT License (MIT)
986
+
987
+ Copyright (c) 2016 Zeit, Inc.
988
+
989
+ Permission is hereby granted, free of charge, to any person obtaining a copy
990
+ of this software and associated documentation files (the "Software"), to deal
991
+ in the Software without restriction, including without limitation the rights
992
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
993
+ copies of the Software, and to permit persons to whom the Software is
994
+ furnished to do so, subject to the following conditions:
995
+
996
+ The above copyright notice and this permission notice shall be included in all
997
+ copies or substantial portions of the Software.
998
+
999
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1000
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1001
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1002
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1003
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1004
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1005
+ SOFTWARE.
1006
+ =========================================
1007
+ END OF ms@2.1.2 AND INFORMATION
1008
+
1009
+ %% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
1010
+ =========================================
1011
+ The ISC License
1012
+
1013
+ Copyright (c) Isaac Z. Schlueter and Contributors
1014
+
1015
+ Permission to use, copy, modify, and/or distribute this software for any
1016
+ purpose with or without fee is hereby granted, provided that the above
1017
+ copyright notice and this permission notice appear in all copies.
1018
+
1019
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1020
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1021
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1022
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1023
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1024
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1025
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1026
+ =========================================
1027
+ END OF once@1.4.0 AND INFORMATION
1028
+
1029
+ %% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
1030
+ =========================================
1031
+ MIT License
1032
+
1033
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1034
+
1035
+ 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:
1036
+
1037
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1038
+
1039
+ 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.
1040
+ =========================================
1041
+ END OF open@8.4.0 AND INFORMATION
1042
+
1043
+ %% pend@1.2.0 NOTICES AND INFORMATION BEGIN HERE
1044
+ =========================================
1045
+ The MIT License (Expat)
1046
+
1047
+ Copyright (c) 2014 Andrew Kelley
1048
+
1049
+ Permission is hereby granted, free of charge, to any person
1050
+ obtaining a copy of this software and associated documentation files
1051
+ (the "Software"), to deal in the Software without restriction,
1052
+ including without limitation the rights to use, copy, modify, merge,
1053
+ publish, distribute, sublicense, and/or sell copies of the Software,
1054
+ and to permit persons to whom the Software is furnished to do so,
1055
+ subject to the following conditions:
1056
+
1057
+ The above copyright notice and this permission notice shall be
1058
+ included in all copies or substantial portions of the Software.
1059
+
1060
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1061
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1062
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1063
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1064
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1065
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1066
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1067
+ SOFTWARE.
1068
+ =========================================
1069
+ END OF pend@1.2.0 AND INFORMATION
1070
+
1071
+ %% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1072
+ =========================================
1073
+ pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
1074
+ pngjs derived work Copyright (c) 2012 Kuba Niegowski
1075
+
1076
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1077
+ of this software and associated documentation files (the "Software"), to deal
1078
+ in the Software without restriction, including without limitation the rights
1079
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1080
+ copies of the Software, and to permit persons to whom the Software is
1081
+ furnished to do so, subject to the following conditions:
1082
+
1083
+ The above copyright notice and this permission notice shall be included in
1084
+ all copies or substantial portions of the Software.
1085
+
1086
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1087
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1088
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1089
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1090
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1091
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1092
+ THE SOFTWARE.
1093
+ =========================================
1094
+ END OF pngjs@6.0.0 AND INFORMATION
1095
+
1096
+ %% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
1097
+ =========================================
1098
+ (The MIT License)
1099
+
1100
+ Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
1101
+
1102
+ Permission is hereby granted, free of charge, to any person obtaining
1103
+ a copy of this software and associated documentation files (the
1104
+ 'Software'), to deal in the Software without restriction, including
1105
+ without limitation the rights to use, copy, modify, merge, publish,
1106
+ distribute, sublicense, and/or sell copies of the Software, and to
1107
+ permit persons to whom the Software is furnished to do so, subject to
1108
+ the following conditions:
1109
+
1110
+ The above copyright notice and this permission notice shall be
1111
+ included in all copies or substantial portions of the Software.
1112
+
1113
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1114
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1115
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1116
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1117
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1118
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1119
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1120
+ =========================================
1121
+ END OF progress@2.0.3 AND INFORMATION
1122
+
1123
+ %% proxy-from-env@1.1.0 NOTICES AND INFORMATION BEGIN HERE
1124
+ =========================================
1125
+ The MIT License
1126
+
1127
+ Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
1128
+
1129
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1130
+ this software and associated documentation files (the "Software"), to deal in
1131
+ the Software without restriction, including without limitation the rights to
1132
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1133
+ of the Software, and to permit persons to whom the Software is furnished to do
1134
+ so, subject to the following conditions:
1135
+
1136
+ The above copyright notice and this permission notice shall be included in all
1137
+ copies or substantial portions of the Software.
1138
+
1139
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1140
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1141
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1142
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1143
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1144
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1145
+ =========================================
1146
+ END OF proxy-from-env@1.1.0 AND INFORMATION
1147
+
1148
+ %% pump@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1149
+ =========================================
1150
+ The MIT License (MIT)
1151
+
1152
+ Copyright (c) 2014 Mathias Buus
1153
+
1154
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1155
+ of this software and associated documentation files (the "Software"), to deal
1156
+ in the Software without restriction, including without limitation the rights
1157
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1158
+ copies of the Software, and to permit persons to whom the Software is
1159
+ furnished to do so, subject to the following conditions:
1160
+
1161
+ The above copyright notice and this permission notice shall be included in
1162
+ all copies or substantial portions of the Software.
1163
+
1164
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1165
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1166
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1167
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1168
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1169
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1170
+ THE SOFTWARE.
1171
+ =========================================
1172
+ END OF pump@3.0.0 AND INFORMATION
1173
+
1174
+ %% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
1175
+ =========================================
1176
+ Copyright (c) 2011:
1177
+ Tim Koschützki (tim@debuggable.com)
1178
+ Felix Geisendörfer (felix@debuggable.com)
1179
+
1180
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1181
+ of this software and associated documentation files (the "Software"), to deal
1182
+ in the Software without restriction, including without limitation the rights
1183
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1184
+ copies of the Software, and to permit persons to whom the Software is
1185
+ furnished to do so, subject to the following conditions:
1186
+
1187
+ The above copyright notice and this permission notice shall be included in
1188
+ all copies or substantial portions of the Software.
1189
+
1190
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1191
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1192
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1193
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1194
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1195
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1196
+ THE SOFTWARE.
1197
+ =========================================
1198
+ END OF retry@0.12.0 AND INFORMATION
1199
+
1200
+ %% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
1201
+ =========================================
1202
+ The ISC License
1203
+
1204
+ Copyright (c) 2015, Contributors
1205
+
1206
+ Permission to use, copy, modify, and/or distribute this software
1207
+ for any purpose with or without fee is hereby granted, provided
1208
+ that the above copyright notice and this permission notice
1209
+ appear in all copies.
1210
+
1211
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1212
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
1213
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
1214
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
1215
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1216
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1217
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1218
+ =========================================
1219
+ END OF signal-exit@3.0.7 AND INFORMATION
1220
+
1221
+ %% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
1222
+ =========================================
1223
+ The MIT License (MIT)
1224
+
1225
+ Copyright (c) 2013-2017 Josh Glazebrook
1226
+
1227
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1228
+ this software and associated documentation files (the "Software"), to deal in
1229
+ the Software without restriction, including without limitation the rights to
1230
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1231
+ the Software, and to permit persons to whom the Software is furnished to do so,
1232
+ subject to the following conditions:
1233
+
1234
+ The above copyright notice and this permission notice shall be included in all
1235
+ copies or substantial portions of the Software.
1236
+
1237
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1238
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1239
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1240
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1241
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1242
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1243
+ =========================================
1244
+ END OF smart-buffer@4.2.0 AND INFORMATION
1245
+
1246
+ %% socks-proxy-agent@6.1.1 NOTICES AND INFORMATION BEGIN HERE
1247
+ =========================================
1248
+ socks-proxy-agent
1249
+ ================
1250
+ ### A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS
1251
+ [![Build Status](https://github.com/TooTallNate/node-socks-proxy-agent/workflows/Node%20CI/badge.svg)](https://github.com/TooTallNate/node-socks-proxy-agent/actions?workflow=Node+CI)
1252
+
1253
+ This module provides an `http.Agent` implementation that connects to a
1254
+ specified SOCKS proxy server, and can be used with the built-in `http`
1255
+ and `https` modules.
1256
+
1257
+ It can also be used in conjunction with the `ws` module to establish a WebSocket
1258
+ connection over a SOCKS proxy. See the "Examples" section below.
1259
+
1260
+ Installation
1261
+ ------------
1262
+
1263
+ Install with `npm`:
1264
+
1265
+ ``` bash
1266
+ $ npm install socks-proxy-agent
1267
+ ```
1268
+
1269
+
1270
+ Examples
1271
+ --------
1272
+
1273
+ #### TypeScript example
1274
+
1275
+ ```ts
1276
+ import https from 'https';
1277
+ import { SocksProxyAgent } from 'socks-proxy-agent';
1278
+
1279
+ const info = {
1280
+ host: 'br41.nordvpn.com',
1281
+ userId: 'your-name@gmail.com',
1282
+ password: 'abcdef12345124'
1283
+ };
1284
+ const agent = new SocksProxyAgent(info);
1285
+
1286
+ https.get('https://jsonip.org', { agent }, (res) => {
1287
+ console.log(res.headers);
1288
+ res.pipe(process.stdout);
1289
+ });
1290
+ ```
1291
+
1292
+ #### `http` module example
1293
+
1294
+ ```js
1295
+ var url = require('url');
1296
+ var http = require('http');
1297
+ var SocksProxyAgent = require('socks-proxy-agent');
1298
+
1299
+ // SOCKS proxy to connect to
1300
+ var proxy = process.env.socks_proxy || 'socks://127.0.0.1:1080';
1301
+ console.log('using proxy server %j', proxy);
1302
+
1303
+ // HTTP endpoint for the proxy to connect to
1304
+ var endpoint = process.argv[2] || 'http://nodejs.org/api/';
1305
+ console.log('attempting to GET %j', endpoint);
1306
+ var opts = url.parse(endpoint);
1307
+
1308
+ // create an instance of the `SocksProxyAgent` class with the proxy server information
1309
+ var agent = new SocksProxyAgent(proxy);
1310
+ opts.agent = agent;
1311
+
1312
+ http.get(opts, function (res) {
1313
+ console.log('"response" event!', res.headers);
1314
+ res.pipe(process.stdout);
1315
+ });
1316
+ ```
1317
+
1318
+ #### `https` module example
1319
+
1320
+ ```js
1321
+ var url = require('url');
1322
+ var https = require('https');
1323
+ var SocksProxyAgent = require('socks-proxy-agent');
1324
+
1325
+ // SOCKS proxy to connect to
1326
+ var proxy = process.env.socks_proxy || 'socks://127.0.0.1:1080';
1327
+ console.log('using proxy server %j', proxy);
1328
+
1329
+ // HTTP endpoint for the proxy to connect to
1330
+ var endpoint = process.argv[2] || 'https://encrypted.google.com/';
1331
+ console.log('attempting to GET %j', endpoint);
1332
+ var opts = url.parse(endpoint);
1333
+
1334
+ // create an instance of the `SocksProxyAgent` class with the proxy server information
1335
+ var agent = new SocksProxyAgent(proxy);
1336
+ opts.agent = agent;
1337
+
1338
+ https.get(opts, function (res) {
1339
+ console.log('"response" event!', res.headers);
1340
+ res.pipe(process.stdout);
1341
+ });
1342
+ ```
1343
+
1344
+ #### `ws` WebSocket connection example
1345
+
1346
+ ``` js
1347
+ var WebSocket = require('ws');
1348
+ var SocksProxyAgent = require('socks-proxy-agent');
1349
+
1350
+ // SOCKS proxy to connect to
1351
+ var proxy = process.env.socks_proxy || 'socks://127.0.0.1:1080';
1352
+ console.log('using proxy server %j', proxy);
1353
+
1354
+ // WebSocket endpoint for the proxy to connect to
1355
+ var endpoint = process.argv[2] || 'ws://echo.websocket.org';
1356
+ console.log('attempting to connect to WebSocket %j', endpoint);
1357
+
1358
+ // create an instance of the `SocksProxyAgent` class with the proxy server information
1359
+ var agent = new SocksProxyAgent(proxy);
1360
+
1361
+ // initiate the WebSocket connection
1362
+ var socket = new WebSocket(endpoint, { agent: agent });
1363
+
1364
+ socket.on('open', function () {
1365
+ console.log('"open" event!');
1366
+ socket.send('hello world');
1367
+ });
1368
+
1369
+ socket.on('message', function (data, flags) {
1370
+ console.log('"message" event! %j %j', data, flags);
1371
+ socket.close();
1372
+ });
1373
+ ```
1374
+
1375
+ License
1376
+ -------
1377
+
1378
+ (The MIT License)
1379
+
1380
+ Copyright (c) 2013 Nathan Rajlich &lt;nathan@tootallnate.net&gt;
1381
+
1382
+ Permission is hereby granted, free of charge, to any person obtaining
1383
+ a copy of this software and associated documentation files (the
1384
+ 'Software'), to deal in the Software without restriction, including
1385
+ without limitation the rights to use, copy, modify, merge, publish,
1386
+ distribute, sublicense, and/or sell copies of the Software, and to
1387
+ permit persons to whom the Software is furnished to do so, subject to
1388
+ the following conditions:
1389
+
1390
+ The above copyright notice and this permission notice shall be
1391
+ included in all copies or substantial portions of the Software.
1392
+
1393
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1394
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1395
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1396
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1397
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1398
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1399
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1400
+ =========================================
1401
+ END OF socks-proxy-agent@6.1.1 AND INFORMATION
1402
+
1403
+ %% socks@2.8.3 NOTICES AND INFORMATION BEGIN HERE
1404
+ =========================================
1405
+ The MIT License (MIT)
1406
+
1407
+ Copyright (c) 2013 Josh Glazebrook
1408
+
1409
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1410
+ this software and associated documentation files (the "Software"), to deal in
1411
+ the Software without restriction, including without limitation the rights to
1412
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1413
+ the Software, and to permit persons to whom the Software is furnished to do so,
1414
+ subject to the following conditions:
1415
+
1416
+ The above copyright notice and this permission notice shall be included in all
1417
+ copies or substantial portions of the Software.
1418
+
1419
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1420
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1421
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1422
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1423
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1424
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1425
+ =========================================
1426
+ END OF socks@2.8.3 AND INFORMATION
1427
+
1428
+ %% sprintf-js@1.1.3 NOTICES AND INFORMATION BEGIN HERE
1429
+ =========================================
1430
+ Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>
1431
+ All rights reserved.
1432
+
1433
+ Redistribution and use in source and binary forms, with or without
1434
+ modification, are permitted provided that the following conditions are met:
1435
+ * Redistributions of source code must retain the above copyright
1436
+ notice, this list of conditions and the following disclaimer.
1437
+ * Redistributions in binary form must reproduce the above copyright
1438
+ notice, this list of conditions and the following disclaimer in the
1439
+ documentation and/or other materials provided with the distribution.
1440
+ * Neither the name of this software nor the names of its contributors may be
1441
+ used to endorse or promote products derived from this software without
1442
+ specific prior written permission.
1443
+
1444
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1445
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1446
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1447
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
1448
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1449
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1450
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1451
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1452
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1453
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1454
+ =========================================
1455
+ END OF sprintf-js@1.1.3 AND INFORMATION
1456
+
1457
+ %% stack-utils@2.0.5 NOTICES AND INFORMATION BEGIN HERE
1458
+ =========================================
1459
+ The MIT License (MIT)
1460
+
1461
+ Copyright (c) Isaac Z. Schlueter <i@izs.me>, James Talmage <james@talmage.io> (github.com/jamestalmage), and Contributors
1462
+
1463
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1464
+ of this software and associated documentation files (the "Software"), to deal
1465
+ in the Software without restriction, including without limitation the rights
1466
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1467
+ copies of the Software, and to permit persons to whom the Software is
1468
+ furnished to do so, subject to the following conditions:
1469
+
1470
+ The above copyright notice and this permission notice shall be included in
1471
+ all copies or substantial portions of the Software.
1472
+
1473
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1474
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1475
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1476
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1477
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1478
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1479
+ THE SOFTWARE.
1480
+ =========================================
1481
+ END OF stack-utils@2.0.5 AND INFORMATION
1482
+
1483
+ %% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
1484
+ =========================================
1485
+ The ISC License
1486
+
1487
+ Copyright (c) Isaac Z. Schlueter and Contributors
1488
+
1489
+ Permission to use, copy, modify, and/or distribute this software for any
1490
+ purpose with or without fee is hereby granted, provided that the above
1491
+ copyright notice and this permission notice appear in all copies.
1492
+
1493
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1494
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1495
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1496
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1497
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1498
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1499
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1500
+ =========================================
1501
+ END OF wrappy@1.0.2 AND INFORMATION
1502
+
1503
+ %% ws@8.17.1 NOTICES AND INFORMATION BEGIN HERE
1504
+ =========================================
1505
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
1506
+ Copyright (c) 2013 Arnout Kazemier and contributors
1507
+ Copyright (c) 2016 Luigi Pinca and contributors
1508
+
1509
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1510
+ this software and associated documentation files (the "Software"), to deal in
1511
+ the Software without restriction, including without limitation the rights to
1512
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1513
+ the Software, and to permit persons to whom the Software is furnished to do so,
1514
+ subject to the following conditions:
1515
+
1516
+ The above copyright notice and this permission notice shall be included in all
1517
+ copies or substantial portions of the Software.
1518
+
1519
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1520
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1521
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1522
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1523
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1524
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1525
+ =========================================
1526
+ END OF ws@8.17.1 AND INFORMATION
1527
+
1528
+ %% yaml@2.6.0 NOTICES AND INFORMATION BEGIN HERE
1529
+ =========================================
1530
+ Copyright Eemeli Aro <eemeli@gmail.com>
1531
+
1532
+ Permission to use, copy, modify, and/or distribute this software for any purpose
1533
+ with or without fee is hereby granted, provided that the above copyright notice
1534
+ and this permission notice appear in all copies.
1535
+
1536
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1537
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1538
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1539
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
1540
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1541
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
1542
+ THIS SOFTWARE.
1543
+ =========================================
1544
+ END OF yaml@2.6.0 AND INFORMATION
1545
+
1546
+ %% yauzl@2.10.0 NOTICES AND INFORMATION BEGIN HERE
1547
+ =========================================
1548
+ The MIT License (MIT)
1549
+
1550
+ Copyright (c) 2014 Josh Wolfe
1551
+
1552
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1553
+ of this software and associated documentation files (the "Software"), to deal
1554
+ in the Software without restriction, including without limitation the rights
1555
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1556
+ copies of the Software, and to permit persons to whom the Software is
1557
+ furnished to do so, subject to the following conditions:
1558
+
1559
+ The above copyright notice and this permission notice shall be included in all
1560
+ copies or substantial portions of the Software.
1561
+
1562
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1563
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1564
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1565
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1566
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1567
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1568
+ SOFTWARE.
1569
+ =========================================
1570
+ END OF yauzl@2.10.0 AND INFORMATION
1571
+
1572
+ %% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
1573
+ =========================================
1574
+ The MIT License (MIT)
1575
+
1576
+ Copyright (c) 2014 Josh Wolfe
1577
+
1578
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1579
+ of this software and associated documentation files (the "Software"), to deal
1580
+ in the Software without restriction, including without limitation the rights
1581
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1582
+ copies of the Software, and to permit persons to whom the Software is
1583
+ furnished to do so, subject to the following conditions:
1584
+
1585
+ The above copyright notice and this permission notice shall be included in all
1586
+ copies or substantial portions of the Software.
1587
+
1588
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1589
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1590
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1591
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1592
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1593
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1594
+ SOFTWARE.
1595
+ =========================================
1596
+ END OF yazl@2.5.1 AND INFORMATION
1597
+
1598
+ SUMMARY BEGIN HERE
1599
+ =========================================
1600
+ Total Packages: 48
1601
+ =========================================
1602
+ END OF SUMMARY