venetian 0.1.0-aarch64-linux

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 (128) hide show
  1. checksums.yaml +7 -0
  2. data/CODE_OF_CONDUCT.md +10 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +52 -0
  5. data/Rakefile +14 -0
  6. data/exe/aarch64-linux/LICENSE +2946 -0
  7. data/exe/aarch64-linux/node +0 -0
  8. data/exe/aarch64-linux/package/LICENSE +202 -0
  9. data/exe/aarch64-linux/package/NOTICE +5 -0
  10. data/exe/aarch64-linux/package/README.md +3 -0
  11. data/exe/aarch64-linux/package/ThirdPartyNotices.txt +13 -0
  12. data/exe/aarch64-linux/package/api.json +1 -0
  13. data/exe/aarch64-linux/package/bin/install_media_pack.ps1 +5 -0
  14. data/exe/aarch64-linux/package/bin/install_webkit_wsl.ps1 +33 -0
  15. data/exe/aarch64-linux/package/bin/reinstall_chrome_beta_linux.sh +42 -0
  16. data/exe/aarch64-linux/package/bin/reinstall_chrome_beta_mac.sh +13 -0
  17. data/exe/aarch64-linux/package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  18. data/exe/aarch64-linux/package/bin/reinstall_chrome_stable_linux.sh +42 -0
  19. data/exe/aarch64-linux/package/bin/reinstall_chrome_stable_mac.sh +12 -0
  20. data/exe/aarch64-linux/package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  21. data/exe/aarch64-linux/package/bin/reinstall_msedge_beta_linux.sh +48 -0
  22. data/exe/aarch64-linux/package/bin/reinstall_msedge_beta_mac.sh +11 -0
  23. data/exe/aarch64-linux/package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  24. data/exe/aarch64-linux/package/bin/reinstall_msedge_dev_linux.sh +48 -0
  25. data/exe/aarch64-linux/package/bin/reinstall_msedge_dev_mac.sh +11 -0
  26. data/exe/aarch64-linux/package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  27. data/exe/aarch64-linux/package/bin/reinstall_msedge_stable_linux.sh +48 -0
  28. data/exe/aarch64-linux/package/bin/reinstall_msedge_stable_mac.sh +11 -0
  29. data/exe/aarch64-linux/package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  30. data/exe/aarch64-linux/package/browsers.json +81 -0
  31. data/exe/aarch64-linux/package/cli.js +21 -0
  32. data/exe/aarch64-linux/package/index.d.ts +17 -0
  33. data/exe/aarch64-linux/package/index.js +32 -0
  34. data/exe/aarch64-linux/package/index.mjs +28 -0
  35. data/exe/aarch64-linux/package/lib/bootstrap.js +77 -0
  36. data/exe/aarch64-linux/package/lib/coreBundle.js +69799 -0
  37. data/exe/aarch64-linux/package/lib/entry/cliDaemon.js +5 -0
  38. data/exe/aarch64-linux/package/lib/entry/dashboardApp.js +3 -0
  39. data/exe/aarch64-linux/package/lib/entry/mcp.js +10 -0
  40. data/exe/aarch64-linux/package/lib/entry/oopBrowserDownload.js +3 -0
  41. data/exe/aarch64-linux/package/lib/package.js +50 -0
  42. data/exe/aarch64-linux/package/lib/server/chromium/appIcon.png +0 -0
  43. data/exe/aarch64-linux/package/lib/server/deviceDescriptorsSource.json +1779 -0
  44. data/exe/aarch64-linux/package/lib/server/electron/loader.js +115 -0
  45. data/exe/aarch64-linux/package/lib/serverRegistry.js +7343 -0
  46. data/exe/aarch64-linux/package/lib/serverRegistry.js.LICENSE +354 -0
  47. data/exe/aarch64-linux/package/lib/tools/cli-client/channelSessions.js +141 -0
  48. data/exe/aarch64-linux/package/lib/tools/cli-client/cli.js +6 -0
  49. data/exe/aarch64-linux/package/lib/tools/cli-client/help.json +679 -0
  50. data/exe/aarch64-linux/package/lib/tools/cli-client/minimist.js +128 -0
  51. data/exe/aarch64-linux/package/lib/tools/cli-client/output.js +343 -0
  52. data/exe/aarch64-linux/package/lib/tools/cli-client/program.js +380 -0
  53. data/exe/aarch64-linux/package/lib/tools/cli-client/registry.js +176 -0
  54. data/exe/aarch64-linux/package/lib/tools/cli-client/session.js +265 -0
  55. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/SKILL.md +388 -0
  56. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  57. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  58. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  59. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/running-code.md +241 -0
  60. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/session-management.md +225 -0
  61. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/spec-driven-testing.md +305 -0
  62. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  63. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/test-generation.md +134 -0
  64. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/tracing.md +139 -0
  65. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  66. data/exe/aarch64-linux/package/lib/tools/dashboard/appIcon.png +0 -0
  67. data/exe/aarch64-linux/package/lib/tools/trace/SKILL.md +171 -0
  68. data/exe/aarch64-linux/package/lib/tools/utils/extension.js +78 -0
  69. data/exe/aarch64-linux/package/lib/tools/utils/socketConnection.js +108 -0
  70. data/exe/aarch64-linux/package/lib/utilsBundle.js +85418 -0
  71. data/exe/aarch64-linux/package/lib/utilsBundle.js.LICENSE +2002 -0
  72. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  73. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  74. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  75. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  76. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/index-BY2S1tHT.css +1 -0
  77. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/index-DpEq2p62.js +52 -0
  78. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  79. data/exe/aarch64-linux/package/lib/vite/dashboard/index.html +29 -0
  80. data/exe/aarch64-linux/package/lib/vite/dashboard/playwright-logo.svg +24 -0
  81. data/exe/aarch64-linux/package/lib/vite/htmlReport/index.html +16 -0
  82. data/exe/aarch64-linux/package/lib/vite/htmlReport/report.css +1 -0
  83. data/exe/aarch64-linux/package/lib/vite/htmlReport/report.js +72 -0
  84. data/exe/aarch64-linux/package/lib/vite/recorder/assets/codeMirrorModule-BHYmBp6h.js +32 -0
  85. data/exe/aarch64-linux/package/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
  86. data/exe/aarch64-linux/package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  87. data/exe/aarch64-linux/package/lib/vite/recorder/assets/index-4ZiSSCmn.css +1 -0
  88. data/exe/aarch64-linux/package/lib/vite/recorder/assets/index-DA10QRaq.js +193 -0
  89. data/exe/aarch64-linux/package/lib/vite/recorder/index.html +29 -0
  90. data/exe/aarch64-linux/package/lib/vite/recorder/playwright-logo.svg +9 -0
  91. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/codeMirrorModule-Ds_H_9Yq.js +32 -0
  92. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/defaultSettingsView-D31xz8zv.js +262 -0
  93. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/urlMatch-BYQrIQwR.js +1 -0
  94. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  95. data/exe/aarch64-linux/package/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  96. data/exe/aarch64-linux/package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  97. data/exe/aarch64-linux/package/lib/vite/traceViewer/defaultSettingsView.BDKsFU3c.css +1 -0
  98. data/exe/aarch64-linux/package/lib/vite/traceViewer/index.BCnMPevh.js +2 -0
  99. data/exe/aarch64-linux/package/lib/vite/traceViewer/index.CzXZzn5A.css +1 -0
  100. data/exe/aarch64-linux/package/lib/vite/traceViewer/index.html +44 -0
  101. data/exe/aarch64-linux/package/lib/vite/traceViewer/manifest.webmanifest +16 -0
  102. data/exe/aarch64-linux/package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  103. data/exe/aarch64-linux/package/lib/vite/traceViewer/snapshot.html +10 -0
  104. data/exe/aarch64-linux/package/lib/vite/traceViewer/snapshot.v8KI4P3m.js +2 -0
  105. data/exe/aarch64-linux/package/lib/vite/traceViewer/sw.bundle.js +5 -0
  106. data/exe/aarch64-linux/package/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  107. data/exe/aarch64-linux/package/lib/vite/traceViewer/uiMode.C2Efnu2P.js +6 -0
  108. data/exe/aarch64-linux/package/lib/vite/traceViewer/uiMode.html +18 -0
  109. data/exe/aarch64-linux/package/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  110. data/exe/aarch64-linux/package/lib/xdg-open +1066 -0
  111. data/exe/aarch64-linux/package/package.json +34 -0
  112. data/exe/aarch64-linux/package/protocol.yml +4884 -0
  113. data/exe/aarch64-linux/package/types/protocol.d.ts +24565 -0
  114. data/exe/aarch64-linux/package/types/structs.d.ts +45 -0
  115. data/exe/aarch64-linux/package/types/types.d.ts +24518 -0
  116. data/exe/playwright +11 -0
  117. data/lib/tasks/venetian.rake +11 -0
  118. data/lib/venetian/browser_installer.rb +26 -0
  119. data/lib/venetian/browser_runner_extensions.rb +17 -0
  120. data/lib/venetian/executable.rb +154 -0
  121. data/lib/venetian/gemspec.rb +7 -0
  122. data/lib/venetian/playwright_create_extensions.rb +11 -0
  123. data/lib/venetian/railtie.rb +9 -0
  124. data/lib/venetian/tasks.rb +3 -0
  125. data/lib/venetian/upstream.rb +45 -0
  126. data/lib/venetian/version.rb +5 -0
  127. data/lib/venetian.rb +29 -0
  128. metadata +185 -0
@@ -0,0 +1,2002 @@
1
+ packages/playwright-core/lib/utilsBundle.js
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ The following npm packages are inlined into this bundle.
6
+
7
+ - @hono/node-server@1.19.11 (https://github.com/honojs/node-server)
8
+ - @modelcontextprotocol/sdk@1.29.0 (https://github.com/modelcontextprotocol/typescript-sdk)
9
+ - agent-base@7.1.4 (https://github.com/TooTallNate/proxy-agents)
10
+ - ajv-formats@3.0.1 (https://github.com/ajv-validator/ajv-formats)
11
+ - ajv@8.18.0 (https://github.com/ajv-validator/ajv)
12
+ - ansi-colors@4.1.3 (https://github.com/doowb/ansi-colors)
13
+ - anymatch@3.1.3 (https://github.com/micromatch/anymatch)
14
+ - balanced-match@1.0.2 (https://github.com/juliangruber/balanced-match)
15
+ - binary-extensions@2.3.0 (https://github.com/sindresorhus/binary-extensions)
16
+ - brace-expansion@1.1.12 (https://github.com/juliangruber/brace-expansion)
17
+ - braces@3.0.3 (https://github.com/micromatch/braces)
18
+ - buffer-crc32@0.2.13 (https://github.com/brianloveswords/buffer-crc32)
19
+ - buffer-from@1.1.2 (https://github.com/LinusU/buffer-from)
20
+ - bytes@3.1.2 (https://github.com/visionmedia/bytes.js)
21
+ - chokidar@3.6.0 (https://github.com/paulmillr/chokidar)
22
+ - colors@1.4.0 (https://github.com/Marak/colors.js)
23
+ - commander@13.1.0 (https://github.com/tj/commander.js)
24
+ - concat-map@0.0.1 (https://github.com/substack/node-concat-map)
25
+ - content-type@1.0.5 (https://github.com/jshttp/content-type)
26
+ - cross-spawn@7.0.6 (https://github.com/moxystudio/node-cross-spawn)
27
+ - debug@4.4.3 (https://github.com/debug-js/debug)
28
+ - define-lazy-prop@2.0.0 (https://github.com/sindresorhus/define-lazy-prop)
29
+ - diff@8.0.4 (https://github.com/kpdecker/jsdiff)
30
+ - dotenv@16.6.1 (https://github.com/motdotla/dotenv)
31
+ - end-of-stream@1.4.5 (https://github.com/mafintosh/end-of-stream)
32
+ - enquirer@2.3.6 (https://github.com/enquirer/enquirer)
33
+ - eventsource-parser@3.0.6 (https://github.com/rexxars/eventsource-parser)
34
+ - eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
35
+ - fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
36
+ - fast-uri@3.1.0 (https://github.com/fastify/fast-uri)
37
+ - fill-range@7.1.1 (https://github.com/jonschlinkert/fill-range)
38
+ - get-east-asian-width@1.3.0 (https://github.com/sindresorhus/get-east-asian-width)
39
+ - get-stream@5.2.0 (https://github.com/sindresorhus/get-stream)
40
+ - glob-parent@5.1.2 (https://github.com/gulpjs/glob-parent)
41
+ - graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
42
+ - has-flag@4.0.0 (https://github.com/sindresorhus/has-flag)
43
+ - https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
44
+ - ini@6.0.0 (https://github.com/npm/ini)
45
+ - ip-address@10.2.0 (https://github.com/beaugunderson/ip-address)
46
+ - is-binary-path@2.1.0 (https://github.com/sindresorhus/is-binary-path)
47
+ - is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
48
+ - is-extglob@2.1.1 (https://github.com/jonschlinkert/is-extglob)
49
+ - is-glob@4.0.3 (https://github.com/micromatch/is-glob)
50
+ - is-number@7.0.0 (https://github.com/jonschlinkert/is-number)
51
+ - is-wsl@2.2.0 (https://github.com/sindresorhus/is-wsl)
52
+ - isexe@2.0.0 (https://github.com/isaacs/isexe)
53
+ - jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
54
+ - json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
55
+ - json5@2.2.3 (https://github.com/json5/json5)
56
+ - mime@3.0.0 (https://github.com/broofa/mime)
57
+ - minimatch@3.1.5 (https://github.com/isaacs/minimatch)
58
+ - ms@2.1.3 (https://github.com/vercel/ms)
59
+ - normalize-path@3.0.0 (https://github.com/jonschlinkert/normalize-path)
60
+ - once@1.4.0 (https://github.com/isaacs/once)
61
+ - open@8.4.0 (https://github.com/sindresorhus/open)
62
+ - path-key@3.1.1 (https://github.com/sindresorhus/path-key)
63
+ - picomatch@2.3.2 (https://github.com/micromatch/picomatch)
64
+ - pkce-challenge@5.0.0 (https://github.com/crouchcd/pkce-challenge)
65
+ - pngjs@6.0.0 (https://github.com/lukeapage/pngjs)
66
+ - progress@2.0.3 (https://github.com/visionmedia/node-progress)
67
+ - proxy-from-env@2.0.0 (https://github.com/Rob--W/proxy-from-env)
68
+ - pump@3.0.3 (https://github.com/mafintosh/pump)
69
+ - readdirp@3.6.0 (https://github.com/paulmillr/readdirp)
70
+ - retry@0.12.0 (https://github.com/tim-kos/node-retry)
71
+ - shebang-command@2.0.0 (https://github.com/kevva/shebang-command)
72
+ - shebang-regex@3.0.0 (https://github.com/sindresorhus/shebang-regex)
73
+ - signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
74
+ - smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
75
+ - socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
76
+ - socks@2.8.7 (https://github.com/JoshGlazebrook/socks)
77
+ - source-map-support@0.5.21 (https://github.com/evanw/node-source-map-support)
78
+ - source-map@0.6.1 (https://github.com/mozilla/source-map)
79
+ - supports-color@8.1.1 (https://github.com/chalk/supports-color)
80
+ - to-regex-range@5.0.1 (https://github.com/micromatch/to-regex-range)
81
+ - which@2.0.2 (https://github.com/isaacs/node-which)
82
+ - wrappy@1.0.2 (https://github.com/npm/wrappy)
83
+ - ws@8.17.1 (https://github.com/websockets/ws)
84
+ - yaml@2.8.3 (https://github.com/eemeli/yaml)
85
+ - yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
86
+ - zod-to-json-schema@3.25.1 (https://github.com/StefanTerdell/zod-to-json-schema)
87
+ - zod@4.3.6 (https://github.com/colinhacks/zod)
88
+
89
+ %% @hono/node-server@1.19.11 NOTICES AND INFORMATION BEGIN HERE
90
+ =========================================
91
+ MIT License
92
+
93
+ Copyright (c) 2022 - present, Yusuke Wada and Hono contributors
94
+
95
+ Permission is hereby granted, free of charge, to any person obtaining a copy
96
+ of this software and associated documentation files (the "Software"), to deal
97
+ in the Software without restriction, including without limitation the rights
98
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
+ copies of the Software, and to permit persons to whom the Software is
100
+ furnished to do so, subject to the following conditions:
101
+
102
+ The above copyright notice and this permission notice shall be included in all
103
+ copies or substantial portions of the Software.
104
+
105
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
106
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
107
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
108
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
109
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
110
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
111
+ SOFTWARE.
112
+ =========================================
113
+ END OF @hono/node-server@1.19.11 NOTICES AND INFORMATION
114
+
115
+ %% @modelcontextprotocol/sdk@1.29.0 NOTICES AND INFORMATION BEGIN HERE
116
+ =========================================
117
+ MIT License
118
+
119
+ Copyright (c) 2024 Anthropic, PBC
120
+
121
+ Permission is hereby granted, free of charge, to any person obtaining a copy
122
+ of this software and associated documentation files (the "Software"), to deal
123
+ in the Software without restriction, including without limitation the rights
124
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
125
+ copies of the Software, and to permit persons to whom the Software is
126
+ furnished to do so, subject to the following conditions:
127
+
128
+ The above copyright notice and this permission notice shall be included in all
129
+ copies or substantial portions of the Software.
130
+
131
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
132
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
133
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
134
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
135
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
136
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
137
+ SOFTWARE.
138
+ =========================================
139
+ END OF @modelcontextprotocol/sdk@1.29.0 NOTICES AND INFORMATION
140
+
141
+ %% agent-base@7.1.4 NOTICES AND INFORMATION BEGIN HERE
142
+ =========================================
143
+ (The MIT License)
144
+
145
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
146
+
147
+ Permission is hereby granted, free of charge, to any person obtaining
148
+ a copy of this software and associated documentation files (the
149
+ 'Software'), to deal in the Software without restriction, including
150
+ without limitation the rights to use, copy, modify, merge, publish,
151
+ distribute, sublicense, and/or sell copies of the Software, and to
152
+ permit persons to whom the Software is furnished to do so, subject to
153
+ the following conditions:
154
+
155
+ The above copyright notice and this permission notice shall be
156
+ included in all copies or substantial portions of the Software.
157
+
158
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
159
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
160
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
161
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
162
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
163
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
164
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
165
+ =========================================
166
+ END OF agent-base@7.1.4 NOTICES AND INFORMATION
167
+
168
+ %% ajv-formats@3.0.1 NOTICES AND INFORMATION BEGIN HERE
169
+ =========================================
170
+ MIT License
171
+
172
+ Copyright (c) 2020 Evgeny Poberezkin
173
+
174
+ Permission is hereby granted, free of charge, to any person obtaining a copy
175
+ of this software and associated documentation files (the "Software"), to deal
176
+ in the Software without restriction, including without limitation the rights
177
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
178
+ copies of the Software, and to permit persons to whom the Software is
179
+ furnished to do so, subject to the following conditions:
180
+
181
+ The above copyright notice and this permission notice shall be included in all
182
+ copies or substantial portions of the Software.
183
+
184
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
185
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
186
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
187
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
188
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
189
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
190
+ SOFTWARE.
191
+ =========================================
192
+ END OF ajv-formats@3.0.1 NOTICES AND INFORMATION
193
+
194
+ %% ajv@8.18.0 NOTICES AND INFORMATION BEGIN HERE
195
+ =========================================
196
+ The MIT License (MIT)
197
+
198
+ Copyright (c) 2015-2021 Evgeny Poberezkin
199
+
200
+ Permission is hereby granted, free of charge, to any person obtaining a copy
201
+ of this software and associated documentation files (the "Software"), to deal
202
+ in the Software without restriction, including without limitation the rights
203
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
204
+ copies of the Software, and to permit persons to whom the Software is
205
+ furnished to do so, subject to the following conditions:
206
+
207
+ The above copyright notice and this permission notice shall be included in all
208
+ copies or substantial portions of the Software.
209
+
210
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
211
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
212
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
213
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
214
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
215
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
216
+ SOFTWARE.
217
+ =========================================
218
+ END OF ajv@8.18.0 NOTICES AND INFORMATION
219
+
220
+ %% ansi-colors@4.1.3 NOTICES AND INFORMATION BEGIN HERE
221
+ =========================================
222
+ The MIT License (MIT)
223
+
224
+ Copyright (c) 2015-present, Brian Woodward.
225
+
226
+ Permission is hereby granted, free of charge, to any person obtaining a copy
227
+ of this software and associated documentation files (the "Software"), to deal
228
+ in the Software without restriction, including without limitation the rights
229
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
230
+ copies of the Software, and to permit persons to whom the Software is
231
+ furnished to do so, subject to the following conditions:
232
+
233
+ The above copyright notice and this permission notice shall be included in
234
+ all copies or substantial portions of the Software.
235
+
236
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
237
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
238
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
239
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
240
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
241
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
242
+ THE SOFTWARE.
243
+ =========================================
244
+ END OF ansi-colors@4.1.3 NOTICES AND INFORMATION
245
+
246
+ %% anymatch@3.1.3 NOTICES AND INFORMATION BEGIN HERE
247
+ =========================================
248
+ The ISC License
249
+
250
+ Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
251
+
252
+ Permission to use, copy, modify, and/or distribute this software for any
253
+ purpose with or without fee is hereby granted, provided that the above
254
+ copyright notice and this permission notice appear in all copies.
255
+
256
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
257
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
258
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
259
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
260
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
261
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
262
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
263
+ =========================================
264
+ END OF anymatch@3.1.3 NOTICES AND INFORMATION
265
+
266
+ %% balanced-match@1.0.2 NOTICES AND INFORMATION BEGIN HERE
267
+ =========================================
268
+ (MIT)
269
+
270
+ Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
271
+
272
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
273
+ this software and associated documentation files (the "Software"), to deal in
274
+ the Software without restriction, including without limitation the rights to
275
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
276
+ of the Software, and to permit persons to whom the Software is furnished to do
277
+ so, subject to the following conditions:
278
+
279
+ The above copyright notice and this permission notice shall be included in all
280
+ copies or substantial portions of the Software.
281
+
282
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
283
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
284
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
285
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
286
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
287
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
288
+ SOFTWARE.
289
+ =========================================
290
+ END OF balanced-match@1.0.2 NOTICES AND INFORMATION
291
+
292
+ %% binary-extensions@2.3.0 NOTICES AND INFORMATION BEGIN HERE
293
+ =========================================
294
+ MIT License
295
+
296
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
297
+ Copyright (c) Paul Miller (https://paulmillr.com)
298
+
299
+ 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:
300
+
301
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
302
+
303
+ 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.
304
+ =========================================
305
+ END OF binary-extensions@2.3.0 NOTICES AND INFORMATION
306
+
307
+ %% brace-expansion@1.1.12 NOTICES AND INFORMATION BEGIN HERE
308
+ =========================================
309
+ MIT License
310
+
311
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
312
+
313
+ Permission is hereby granted, free of charge, to any person obtaining a copy
314
+ of this software and associated documentation files (the "Software"), to deal
315
+ in the Software without restriction, including without limitation the rights
316
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
317
+ copies of the Software, and to permit persons to whom the Software is
318
+ furnished to do so, subject to the following conditions:
319
+
320
+ The above copyright notice and this permission notice shall be included in all
321
+ copies or substantial portions of the Software.
322
+
323
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
324
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
325
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
326
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
327
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
328
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
329
+ SOFTWARE.
330
+ =========================================
331
+ END OF brace-expansion@1.1.12 NOTICES AND INFORMATION
332
+
333
+ %% braces@3.0.3 NOTICES AND INFORMATION BEGIN HERE
334
+ =========================================
335
+ The MIT License (MIT)
336
+
337
+ Copyright (c) 2014-present, Jon Schlinkert.
338
+
339
+ Permission is hereby granted, free of charge, to any person obtaining a copy
340
+ of this software and associated documentation files (the "Software"), to deal
341
+ in the Software without restriction, including without limitation the rights
342
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
343
+ copies of the Software, and to permit persons to whom the Software is
344
+ furnished to do so, subject to the following conditions:
345
+
346
+ The above copyright notice and this permission notice shall be included in
347
+ all copies or substantial portions of the Software.
348
+
349
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
350
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
351
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
352
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
353
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
354
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
355
+ THE SOFTWARE.
356
+ =========================================
357
+ END OF braces@3.0.3 NOTICES AND INFORMATION
358
+
359
+ %% buffer-crc32@0.2.13 NOTICES AND INFORMATION BEGIN HERE
360
+ =========================================
361
+ The MIT License
362
+
363
+ Copyright (c) 2013 Brian J. Brennan
364
+
365
+ Permission is hereby granted, free of charge, to any person obtaining a copy
366
+ of this software and associated documentation files (the "Software"), to deal in
367
+ the Software without restriction, including without limitation the rights to use,
368
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
369
+ Software, and to permit persons to whom the Software is furnished to do so,
370
+ subject to the following conditions:
371
+
372
+ The above copyright notice and this permission notice shall be included in all
373
+ copies or substantial portions of the Software.
374
+
375
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
376
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
377
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
378
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
379
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
380
+ =========================================
381
+ END OF buffer-crc32@0.2.13 NOTICES AND INFORMATION
382
+
383
+ %% buffer-from@1.1.2 NOTICES AND INFORMATION BEGIN HERE
384
+ =========================================
385
+ MIT License
386
+
387
+ Copyright (c) 2016, 2018 Linus Unnebäck
388
+
389
+ Permission is hereby granted, free of charge, to any person obtaining a copy
390
+ of this software and associated documentation files (the "Software"), to deal
391
+ in the Software without restriction, including without limitation the rights
392
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
393
+ copies of the Software, and to permit persons to whom the Software is
394
+ furnished to do so, subject to the following conditions:
395
+
396
+ The above copyright notice and this permission notice shall be included in all
397
+ copies or substantial portions of the Software.
398
+
399
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
400
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
401
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
402
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
403
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
404
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
405
+ SOFTWARE.
406
+ =========================================
407
+ END OF buffer-from@1.1.2 NOTICES AND INFORMATION
408
+
409
+ %% bytes@3.1.2 NOTICES AND INFORMATION BEGIN HERE
410
+ =========================================
411
+ (The MIT License)
412
+
413
+ Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
414
+ Copyright (c) 2015 Jed Watson <jed.watson@me.com>
415
+
416
+ Permission is hereby granted, free of charge, to any person obtaining
417
+ a copy of this software and associated documentation files (the
418
+ 'Software'), to deal in the Software without restriction, including
419
+ without limitation the rights to use, copy, modify, merge, publish,
420
+ distribute, sublicense, and/or sell copies of the Software, and to
421
+ permit persons to whom the Software is furnished to do so, subject to
422
+ the following conditions:
423
+
424
+ The above copyright notice and this permission notice shall be
425
+ included in all copies or substantial portions of the Software.
426
+
427
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
428
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
429
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
430
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
431
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
432
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
433
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
434
+ =========================================
435
+ END OF bytes@3.1.2 NOTICES AND INFORMATION
436
+
437
+ %% chokidar@3.6.0 NOTICES AND INFORMATION BEGIN HERE
438
+ =========================================
439
+ The MIT License (MIT)
440
+
441
+ Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
442
+
443
+ Permission is hereby granted, free of charge, to any person obtaining a copy
444
+ of this software and associated documentation files (the “Software”), to deal
445
+ in the Software without restriction, including without limitation the rights
446
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
447
+ copies of the Software, and to permit persons to whom the Software is
448
+ furnished to do so, subject to the following conditions:
449
+
450
+ The above copyright notice and this permission notice shall be included in
451
+ all copies or substantial portions of the Software.
452
+
453
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
454
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
455
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
456
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
457
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
458
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
459
+ THE SOFTWARE.
460
+ =========================================
461
+ END OF chokidar@3.6.0 NOTICES AND INFORMATION
462
+
463
+ %% colors@1.4.0 NOTICES AND INFORMATION BEGIN HERE
464
+ =========================================
465
+ MIT License
466
+
467
+ Original Library
468
+ - Copyright (c) Marak Squires
469
+
470
+ Additional Functionality
471
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
472
+
473
+ Permission is hereby granted, free of charge, to any person obtaining a copy
474
+ of this software and associated documentation files (the "Software"), to deal
475
+ in the Software without restriction, including without limitation the rights
476
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
477
+ copies of the Software, and to permit persons to whom the Software is
478
+ furnished to do so, subject to the following conditions:
479
+
480
+ The above copyright notice and this permission notice shall be included in
481
+ all copies or substantial portions of the Software.
482
+
483
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
484
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
485
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
486
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
487
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
488
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
489
+ THE SOFTWARE.
490
+ =========================================
491
+ END OF colors@1.4.0 NOTICES AND INFORMATION
492
+
493
+ %% commander@13.1.0 NOTICES AND INFORMATION BEGIN HERE
494
+ =========================================
495
+ (The MIT License)
496
+
497
+ Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
498
+
499
+ Permission is hereby granted, free of charge, to any person obtaining
500
+ a copy of this software and associated documentation files (the
501
+ 'Software'), to deal in the Software without restriction, including
502
+ without limitation the rights to use, copy, modify, merge, publish,
503
+ distribute, sublicense, and/or sell copies of the Software, and to
504
+ permit persons to whom the Software is furnished to do so, subject to
505
+ the following conditions:
506
+
507
+ The above copyright notice and this permission notice shall be
508
+ included in all copies or substantial portions of the Software.
509
+
510
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
511
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
512
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
513
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
514
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
515
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
516
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
517
+ =========================================
518
+ END OF commander@13.1.0 NOTICES AND INFORMATION
519
+
520
+ %% concat-map@0.0.1 NOTICES AND INFORMATION BEGIN HERE
521
+ =========================================
522
+ This software is released under the MIT license:
523
+
524
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
525
+ this software and associated documentation files (the "Software"), to deal in
526
+ the Software without restriction, including without limitation the rights to
527
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
528
+ the Software, and to permit persons to whom the Software is furnished to do so,
529
+ subject to the following conditions:
530
+
531
+ The above copyright notice and this permission notice shall be included in all
532
+ copies or substantial portions of the Software.
533
+
534
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
535
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
536
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
537
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
538
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
539
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
540
+ =========================================
541
+ END OF concat-map@0.0.1 NOTICES AND INFORMATION
542
+
543
+ %% content-type@1.0.5 NOTICES AND INFORMATION BEGIN HERE
544
+ =========================================
545
+ (The MIT License)
546
+
547
+ Copyright (c) 2015 Douglas Christopher Wilson
548
+
549
+ Permission is hereby granted, free of charge, to any person obtaining
550
+ a copy of this software and associated documentation files (the
551
+ 'Software'), to deal in the Software without restriction, including
552
+ without limitation the rights to use, copy, modify, merge, publish,
553
+ distribute, sublicense, and/or sell copies of the Software, and to
554
+ permit persons to whom the Software is furnished to do so, subject to
555
+ the following conditions:
556
+
557
+ The above copyright notice and this permission notice shall be
558
+ included in all copies or substantial portions of the Software.
559
+
560
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
561
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
562
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
563
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
564
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
565
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
566
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
567
+ =========================================
568
+ END OF content-type@1.0.5 NOTICES AND INFORMATION
569
+
570
+ %% cross-spawn@7.0.6 NOTICES AND INFORMATION BEGIN HERE
571
+ =========================================
572
+ The MIT License (MIT)
573
+
574
+ Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
575
+
576
+ Permission is hereby granted, free of charge, to any person obtaining a copy
577
+ of this software and associated documentation files (the "Software"), to deal
578
+ in the Software without restriction, including without limitation the rights
579
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
580
+ copies of the Software, and to permit persons to whom the Software is
581
+ furnished to do so, subject to the following conditions:
582
+
583
+ The above copyright notice and this permission notice shall be included in
584
+ all copies or substantial portions of the Software.
585
+
586
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
587
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
588
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
589
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
590
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
591
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
592
+ THE SOFTWARE.
593
+ =========================================
594
+ END OF cross-spawn@7.0.6 NOTICES AND INFORMATION
595
+
596
+ %% debug@4.4.3 NOTICES AND INFORMATION BEGIN HERE
597
+ =========================================
598
+ (The MIT License)
599
+
600
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
601
+ Copyright (c) 2018-2021 Josh Junon
602
+
603
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
604
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
605
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
606
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
607
+ subject to the following conditions:
608
+
609
+ The above copyright notice and this permission notice shall be included in all copies or substantial
610
+ portions of the Software.
611
+
612
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
613
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
614
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
615
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
616
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
617
+ =========================================
618
+ END OF debug@4.4.3 NOTICES AND INFORMATION
619
+
620
+ %% define-lazy-prop@2.0.0 NOTICES AND INFORMATION BEGIN HERE
621
+ =========================================
622
+ MIT License
623
+
624
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
625
+
626
+ 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:
627
+
628
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
629
+
630
+ 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.
631
+ =========================================
632
+ END OF define-lazy-prop@2.0.0 NOTICES AND INFORMATION
633
+
634
+ %% diff@8.0.4 NOTICES AND INFORMATION BEGIN HERE
635
+ =========================================
636
+ BSD 3-Clause License
637
+
638
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
639
+ All rights reserved.
640
+
641
+ Redistribution and use in source and binary forms, with or without
642
+ modification, are permitted provided that the following conditions are met:
643
+
644
+ 1. Redistributions of source code must retain the above copyright notice, this
645
+ list of conditions and the following disclaimer.
646
+
647
+ 2. Redistributions in binary form must reproduce the above copyright notice,
648
+ this list of conditions and the following disclaimer in the documentation
649
+ and/or other materials provided with the distribution.
650
+
651
+ 3. Neither the name of the copyright holder nor the names of its
652
+ contributors may be used to endorse or promote products derived from
653
+ this software without specific prior written permission.
654
+
655
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
656
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
657
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
658
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
659
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
660
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
661
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
662
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
663
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
664
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
665
+ =========================================
666
+ END OF diff@8.0.4 NOTICES AND INFORMATION
667
+
668
+ %% dotenv@16.6.1 NOTICES AND INFORMATION BEGIN HERE
669
+ =========================================
670
+ Copyright (c) 2015, Scott Motte
671
+ All rights reserved.
672
+
673
+ Redistribution and use in source and binary forms, with or without
674
+ modification, are permitted provided that the following conditions are met:
675
+
676
+ * Redistributions of source code must retain the above copyright notice, this
677
+ list of conditions and the following disclaimer.
678
+
679
+ * Redistributions in binary form must reproduce the above copyright notice,
680
+ this list of conditions and the following disclaimer in the documentation
681
+ and/or other materials provided with the distribution.
682
+
683
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
684
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
685
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
686
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
687
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
688
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
689
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
690
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
691
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
692
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
693
+ =========================================
694
+ END OF dotenv@16.6.1 NOTICES AND INFORMATION
695
+
696
+ %% end-of-stream@1.4.5 NOTICES AND INFORMATION BEGIN HERE
697
+ =========================================
698
+ The MIT License (MIT)
699
+
700
+ Copyright (c) 2014 Mathias Buus
701
+
702
+ Permission is hereby granted, free of charge, to any person obtaining a copy
703
+ of this software and associated documentation files (the "Software"), to deal
704
+ in the Software without restriction, including without limitation the rights
705
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
706
+ copies of the Software, and to permit persons to whom the Software is
707
+ furnished to do so, subject to the following conditions:
708
+
709
+ The above copyright notice and this permission notice shall be included in
710
+ all copies or substantial portions of the Software.
711
+
712
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
713
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
714
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
715
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
716
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
717
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
718
+ THE SOFTWARE.
719
+ =========================================
720
+ END OF end-of-stream@1.4.5 NOTICES AND INFORMATION
721
+
722
+ %% enquirer@2.3.6 NOTICES AND INFORMATION BEGIN HERE
723
+ =========================================
724
+ The MIT License (MIT)
725
+
726
+ Copyright (c) 2016-present, Jon Schlinkert.
727
+
728
+ Permission is hereby granted, free of charge, to any person obtaining a copy
729
+ of this software and associated documentation files (the "Software"), to deal
730
+ in the Software without restriction, including without limitation the rights
731
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
732
+ copies of the Software, and to permit persons to whom the Software is
733
+ furnished to do so, subject to the following conditions:
734
+
735
+ The above copyright notice and this permission notice shall be included in
736
+ all copies or substantial portions of the Software.
737
+
738
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
739
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
740
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
741
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
742
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
743
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
744
+ THE SOFTWARE.
745
+ =========================================
746
+ END OF enquirer@2.3.6 NOTICES AND INFORMATION
747
+
748
+ %% eventsource-parser@3.0.6 NOTICES AND INFORMATION BEGIN HERE
749
+ =========================================
750
+ MIT License
751
+
752
+ Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
753
+
754
+ Permission is hereby granted, free of charge, to any person obtaining a copy
755
+ of this software and associated documentation files (the "Software"), to deal
756
+ in the Software without restriction, including without limitation the rights
757
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
758
+ copies of the Software, and to permit persons to whom the Software is
759
+ furnished to do so, subject to the following conditions:
760
+
761
+ The above copyright notice and this permission notice shall be included in all
762
+ copies or substantial portions of the Software.
763
+
764
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
765
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
766
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
767
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
768
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
769
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
770
+ SOFTWARE.
771
+ =========================================
772
+ END OF eventsource-parser@3.0.6 NOTICES AND INFORMATION
773
+
774
+ %% eventsource@3.0.7 NOTICES AND INFORMATION BEGIN HERE
775
+ =========================================
776
+ The MIT License
777
+
778
+ Copyright (c) EventSource GitHub organisation
779
+
780
+ Permission is hereby granted, free of charge, to any person obtaining
781
+ a copy of this software and associated documentation files (the
782
+ "Software"), to deal in the Software without restriction, including
783
+ without limitation the rights to use, copy, modify, merge, publish,
784
+ distribute, sublicense, and/or sell copies of the Software, and to
785
+ permit persons to whom the Software is furnished to do so, subject to
786
+ the following conditions:
787
+
788
+ The above copyright notice and this permission notice shall be
789
+ included in all copies or substantial portions of the Software.
790
+
791
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
792
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
793
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
794
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
795
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
796
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
797
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
798
+ =========================================
799
+ END OF eventsource@3.0.7 NOTICES AND INFORMATION
800
+
801
+ %% fast-deep-equal@3.1.3 NOTICES AND INFORMATION BEGIN HERE
802
+ =========================================
803
+ MIT License
804
+
805
+ Copyright (c) 2017 Evgeny Poberezkin
806
+
807
+ Permission is hereby granted, free of charge, to any person obtaining a copy
808
+ of this software and associated documentation files (the "Software"), to deal
809
+ in the Software without restriction, including without limitation the rights
810
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
811
+ copies of the Software, and to permit persons to whom the Software is
812
+ furnished to do so, subject to the following conditions:
813
+
814
+ The above copyright notice and this permission notice shall be included in all
815
+ copies or substantial portions of the Software.
816
+
817
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
818
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
819
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
820
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
821
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
822
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
823
+ SOFTWARE.
824
+ =========================================
825
+ END OF fast-deep-equal@3.1.3 NOTICES AND INFORMATION
826
+
827
+ %% fast-uri@3.1.0 NOTICES AND INFORMATION BEGIN HERE
828
+ =========================================
829
+ Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
830
+ Copyright (c) 2021-present The Fastify team
831
+ All rights reserved.
832
+
833
+ The Fastify team members are listed at https://github.com/fastify/fastify#team.
834
+
835
+ Redistribution and use in source and binary forms, with or without
836
+ modification, are permitted provided that the following conditions are met:
837
+ * Redistributions of source code must retain the above copyright
838
+ notice, this list of conditions and the following disclaimer.
839
+ * Redistributions in binary form must reproduce the above copyright
840
+ notice, this list of conditions and the following disclaimer in the
841
+ documentation and/or other materials provided with the distribution.
842
+ * The names of any contributors may not be used to endorse or promote
843
+ products derived from this software without specific prior written
844
+ permission.
845
+
846
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
847
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
848
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
849
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
850
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
851
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
852
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
853
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
854
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
855
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
856
+
857
+ * * *
858
+
859
+ The complete list of contributors can be found at:
860
+ - https://github.com/garycourt/uri-js/graphs/contributors
861
+ =========================================
862
+ END OF fast-uri@3.1.0 NOTICES AND INFORMATION
863
+
864
+ %% fill-range@7.1.1 NOTICES AND INFORMATION BEGIN HERE
865
+ =========================================
866
+ The MIT License (MIT)
867
+
868
+ Copyright (c) 2014-present, Jon Schlinkert.
869
+
870
+ Permission is hereby granted, free of charge, to any person obtaining a copy
871
+ of this software and associated documentation files (the "Software"), to deal
872
+ in the Software without restriction, including without limitation the rights
873
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
874
+ copies of the Software, and to permit persons to whom the Software is
875
+ furnished to do so, subject to the following conditions:
876
+
877
+ The above copyright notice and this permission notice shall be included in
878
+ all copies or substantial portions of the Software.
879
+
880
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
881
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
882
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
883
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
884
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
885
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
886
+ THE SOFTWARE.
887
+ =========================================
888
+ END OF fill-range@7.1.1 NOTICES AND INFORMATION
889
+
890
+ %% get-east-asian-width@1.3.0 NOTICES AND INFORMATION BEGIN HERE
891
+ =========================================
892
+ MIT License
893
+
894
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
895
+
896
+ 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:
897
+
898
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
899
+
900
+ 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.
901
+ =========================================
902
+ END OF get-east-asian-width@1.3.0 NOTICES AND INFORMATION
903
+
904
+ %% get-stream@5.2.0 NOTICES AND INFORMATION BEGIN HERE
905
+ =========================================
906
+ MIT License
907
+
908
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
909
+
910
+ 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:
911
+
912
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
913
+
914
+ 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.
915
+ =========================================
916
+ END OF get-stream@5.2.0 NOTICES AND INFORMATION
917
+
918
+ %% glob-parent@5.1.2 NOTICES AND INFORMATION BEGIN HERE
919
+ =========================================
920
+ The ISC License
921
+
922
+ Copyright (c) 2015, 2019 Elan Shanker
923
+
924
+ Permission to use, copy, modify, and/or distribute this software for any
925
+ purpose with or without fee is hereby granted, provided that the above
926
+ copyright notice and this permission notice appear in all copies.
927
+
928
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
929
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
930
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
931
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
932
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
933
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
934
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
935
+ =========================================
936
+ END OF glob-parent@5.1.2 NOTICES AND INFORMATION
937
+
938
+ %% graceful-fs@4.2.10 NOTICES AND INFORMATION BEGIN HERE
939
+ =========================================
940
+ The ISC License
941
+
942
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
943
+
944
+ Permission to use, copy, modify, and/or distribute this software for any
945
+ purpose with or without fee is hereby granted, provided that the above
946
+ copyright notice and this permission notice appear in all copies.
947
+
948
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
949
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
950
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
951
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
952
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
953
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
954
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
955
+ =========================================
956
+ END OF graceful-fs@4.2.10 NOTICES AND INFORMATION
957
+
958
+ %% has-flag@4.0.0 NOTICES AND INFORMATION BEGIN HERE
959
+ =========================================
960
+ MIT License
961
+
962
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
963
+
964
+ 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:
965
+
966
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
967
+
968
+ 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.
969
+ =========================================
970
+ END OF has-flag@4.0.0 NOTICES AND INFORMATION
971
+
972
+ %% https-proxy-agent@7.0.6 NOTICES AND INFORMATION BEGIN HERE
973
+ =========================================
974
+ (The MIT License)
975
+
976
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
977
+
978
+ Permission is hereby granted, free of charge, to any person obtaining
979
+ a copy of this software and associated documentation files (the
980
+ 'Software'), to deal in the Software without restriction, including
981
+ without limitation the rights to use, copy, modify, merge, publish,
982
+ distribute, sublicense, and/or sell copies of the Software, and to
983
+ permit persons to whom the Software is furnished to do so, subject to
984
+ the following conditions:
985
+
986
+ The above copyright notice and this permission notice shall be
987
+ included in all copies or substantial portions of the Software.
988
+
989
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
990
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
991
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
992
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
993
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
994
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
995
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
996
+ =========================================
997
+ END OF https-proxy-agent@7.0.6 NOTICES AND INFORMATION
998
+
999
+ %% ini@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1000
+ =========================================
1001
+ The ISC License
1002
+
1003
+ Copyright (c) Isaac Z. Schlueter and Contributors
1004
+
1005
+ Permission to use, copy, modify, and/or distribute this software for any
1006
+ purpose with or without fee is hereby granted, provided that the above
1007
+ copyright notice and this permission notice appear in all copies.
1008
+
1009
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1010
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1011
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1012
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1013
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1014
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1015
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1016
+ =========================================
1017
+ END OF ini@6.0.0 NOTICES AND INFORMATION
1018
+
1019
+ %% ip-address@10.2.0 NOTICES AND INFORMATION BEGIN HERE
1020
+ =========================================
1021
+ Copyright (C) 2011 by Beau Gunderson
1022
+
1023
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1024
+ of this software and associated documentation files (the "Software"), to deal
1025
+ in the Software without restriction, including without limitation the rights
1026
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1027
+ copies of the Software, and to permit persons to whom the Software is
1028
+ furnished to do so, subject to the following conditions:
1029
+
1030
+ The above copyright notice and this permission notice shall be included in
1031
+ all copies or substantial portions of the Software.
1032
+
1033
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1034
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1035
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1036
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1037
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1038
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1039
+ THE SOFTWARE.
1040
+ =========================================
1041
+ END OF ip-address@10.2.0 NOTICES AND INFORMATION
1042
+
1043
+ %% is-binary-path@2.1.0 NOTICES AND INFORMATION BEGIN HERE
1044
+ =========================================
1045
+ MIT License
1046
+
1047
+ Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
1048
+
1049
+ 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:
1050
+
1051
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1052
+
1053
+ 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.
1054
+ =========================================
1055
+ END OF is-binary-path@2.1.0 NOTICES AND INFORMATION
1056
+
1057
+ %% is-docker@2.2.1 NOTICES AND INFORMATION BEGIN HERE
1058
+ =========================================
1059
+ MIT License
1060
+
1061
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1062
+
1063
+ 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:
1064
+
1065
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1066
+
1067
+ 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.
1068
+ =========================================
1069
+ END OF is-docker@2.2.1 NOTICES AND INFORMATION
1070
+
1071
+ %% is-extglob@2.1.1 NOTICES AND INFORMATION BEGIN HERE
1072
+ =========================================
1073
+ The MIT License (MIT)
1074
+
1075
+ Copyright (c) 2014-2016, Jon Schlinkert
1076
+
1077
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1078
+ of this software and associated documentation files (the "Software"), to deal
1079
+ in the Software without restriction, including without limitation the rights
1080
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1081
+ copies of the Software, and to permit persons to whom the Software is
1082
+ furnished to do so, subject to the following conditions:
1083
+
1084
+ The above copyright notice and this permission notice shall be included in
1085
+ all copies or substantial portions of the Software.
1086
+
1087
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1088
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1089
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1090
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1091
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1092
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1093
+ THE SOFTWARE.
1094
+ =========================================
1095
+ END OF is-extglob@2.1.1 NOTICES AND INFORMATION
1096
+
1097
+ %% is-glob@4.0.3 NOTICES AND INFORMATION BEGIN HERE
1098
+ =========================================
1099
+ The MIT License (MIT)
1100
+
1101
+ Copyright (c) 2014-2017, Jon Schlinkert.
1102
+
1103
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1104
+ of this software and associated documentation files (the "Software"), to deal
1105
+ in the Software without restriction, including without limitation the rights
1106
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1107
+ copies of the Software, and to permit persons to whom the Software is
1108
+ furnished to do so, subject to the following conditions:
1109
+
1110
+ The above copyright notice and this permission notice shall be included in
1111
+ all copies or substantial portions of the Software.
1112
+
1113
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1114
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1115
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1116
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1117
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1118
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1119
+ THE SOFTWARE.
1120
+ =========================================
1121
+ END OF is-glob@4.0.3 NOTICES AND INFORMATION
1122
+
1123
+ %% is-number@7.0.0 NOTICES AND INFORMATION BEGIN HERE
1124
+ =========================================
1125
+ The MIT License (MIT)
1126
+
1127
+ Copyright (c) 2014-present, Jon Schlinkert.
1128
+
1129
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1130
+ of this software and associated documentation files (the "Software"), to deal
1131
+ in the Software without restriction, including without limitation the rights
1132
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1133
+ copies of the Software, and to permit persons to whom the Software is
1134
+ furnished to do so, subject to the following conditions:
1135
+
1136
+ The above copyright notice and this permission notice shall be included in
1137
+ all 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,
1141
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1142
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1143
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1144
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1145
+ THE SOFTWARE.
1146
+ =========================================
1147
+ END OF is-number@7.0.0 NOTICES AND INFORMATION
1148
+
1149
+ %% is-wsl@2.2.0 NOTICES AND INFORMATION BEGIN HERE
1150
+ =========================================
1151
+ MIT License
1152
+
1153
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1154
+
1155
+ 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:
1156
+
1157
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1158
+
1159
+ 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.
1160
+ =========================================
1161
+ END OF is-wsl@2.2.0 NOTICES AND INFORMATION
1162
+
1163
+ %% isexe@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1164
+ =========================================
1165
+ The ISC License
1166
+
1167
+ Copyright (c) Isaac Z. Schlueter and Contributors
1168
+
1169
+ Permission to use, copy, modify, and/or distribute this software for any
1170
+ purpose with or without fee is hereby granted, provided that the above
1171
+ copyright notice and this permission notice appear in all copies.
1172
+
1173
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1174
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1175
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1176
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1177
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1178
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1179
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1180
+ =========================================
1181
+ END OF isexe@2.0.0 NOTICES AND INFORMATION
1182
+
1183
+ %% jpeg-js@0.4.4 NOTICES AND INFORMATION BEGIN HERE
1184
+ =========================================
1185
+ Copyright (c) 2014, Eugene Ware
1186
+ All rights reserved.
1187
+
1188
+ Redistribution and use in source and binary forms, with or without
1189
+ modification, are permitted provided that the following conditions are met:
1190
+
1191
+ 1. Redistributions of source code must retain the above copyright
1192
+ notice, this list of conditions and the following disclaimer.
1193
+ 2. Redistributions in binary form must reproduce the above copyright
1194
+ notice, this list of conditions and the following disclaimer in the
1195
+ documentation and/or other materials provided with the distribution.
1196
+ 3. Neither the name of Eugene Ware nor the names of its contributors
1197
+ may be used to endorse or promote products derived from this software
1198
+ without specific prior written permission.
1199
+
1200
+ THIS SOFTWARE IS PROVIDED BY EUGENE WARE ''AS IS'' AND ANY
1201
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1202
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1203
+ DISCLAIMED. IN NO EVENT SHALL EUGENE WARE BE LIABLE FOR ANY
1204
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1205
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1206
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1207
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1208
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1209
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1210
+ =========================================
1211
+ END OF jpeg-js@0.4.4 NOTICES AND INFORMATION
1212
+
1213
+ %% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
1214
+ =========================================
1215
+ MIT License
1216
+
1217
+ Copyright (c) 2017 Evgeny Poberezkin
1218
+
1219
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1220
+ of this software and associated documentation files (the "Software"), to deal
1221
+ in the Software without restriction, including without limitation the rights
1222
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1223
+ copies of the Software, and to permit persons to whom the Software is
1224
+ furnished to do so, subject to the following conditions:
1225
+
1226
+ The above copyright notice and this permission notice shall be included in all
1227
+ copies or substantial portions of the Software.
1228
+
1229
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1230
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1231
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1232
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1233
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1234
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1235
+ SOFTWARE.
1236
+ =========================================
1237
+ END OF json-schema-traverse@1.0.0 NOTICES AND INFORMATION
1238
+
1239
+ %% json5@2.2.3 NOTICES AND INFORMATION BEGIN HERE
1240
+ =========================================
1241
+ MIT License
1242
+
1243
+ Copyright (c) 2012-2018 Aseem Kishore, and [others].
1244
+
1245
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1246
+ of this software and associated documentation files (the "Software"), to deal
1247
+ in the Software without restriction, including without limitation the rights
1248
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1249
+ copies of the Software, and to permit persons to whom the Software is
1250
+ furnished to do so, subject to the following conditions:
1251
+
1252
+ The above copyright notice and this permission notice shall be included in all
1253
+ copies or substantial portions of the Software.
1254
+
1255
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1256
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1257
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1258
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1259
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1260
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1261
+ SOFTWARE.
1262
+
1263
+ [others]: https://github.com/json5/json5/contributors
1264
+ =========================================
1265
+ END OF json5@2.2.3 NOTICES AND INFORMATION
1266
+
1267
+ %% mime@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1268
+ =========================================
1269
+ The MIT License (MIT)
1270
+
1271
+ Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
1272
+
1273
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1274
+ of this software and associated documentation files (the "Software"), to deal
1275
+ in the Software without restriction, including without limitation the rights
1276
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1277
+ copies of the Software, and to permit persons to whom the Software is
1278
+ furnished to do so, subject to the following conditions:
1279
+
1280
+ The above copyright notice and this permission notice shall be included in
1281
+ all copies or substantial portions of the Software.
1282
+
1283
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1284
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1285
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1286
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1287
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1288
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1289
+ THE SOFTWARE.
1290
+ =========================================
1291
+ END OF mime@3.0.0 NOTICES AND INFORMATION
1292
+
1293
+ %% minimatch@3.1.5 NOTICES AND INFORMATION BEGIN HERE
1294
+ =========================================
1295
+ The ISC License
1296
+
1297
+ Copyright (c) Isaac Z. Schlueter and Contributors
1298
+
1299
+ Permission to use, copy, modify, and/or distribute this software for any
1300
+ purpose with or without fee is hereby granted, provided that the above
1301
+ copyright notice and this permission notice appear in all copies.
1302
+
1303
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1304
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1305
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1306
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1307
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1308
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1309
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1310
+ =========================================
1311
+ END OF minimatch@3.1.5 NOTICES AND INFORMATION
1312
+
1313
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
1314
+ =========================================
1315
+ The MIT License (MIT)
1316
+
1317
+ Copyright (c) 2020 Vercel, Inc.
1318
+
1319
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1320
+ of this software and associated documentation files (the "Software"), to deal
1321
+ in the Software without restriction, including without limitation the rights
1322
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1323
+ copies of the Software, and to permit persons to whom the Software is
1324
+ furnished to do so, subject to the following conditions:
1325
+
1326
+ The above copyright notice and this permission notice shall be included in all
1327
+ copies or substantial portions of the Software.
1328
+
1329
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1330
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1331
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1332
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1333
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1334
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1335
+ SOFTWARE.
1336
+ =========================================
1337
+ END OF ms@2.1.3 NOTICES AND INFORMATION
1338
+
1339
+ %% normalize-path@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1340
+ =========================================
1341
+ The MIT License (MIT)
1342
+
1343
+ Copyright (c) 2014-2018, Jon Schlinkert.
1344
+
1345
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1346
+ of this software and associated documentation files (the "Software"), to deal
1347
+ in the Software without restriction, including without limitation the rights
1348
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1349
+ copies of the Software, and to permit persons to whom the Software is
1350
+ furnished to do so, subject to the following conditions:
1351
+
1352
+ The above copyright notice and this permission notice shall be included in
1353
+ all copies or substantial portions of the Software.
1354
+
1355
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1356
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1357
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1358
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1359
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1360
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1361
+ THE SOFTWARE.
1362
+ =========================================
1363
+ END OF normalize-path@3.0.0 NOTICES AND INFORMATION
1364
+
1365
+ %% once@1.4.0 NOTICES AND INFORMATION BEGIN HERE
1366
+ =========================================
1367
+ The ISC License
1368
+
1369
+ Copyright (c) Isaac Z. Schlueter and Contributors
1370
+
1371
+ Permission to use, copy, modify, and/or distribute this software for any
1372
+ purpose with or without fee is hereby granted, provided that the above
1373
+ copyright notice and this permission notice appear in all copies.
1374
+
1375
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1376
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1377
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1378
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1379
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1380
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1381
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1382
+ =========================================
1383
+ END OF once@1.4.0 NOTICES AND INFORMATION
1384
+
1385
+ %% open@8.4.0 NOTICES AND INFORMATION BEGIN HERE
1386
+ =========================================
1387
+ MIT License
1388
+
1389
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1390
+
1391
+ 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:
1392
+
1393
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1394
+
1395
+ 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.
1396
+ =========================================
1397
+ END OF open@8.4.0 NOTICES AND INFORMATION
1398
+
1399
+ %% path-key@3.1.1 NOTICES AND INFORMATION BEGIN HERE
1400
+ =========================================
1401
+ MIT License
1402
+
1403
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1404
+
1405
+ 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:
1406
+
1407
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1408
+
1409
+ 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.
1410
+ =========================================
1411
+ END OF path-key@3.1.1 NOTICES AND INFORMATION
1412
+
1413
+ %% picomatch@2.3.2 NOTICES AND INFORMATION BEGIN HERE
1414
+ =========================================
1415
+ The MIT License (MIT)
1416
+
1417
+ Copyright (c) 2017-present, Jon Schlinkert.
1418
+
1419
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1420
+ of this software and associated documentation files (the "Software"), to deal
1421
+ in the Software without restriction, including without limitation the rights
1422
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1423
+ copies of the Software, and to permit persons to whom the Software is
1424
+ furnished to do so, subject to the following conditions:
1425
+
1426
+ The above copyright notice and this permission notice shall be included in
1427
+ all copies or substantial portions of the Software.
1428
+
1429
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1430
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1431
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1432
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1433
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1434
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1435
+ THE SOFTWARE.
1436
+ =========================================
1437
+ END OF picomatch@2.3.2 NOTICES AND INFORMATION
1438
+
1439
+ %% pkce-challenge@5.0.0 NOTICES AND INFORMATION BEGIN HERE
1440
+ =========================================
1441
+ MIT License
1442
+
1443
+ Copyright (c) 2019
1444
+
1445
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1446
+ of this software and associated documentation files (the "Software"), to deal
1447
+ in the Software without restriction, including without limitation the rights
1448
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1449
+ copies of the Software, and to permit persons to whom the Software is
1450
+ furnished to do so, subject to the following conditions:
1451
+
1452
+ The above copyright notice and this permission notice shall be included in all
1453
+ copies or substantial portions of the Software.
1454
+
1455
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1456
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1457
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1458
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1459
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1460
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1461
+ SOFTWARE.
1462
+ =========================================
1463
+ END OF pkce-challenge@5.0.0 NOTICES AND INFORMATION
1464
+
1465
+ %% pngjs@6.0.0 NOTICES AND INFORMATION BEGIN HERE
1466
+ =========================================
1467
+ pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
1468
+ pngjs derived work Copyright (c) 2012 Kuba Niegowski
1469
+
1470
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1471
+ of this software and associated documentation files (the "Software"), to deal
1472
+ in the Software without restriction, including without limitation the rights
1473
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1474
+ copies of the Software, and to permit persons to whom the Software is
1475
+ furnished to do so, subject to the following conditions:
1476
+
1477
+ The above copyright notice and this permission notice shall be included in
1478
+ all copies or substantial portions of the Software.
1479
+
1480
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1481
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1482
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1483
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1484
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1485
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1486
+ THE SOFTWARE.
1487
+ =========================================
1488
+ END OF pngjs@6.0.0 NOTICES AND INFORMATION
1489
+
1490
+ %% progress@2.0.3 NOTICES AND INFORMATION BEGIN HERE
1491
+ =========================================
1492
+ (The MIT License)
1493
+
1494
+ Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
1495
+
1496
+ Permission is hereby granted, free of charge, to any person obtaining
1497
+ a copy of this software and associated documentation files (the
1498
+ 'Software'), to deal in the Software without restriction, including
1499
+ without limitation the rights to use, copy, modify, merge, publish,
1500
+ distribute, sublicense, and/or sell copies of the Software, and to
1501
+ permit persons to whom the Software is furnished to do so, subject to
1502
+ the following conditions:
1503
+
1504
+ The above copyright notice and this permission notice shall be
1505
+ included in all copies or substantial portions of the Software.
1506
+
1507
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1508
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1509
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1510
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1511
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1512
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1513
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1514
+ =========================================
1515
+ END OF progress@2.0.3 NOTICES AND INFORMATION
1516
+
1517
+ %% proxy-from-env@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1518
+ =========================================
1519
+ The MIT License
1520
+
1521
+ Copyright (C) 2016-2018 Rob Wu <rob@robwu.nl>
1522
+
1523
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1524
+ this software and associated documentation files (the "Software"), to deal in
1525
+ the Software without restriction, including without limitation the rights to
1526
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1527
+ of the Software, and to permit persons to whom the Software is furnished to do
1528
+ so, subject to the following conditions:
1529
+
1530
+ The above copyright notice and this permission notice shall be included in all
1531
+ copies or substantial portions of the Software.
1532
+
1533
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1534
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1535
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1536
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1537
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1538
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1539
+ =========================================
1540
+ END OF proxy-from-env@2.0.0 NOTICES AND INFORMATION
1541
+
1542
+ %% pump@3.0.3 NOTICES AND INFORMATION BEGIN HERE
1543
+ =========================================
1544
+ The MIT License (MIT)
1545
+
1546
+ Copyright (c) 2014 Mathias Buus
1547
+
1548
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1549
+ of this software and associated documentation files (the "Software"), to deal
1550
+ in the Software without restriction, including without limitation the rights
1551
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1552
+ copies of the Software, and to permit persons to whom the Software is
1553
+ furnished to do so, subject to the following conditions:
1554
+
1555
+ The above copyright notice and this permission notice shall be included in
1556
+ all copies or substantial portions of the Software.
1557
+
1558
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1559
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1560
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1561
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1562
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1563
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1564
+ THE SOFTWARE.
1565
+ =========================================
1566
+ END OF pump@3.0.3 NOTICES AND INFORMATION
1567
+
1568
+ %% readdirp@3.6.0 NOTICES AND INFORMATION BEGIN HERE
1569
+ =========================================
1570
+ MIT License
1571
+
1572
+ Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
1573
+
1574
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1575
+ of this software and associated documentation files (the "Software"), to deal
1576
+ in the Software without restriction, including without limitation the rights
1577
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1578
+ copies of the Software, and to permit persons to whom the Software is
1579
+ furnished to do so, subject to the following conditions:
1580
+
1581
+ The above copyright notice and this permission notice shall be included in all
1582
+ copies or substantial portions of the Software.
1583
+
1584
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1585
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1586
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1587
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1588
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1589
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1590
+ SOFTWARE.
1591
+ =========================================
1592
+ END OF readdirp@3.6.0 NOTICES AND INFORMATION
1593
+
1594
+ %% retry@0.12.0 NOTICES AND INFORMATION BEGIN HERE
1595
+ =========================================
1596
+ Copyright (c) 2011:
1597
+ Tim Koschützki (tim@debuggable.com)
1598
+ Felix Geisendörfer (felix@debuggable.com)
1599
+
1600
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1601
+ of this software and associated documentation files (the "Software"), to deal
1602
+ in the Software without restriction, including without limitation the rights
1603
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1604
+ copies of the Software, and to permit persons to whom the Software is
1605
+ furnished to do so, subject to the following conditions:
1606
+
1607
+ The above copyright notice and this permission notice shall be included in
1608
+ all copies or substantial portions of the Software.
1609
+
1610
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1611
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1612
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1613
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1614
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1615
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1616
+ THE SOFTWARE.
1617
+ =========================================
1618
+ END OF retry@0.12.0 NOTICES AND INFORMATION
1619
+
1620
+ %% shebang-command@2.0.0 NOTICES AND INFORMATION BEGIN HERE
1621
+ =========================================
1622
+ MIT License
1623
+
1624
+ Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
1625
+
1626
+ 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:
1627
+
1628
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1629
+
1630
+ 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.
1631
+ =========================================
1632
+ END OF shebang-command@2.0.0 NOTICES AND INFORMATION
1633
+
1634
+ %% shebang-regex@3.0.0 NOTICES AND INFORMATION BEGIN HERE
1635
+ =========================================
1636
+ MIT License
1637
+
1638
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1639
+
1640
+ 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:
1641
+
1642
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1643
+
1644
+ 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.
1645
+ =========================================
1646
+ END OF shebang-regex@3.0.0 NOTICES AND INFORMATION
1647
+
1648
+ %% signal-exit@3.0.7 NOTICES AND INFORMATION BEGIN HERE
1649
+ =========================================
1650
+ The ISC License
1651
+
1652
+ Copyright (c) 2015, Contributors
1653
+
1654
+ Permission to use, copy, modify, and/or distribute this software
1655
+ for any purpose with or without fee is hereby granted, provided
1656
+ that the above copyright notice and this permission notice
1657
+ appear in all copies.
1658
+
1659
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1660
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
1661
+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
1662
+ LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
1663
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1664
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1665
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1666
+ =========================================
1667
+ END OF signal-exit@3.0.7 NOTICES AND INFORMATION
1668
+
1669
+ %% smart-buffer@4.2.0 NOTICES AND INFORMATION BEGIN HERE
1670
+ =========================================
1671
+ The MIT License (MIT)
1672
+
1673
+ Copyright (c) 2013-2017 Josh Glazebrook
1674
+
1675
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1676
+ this software and associated documentation files (the "Software"), to deal in
1677
+ the Software without restriction, including without limitation the rights to
1678
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1679
+ the Software, and to permit persons to whom the Software is furnished to do so,
1680
+ subject to the following conditions:
1681
+
1682
+ The above copyright notice and this permission notice shall be included in all
1683
+ copies or substantial portions of the Software.
1684
+
1685
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1686
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1687
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1688
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1689
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1690
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1691
+ =========================================
1692
+ END OF smart-buffer@4.2.0 NOTICES AND INFORMATION
1693
+
1694
+ %% socks-proxy-agent@8.0.5 NOTICES AND INFORMATION BEGIN HERE
1695
+ =========================================
1696
+ (The MIT License)
1697
+
1698
+ Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>
1699
+
1700
+ Permission is hereby granted, free of charge, to any person obtaining
1701
+ a copy of this software and associated documentation files (the
1702
+ 'Software'), to deal in the Software without restriction, including
1703
+ without limitation the rights to use, copy, modify, merge, publish,
1704
+ distribute, sublicense, and/or sell copies of the Software, and to
1705
+ permit persons to whom the Software is furnished to do so, subject to
1706
+ the following conditions:
1707
+
1708
+ The above copyright notice and this permission notice shall be
1709
+ included in all copies or substantial portions of the Software.
1710
+
1711
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1712
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1713
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1714
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1715
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1716
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1717
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1718
+ =========================================
1719
+ END OF socks-proxy-agent@8.0.5 NOTICES AND INFORMATION
1720
+
1721
+ %% socks@2.8.7 NOTICES AND INFORMATION BEGIN HERE
1722
+ =========================================
1723
+ The MIT License (MIT)
1724
+
1725
+ Copyright (c) 2013 Josh Glazebrook
1726
+
1727
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1728
+ this software and associated documentation files (the "Software"), to deal in
1729
+ the Software without restriction, including without limitation the rights to
1730
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1731
+ the Software, and to permit persons to whom the Software is furnished to do so,
1732
+ subject to the following conditions:
1733
+
1734
+ The above copyright notice and this permission notice shall be included in all
1735
+ copies or substantial portions of the Software.
1736
+
1737
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1738
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1739
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1740
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1741
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1742
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1743
+ =========================================
1744
+ END OF socks@2.8.7 NOTICES AND INFORMATION
1745
+
1746
+ %% source-map-support@0.5.21 NOTICES AND INFORMATION BEGIN HERE
1747
+ =========================================
1748
+ The MIT License (MIT)
1749
+
1750
+ Copyright (c) 2014 Evan Wallace
1751
+
1752
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1753
+ of this software and associated documentation files (the "Software"), to deal
1754
+ in the Software without restriction, including without limitation the rights
1755
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1756
+ copies of the Software, and to permit persons to whom the Software is
1757
+ furnished to do so, subject to the following conditions:
1758
+
1759
+ The above copyright notice and this permission notice shall be included in all
1760
+ copies or substantial portions of the Software.
1761
+
1762
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1763
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1764
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1765
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1766
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1767
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1768
+ SOFTWARE.
1769
+ =========================================
1770
+ END OF source-map-support@0.5.21 NOTICES AND INFORMATION
1771
+
1772
+ %% source-map@0.6.1 NOTICES AND INFORMATION BEGIN HERE
1773
+ =========================================
1774
+ Copyright (c) 2009-2011, Mozilla Foundation and contributors
1775
+ All rights reserved.
1776
+
1777
+ Redistribution and use in source and binary forms, with or without
1778
+ modification, are permitted provided that the following conditions are met:
1779
+
1780
+ * Redistributions of source code must retain the above copyright notice, this
1781
+ list of conditions and the following disclaimer.
1782
+
1783
+ * Redistributions in binary form must reproduce the above copyright notice,
1784
+ this list of conditions and the following disclaimer in the documentation
1785
+ and/or other materials provided with the distribution.
1786
+
1787
+ * Neither the names of the Mozilla Foundation nor the names of project
1788
+ contributors may be used to endorse or promote products derived from this
1789
+ software without specific prior written permission.
1790
+
1791
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1792
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1793
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1794
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1795
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1796
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1797
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1798
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1799
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1800
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1801
+ =========================================
1802
+ END OF source-map@0.6.1 NOTICES AND INFORMATION
1803
+
1804
+ %% supports-color@8.1.1 NOTICES AND INFORMATION BEGIN HERE
1805
+ =========================================
1806
+ MIT License
1807
+
1808
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1809
+
1810
+ 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:
1811
+
1812
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1813
+
1814
+ 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.
1815
+ =========================================
1816
+ END OF supports-color@8.1.1 NOTICES AND INFORMATION
1817
+
1818
+ %% to-regex-range@5.0.1 NOTICES AND INFORMATION BEGIN HERE
1819
+ =========================================
1820
+ The MIT License (MIT)
1821
+
1822
+ Copyright (c) 2015-present, Jon Schlinkert.
1823
+
1824
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1825
+ of this software and associated documentation files (the "Software"), to deal
1826
+ in the Software without restriction, including without limitation the rights
1827
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1828
+ copies of the Software, and to permit persons to whom the Software is
1829
+ furnished to do so, subject to the following conditions:
1830
+
1831
+ The above copyright notice and this permission notice shall be included in
1832
+ all copies or substantial portions of the Software.
1833
+
1834
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1835
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1836
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1837
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1838
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1839
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1840
+ THE SOFTWARE.
1841
+ =========================================
1842
+ END OF to-regex-range@5.0.1 NOTICES AND INFORMATION
1843
+
1844
+ %% which@2.0.2 NOTICES AND INFORMATION BEGIN HERE
1845
+ =========================================
1846
+ The ISC License
1847
+
1848
+ Copyright (c) Isaac Z. Schlueter and Contributors
1849
+
1850
+ Permission to use, copy, modify, and/or distribute this software for any
1851
+ purpose with or without fee is hereby granted, provided that the above
1852
+ copyright notice and this permission notice appear in all copies.
1853
+
1854
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1855
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1856
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1857
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1858
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1859
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1860
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1861
+ =========================================
1862
+ END OF which@2.0.2 NOTICES AND INFORMATION
1863
+
1864
+ %% wrappy@1.0.2 NOTICES AND INFORMATION BEGIN HERE
1865
+ =========================================
1866
+ The ISC License
1867
+
1868
+ Copyright (c) Isaac Z. Schlueter and Contributors
1869
+
1870
+ Permission to use, copy, modify, and/or distribute this software for any
1871
+ purpose with or without fee is hereby granted, provided that the above
1872
+ copyright notice and this permission notice appear in all copies.
1873
+
1874
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1875
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1876
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1877
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1878
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1879
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1880
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1881
+ =========================================
1882
+ END OF wrappy@1.0.2 NOTICES AND INFORMATION
1883
+
1884
+ %% ws@8.17.1 NOTICES AND INFORMATION BEGIN HERE
1885
+ =========================================
1886
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
1887
+ Copyright (c) 2013 Arnout Kazemier and contributors
1888
+ Copyright (c) 2016 Luigi Pinca and contributors
1889
+
1890
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1891
+ this software and associated documentation files (the "Software"), to deal in
1892
+ the Software without restriction, including without limitation the rights to
1893
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1894
+ the Software, and to permit persons to whom the Software is furnished to do so,
1895
+ subject to the following conditions:
1896
+
1897
+ The above copyright notice and this permission notice shall be included in all
1898
+ copies or substantial portions of the Software.
1899
+
1900
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1901
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1902
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1903
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1904
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1905
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1906
+ =========================================
1907
+ END OF ws@8.17.1 NOTICES AND INFORMATION
1908
+
1909
+ %% yaml@2.8.3 NOTICES AND INFORMATION BEGIN HERE
1910
+ =========================================
1911
+ Copyright Eemeli Aro <eemeli@gmail.com>
1912
+
1913
+ Permission to use, copy, modify, and/or distribute this software for any purpose
1914
+ with or without fee is hereby granted, provided that the above copyright notice
1915
+ and this permission notice appear in all copies.
1916
+
1917
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1918
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1919
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1920
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
1921
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1922
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
1923
+ THIS SOFTWARE.
1924
+ =========================================
1925
+ END OF yaml@2.8.3 NOTICES AND INFORMATION
1926
+
1927
+ %% yazl@2.5.1 NOTICES AND INFORMATION BEGIN HERE
1928
+ =========================================
1929
+ The MIT License (MIT)
1930
+
1931
+ Copyright (c) 2014 Josh Wolfe
1932
+
1933
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1934
+ of this software and associated documentation files (the "Software"), to deal
1935
+ in the Software without restriction, including without limitation the rights
1936
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1937
+ copies of the Software, and to permit persons to whom the Software is
1938
+ furnished to do so, subject to the following conditions:
1939
+
1940
+ The above copyright notice and this permission notice shall be included in all
1941
+ copies or substantial portions of the Software.
1942
+
1943
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1944
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1945
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1946
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1947
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1948
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1949
+ SOFTWARE.
1950
+ =========================================
1951
+ END OF yazl@2.5.1 NOTICES AND INFORMATION
1952
+
1953
+ %% zod-to-json-schema@3.25.1 NOTICES AND INFORMATION BEGIN HERE
1954
+ =========================================
1955
+ ISC License
1956
+
1957
+ Copyright (c) 2020, Stefan Terdell
1958
+
1959
+ Permission to use, copy, modify, and/or distribute this software for any
1960
+ purpose with or without fee is hereby granted, provided that the above
1961
+ copyright notice and this permission notice appear in all copies.
1962
+
1963
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1964
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1965
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1966
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1967
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1968
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1969
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1970
+ =========================================
1971
+ END OF zod-to-json-schema@3.25.1 NOTICES AND INFORMATION
1972
+
1973
+ %% zod@4.3.6 NOTICES AND INFORMATION BEGIN HERE
1974
+ =========================================
1975
+ MIT License
1976
+
1977
+ Copyright (c) 2025 Colin McDonnell
1978
+
1979
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1980
+ of this software and associated documentation files (the "Software"), to deal
1981
+ in the Software without restriction, including without limitation the rights
1982
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1983
+ copies of the Software, and to permit persons to whom the Software is
1984
+ furnished to do so, subject to the following conditions:
1985
+
1986
+ The above copyright notice and this permission notice shall be included in all
1987
+ copies or substantial portions of the Software.
1988
+
1989
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1990
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1991
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1992
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1993
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1994
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1995
+ SOFTWARE.
1996
+ =========================================
1997
+ END OF zod@4.3.6 NOTICES AND INFORMATION
1998
+
1999
+ SUMMARY
2000
+ =========================================
2001
+ Total Packages: 81
2002
+ =========================================