create-microact-app 1.0.1

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 (213) hide show
  1. package/index.js +95 -0
  2. package/package.json +21 -0
  3. package/templates/vanilla/.github/workflows/deploy.yml +38 -0
  4. package/templates/vanilla/index.html +13 -0
  5. package/templates/vanilla/node_modules/.package-lock.json +207 -0
  6. package/templates/vanilla/node_modules/@esbuild/darwin-x64/README.md +3 -0
  7. package/templates/vanilla/node_modules/@esbuild/darwin-x64/bin/esbuild +0 -0
  8. package/templates/vanilla/node_modules/@esbuild/darwin-x64/package.json +17 -0
  9. package/templates/vanilla/node_modules/@monygroupcorp/microact/README.md +154 -0
  10. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js +1749 -0
  11. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js.map +1 -0
  12. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js +1743 -0
  13. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js.map +1 -0
  14. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js +2 -0
  15. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js.map +1 -0
  16. package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.html +13 -0
  17. package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.js +63 -0
  18. package/templates/vanilla/node_modules/@monygroupcorp/microact/package.json +38 -0
  19. package/templates/vanilla/node_modules/@monygroupcorp/microact/rollup.config.cjs +30 -0
  20. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Component.js +831 -0
  21. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/DOMUpdater.js +320 -0
  22. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/EventBus.js +123 -0
  23. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Router.js +253 -0
  24. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/UpdateScheduler.js +218 -0
  25. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/index.js +6 -0
  26. package/templates/vanilla/node_modules/esbuild/LICENSE.md +21 -0
  27. package/templates/vanilla/node_modules/esbuild/README.md +3 -0
  28. package/templates/vanilla/node_modules/esbuild/bin/esbuild +0 -0
  29. package/templates/vanilla/node_modules/esbuild/install.js +287 -0
  30. package/templates/vanilla/node_modules/esbuild/lib/main.d.ts +660 -0
  31. package/templates/vanilla/node_modules/esbuild/lib/main.js +2393 -0
  32. package/templates/vanilla/node_modules/esbuild/package.json +42 -0
  33. package/templates/vanilla/node_modules/nanoid/LICENSE +20 -0
  34. package/templates/vanilla/node_modules/nanoid/README.md +39 -0
  35. package/templates/vanilla/node_modules/nanoid/async/index.browser.cjs +69 -0
  36. package/templates/vanilla/node_modules/nanoid/async/index.browser.js +34 -0
  37. package/templates/vanilla/node_modules/nanoid/async/index.cjs +71 -0
  38. package/templates/vanilla/node_modules/nanoid/async/index.d.ts +56 -0
  39. package/templates/vanilla/node_modules/nanoid/async/index.js +35 -0
  40. package/templates/vanilla/node_modules/nanoid/async/index.native.js +26 -0
  41. package/templates/vanilla/node_modules/nanoid/async/package.json +12 -0
  42. package/templates/vanilla/node_modules/nanoid/bin/nanoid.cjs +55 -0
  43. package/templates/vanilla/node_modules/nanoid/index.browser.cjs +72 -0
  44. package/templates/vanilla/node_modules/nanoid/index.browser.js +34 -0
  45. package/templates/vanilla/node_modules/nanoid/index.cjs +85 -0
  46. package/templates/vanilla/node_modules/nanoid/index.d.cts +91 -0
  47. package/templates/vanilla/node_modules/nanoid/index.d.ts +91 -0
  48. package/templates/vanilla/node_modules/nanoid/index.js +45 -0
  49. package/templates/vanilla/node_modules/nanoid/nanoid.js +1 -0
  50. package/templates/vanilla/node_modules/nanoid/non-secure/index.cjs +34 -0
  51. package/templates/vanilla/node_modules/nanoid/non-secure/index.d.ts +33 -0
  52. package/templates/vanilla/node_modules/nanoid/non-secure/index.js +21 -0
  53. package/templates/vanilla/node_modules/nanoid/non-secure/package.json +6 -0
  54. package/templates/vanilla/node_modules/nanoid/package.json +89 -0
  55. package/templates/vanilla/node_modules/nanoid/url-alphabet/index.cjs +7 -0
  56. package/templates/vanilla/node_modules/nanoid/url-alphabet/index.js +3 -0
  57. package/templates/vanilla/node_modules/nanoid/url-alphabet/package.json +6 -0
  58. package/templates/vanilla/node_modules/picocolors/LICENSE +15 -0
  59. package/templates/vanilla/node_modules/picocolors/README.md +21 -0
  60. package/templates/vanilla/node_modules/picocolors/package.json +25 -0
  61. package/templates/vanilla/node_modules/picocolors/picocolors.browser.js +4 -0
  62. package/templates/vanilla/node_modules/picocolors/picocolors.d.ts +5 -0
  63. package/templates/vanilla/node_modules/picocolors/picocolors.js +75 -0
  64. package/templates/vanilla/node_modules/picocolors/types.d.ts +51 -0
  65. package/templates/vanilla/node_modules/postcss/LICENSE +20 -0
  66. package/templates/vanilla/node_modules/postcss/README.md +29 -0
  67. package/templates/vanilla/node_modules/postcss/lib/at-rule.d.ts +140 -0
  68. package/templates/vanilla/node_modules/postcss/lib/at-rule.js +25 -0
  69. package/templates/vanilla/node_modules/postcss/lib/comment.d.ts +68 -0
  70. package/templates/vanilla/node_modules/postcss/lib/comment.js +13 -0
  71. package/templates/vanilla/node_modules/postcss/lib/container.d.ts +483 -0
  72. package/templates/vanilla/node_modules/postcss/lib/container.js +447 -0
  73. package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
  74. package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.js +133 -0
  75. package/templates/vanilla/node_modules/postcss/lib/declaration.d.ts +151 -0
  76. package/templates/vanilla/node_modules/postcss/lib/declaration.js +24 -0
  77. package/templates/vanilla/node_modules/postcss/lib/document.d.ts +69 -0
  78. package/templates/vanilla/node_modules/postcss/lib/document.js +33 -0
  79. package/templates/vanilla/node_modules/postcss/lib/fromJSON.d.ts +9 -0
  80. package/templates/vanilla/node_modules/postcss/lib/fromJSON.js +54 -0
  81. package/templates/vanilla/node_modules/postcss/lib/input.d.ts +227 -0
  82. package/templates/vanilla/node_modules/postcss/lib/input.js +265 -0
  83. package/templates/vanilla/node_modules/postcss/lib/lazy-result.d.ts +190 -0
  84. package/templates/vanilla/node_modules/postcss/lib/lazy-result.js +550 -0
  85. package/templates/vanilla/node_modules/postcss/lib/list.d.ts +60 -0
  86. package/templates/vanilla/node_modules/postcss/lib/list.js +58 -0
  87. package/templates/vanilla/node_modules/postcss/lib/map-generator.js +368 -0
  88. package/templates/vanilla/node_modules/postcss/lib/no-work-result.d.ts +46 -0
  89. package/templates/vanilla/node_modules/postcss/lib/no-work-result.js +138 -0
  90. package/templates/vanilla/node_modules/postcss/lib/node.d.ts +556 -0
  91. package/templates/vanilla/node_modules/postcss/lib/node.js +449 -0
  92. package/templates/vanilla/node_modules/postcss/lib/parse.d.ts +9 -0
  93. package/templates/vanilla/node_modules/postcss/lib/parse.js +42 -0
  94. package/templates/vanilla/node_modules/postcss/lib/parser.js +611 -0
  95. package/templates/vanilla/node_modules/postcss/lib/postcss.d.mts +69 -0
  96. package/templates/vanilla/node_modules/postcss/lib/postcss.d.ts +458 -0
  97. package/templates/vanilla/node_modules/postcss/lib/postcss.js +101 -0
  98. package/templates/vanilla/node_modules/postcss/lib/postcss.mjs +30 -0
  99. package/templates/vanilla/node_modules/postcss/lib/previous-map.d.ts +81 -0
  100. package/templates/vanilla/node_modules/postcss/lib/previous-map.js +144 -0
  101. package/templates/vanilla/node_modules/postcss/lib/processor.d.ts +115 -0
  102. package/templates/vanilla/node_modules/postcss/lib/processor.js +67 -0
  103. package/templates/vanilla/node_modules/postcss/lib/result.d.ts +205 -0
  104. package/templates/vanilla/node_modules/postcss/lib/result.js +42 -0
  105. package/templates/vanilla/node_modules/postcss/lib/root.d.ts +87 -0
  106. package/templates/vanilla/node_modules/postcss/lib/root.js +61 -0
  107. package/templates/vanilla/node_modules/postcss/lib/rule.d.ts +126 -0
  108. package/templates/vanilla/node_modules/postcss/lib/rule.js +27 -0
  109. package/templates/vanilla/node_modules/postcss/lib/stringifier.d.ts +46 -0
  110. package/templates/vanilla/node_modules/postcss/lib/stringifier.js +353 -0
  111. package/templates/vanilla/node_modules/postcss/lib/stringify.d.ts +9 -0
  112. package/templates/vanilla/node_modules/postcss/lib/stringify.js +11 -0
  113. package/templates/vanilla/node_modules/postcss/lib/symbols.js +5 -0
  114. package/templates/vanilla/node_modules/postcss/lib/terminal-highlight.js +70 -0
  115. package/templates/vanilla/node_modules/postcss/lib/tokenize.js +266 -0
  116. package/templates/vanilla/node_modules/postcss/lib/warn-once.js +13 -0
  117. package/templates/vanilla/node_modules/postcss/lib/warning.d.ts +147 -0
  118. package/templates/vanilla/node_modules/postcss/lib/warning.js +37 -0
  119. package/templates/vanilla/node_modules/postcss/package.json +88 -0
  120. package/templates/vanilla/node_modules/rollup/LICENSE.md +695 -0
  121. package/templates/vanilla/node_modules/rollup/README.md +125 -0
  122. package/templates/vanilla/node_modules/rollup/dist/bin/rollup +1715 -0
  123. package/templates/vanilla/node_modules/rollup/dist/es/getLogFilter.js +64 -0
  124. package/templates/vanilla/node_modules/rollup/dist/es/package.json +1 -0
  125. package/templates/vanilla/node_modules/rollup/dist/es/rollup.js +17 -0
  126. package/templates/vanilla/node_modules/rollup/dist/es/shared/node-entry.js +27273 -0
  127. package/templates/vanilla/node_modules/rollup/dist/es/shared/watch.js +4857 -0
  128. package/templates/vanilla/node_modules/rollup/dist/getLogFilter.d.ts +5 -0
  129. package/templates/vanilla/node_modules/rollup/dist/getLogFilter.js +69 -0
  130. package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.d.ts +20 -0
  131. package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.js +29 -0
  132. package/templates/vanilla/node_modules/rollup/dist/rollup.d.ts +1012 -0
  133. package/templates/vanilla/node_modules/rollup/dist/rollup.js +31 -0
  134. package/templates/vanilla/node_modules/rollup/dist/shared/fsevents-importer.js +37 -0
  135. package/templates/vanilla/node_modules/rollup/dist/shared/index.js +4571 -0
  136. package/templates/vanilla/node_modules/rollup/dist/shared/loadConfigFile.js +546 -0
  137. package/templates/vanilla/node_modules/rollup/dist/shared/rollup.js +27351 -0
  138. package/templates/vanilla/node_modules/rollup/dist/shared/watch-cli.js +561 -0
  139. package/templates/vanilla/node_modules/rollup/dist/shared/watch-proxy.js +87 -0
  140. package/templates/vanilla/node_modules/rollup/dist/shared/watch.js +316 -0
  141. package/templates/vanilla/node_modules/rollup/package.json +181 -0
  142. package/templates/vanilla/node_modules/source-map-js/LICENSE +28 -0
  143. package/templates/vanilla/node_modules/source-map-js/README.md +765 -0
  144. package/templates/vanilla/node_modules/source-map-js/lib/array-set.js +121 -0
  145. package/templates/vanilla/node_modules/source-map-js/lib/base64-vlq.js +140 -0
  146. package/templates/vanilla/node_modules/source-map-js/lib/base64.js +67 -0
  147. package/templates/vanilla/node_modules/source-map-js/lib/binary-search.js +111 -0
  148. package/templates/vanilla/node_modules/source-map-js/lib/mapping-list.js +79 -0
  149. package/templates/vanilla/node_modules/source-map-js/lib/quick-sort.js +132 -0
  150. package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
  151. package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
  152. package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
  153. package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.js +444 -0
  154. package/templates/vanilla/node_modules/source-map-js/lib/source-node.d.ts +1 -0
  155. package/templates/vanilla/node_modules/source-map-js/lib/source-node.js +413 -0
  156. package/templates/vanilla/node_modules/source-map-js/lib/util.js +594 -0
  157. package/templates/vanilla/node_modules/source-map-js/package.json +71 -0
  158. package/templates/vanilla/node_modules/source-map-js/source-map.d.ts +104 -0
  159. package/templates/vanilla/node_modules/source-map-js/source-map.js +8 -0
  160. package/templates/vanilla/node_modules/vite/LICENSE.md +3396 -0
  161. package/templates/vanilla/node_modules/vite/README.md +20 -0
  162. package/templates/vanilla/node_modules/vite/bin/openChrome.applescript +95 -0
  163. package/templates/vanilla/node_modules/vite/bin/vite.js +61 -0
  164. package/templates/vanilla/node_modules/vite/client.d.ts +281 -0
  165. package/templates/vanilla/node_modules/vite/dist/client/client.mjs +725 -0
  166. package/templates/vanilla/node_modules/vite/dist/client/client.mjs.map +1 -0
  167. package/templates/vanilla/node_modules/vite/dist/client/env.mjs +30 -0
  168. package/templates/vanilla/node_modules/vite/dist/client/env.mjs.map +1 -0
  169. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-7ec6f216.js +914 -0
  170. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-827b23df.js +66713 -0
  171. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-c423598f.js +561 -0
  172. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f0c7dae0.js +7930 -0
  173. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f1e8587f.js +7646 -0
  174. package/templates/vanilla/node_modules/vite/dist/node/cli.js +929 -0
  175. package/templates/vanilla/node_modules/vite/dist/node/constants.js +130 -0
  176. package/templates/vanilla/node_modules/vite/dist/node/index.d.ts +3548 -0
  177. package/templates/vanilla/node_modules/vite/dist/node/index.js +158 -0
  178. package/templates/vanilla/node_modules/vite/dist/node-cjs/publicUtils.cjs +4555 -0
  179. package/templates/vanilla/node_modules/vite/index.cjs +34 -0
  180. package/templates/vanilla/node_modules/vite/package.json +173 -0
  181. package/templates/vanilla/node_modules/vite/types/customEvent.d.ts +35 -0
  182. package/templates/vanilla/node_modules/vite/types/hmrPayload.d.ts +61 -0
  183. package/templates/vanilla/node_modules/vite/types/hot.d.ts +32 -0
  184. package/templates/vanilla/node_modules/vite/types/importGlob.d.ts +97 -0
  185. package/templates/vanilla/node_modules/vite/types/importMeta.d.ts +26 -0
  186. package/templates/vanilla/node_modules/vite/types/metadata.d.ts +10 -0
  187. package/templates/vanilla/node_modules/vite/types/package.json +4 -0
  188. package/templates/vanilla/package-lock.json +589 -0
  189. package/templates/vanilla/package.json +17 -0
  190. package/templates/vanilla/src/components/App.js +60 -0
  191. package/templates/vanilla/src/components/Card.js +21 -0
  192. package/templates/vanilla/src/components/Hero.js +15 -0
  193. package/templates/vanilla/src/components/InteractiveDemo.js +59 -0
  194. package/templates/vanilla/src/main.js +9 -0
  195. package/templates/vanilla/src/style/main.css +172 -0
  196. package/templates/vanilla/vite.config.js +8 -0
  197. package/templates/web3/.env.example +15 -0
  198. package/templates/web3/.github/workflows/deploy.yml +38 -0
  199. package/templates/web3/README.md +33 -0
  200. package/templates/web3/contracts/foundry.toml +11 -0
  201. package/templates/web3/contracts/script/Deploy.s.sol +13 -0
  202. package/templates/web3/contracts/src/Counter.sol +21 -0
  203. package/templates/web3/index.html +13 -0
  204. package/templates/web3/package.json +25 -0
  205. package/templates/web3/scripts/chain-start.mjs +305 -0
  206. package/templates/web3/scripts/chain-stop.mjs +34 -0
  207. package/templates/web3/scripts/deploy.mjs +155 -0
  208. package/templates/web3/scripts/setup.mjs +42 -0
  209. package/templates/web3/src/components/App.js +49 -0
  210. package/templates/web3/src/components/CounterCard.js +111 -0
  211. package/templates/web3/src/main.js +54 -0
  212. package/templates/web3/src/style/main.css +345 -0
  213. package/templates/web3/vite.config.js +29 -0
@@ -0,0 +1,3396 @@
1
+ # Vite core license
2
+ Vite is released under the MIT license:
3
+
4
+ MIT License
5
+
6
+ Copyright (c) 2019-present, Yuxi (Evan) You and Vite contributors
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
25
+
26
+ # Licenses of bundled dependencies
27
+ The published Vite artifact additionally contains code with the following licenses:
28
+ Apache-2.0, BSD-2-Clause, CC0-1.0, ISC, MIT
29
+
30
+ # Bundled dependencies:
31
+ ## @ampproject/remapping
32
+ License: Apache-2.0
33
+ By: Justin Ridgewell
34
+ Repository: git+https://github.com/ampproject/remapping.git
35
+
36
+ > Apache License
37
+ > Version 2.0, January 2004
38
+ > http://www.apache.org/licenses/
39
+ >
40
+ > TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
41
+ >
42
+ > 1. Definitions.
43
+ >
44
+ > "License" shall mean the terms and conditions for use, reproduction,
45
+ > and distribution as defined by Sections 1 through 9 of this document.
46
+ >
47
+ > "Licensor" shall mean the copyright owner or entity authorized by
48
+ > the copyright owner that is granting the License.
49
+ >
50
+ > "Legal Entity" shall mean the union of the acting entity and all
51
+ > other entities that control, are controlled by, or are under common
52
+ > control with that entity. For the purposes of this definition,
53
+ > "control" means (i) the power, direct or indirect, to cause the
54
+ > direction or management of such entity, whether by contract or
55
+ > otherwise, or (ii) ownership of fifty percent (50%) or more of the
56
+ > outstanding shares, or (iii) beneficial ownership of such entity.
57
+ >
58
+ > "You" (or "Your") shall mean an individual or Legal Entity
59
+ > exercising permissions granted by this License.
60
+ >
61
+ > "Source" form shall mean the preferred form for making modifications,
62
+ > including but not limited to software source code, documentation
63
+ > source, and configuration files.
64
+ >
65
+ > "Object" form shall mean any form resulting from mechanical
66
+ > transformation or translation of a Source form, including but
67
+ > not limited to compiled object code, generated documentation,
68
+ > and conversions to other media types.
69
+ >
70
+ > "Work" shall mean the work of authorship, whether in Source or
71
+ > Object form, made available under the License, as indicated by a
72
+ > copyright notice that is included in or attached to the work
73
+ > (an example is provided in the Appendix below).
74
+ >
75
+ > "Derivative Works" shall mean any work, whether in Source or Object
76
+ > form, that is based on (or derived from) the Work and for which the
77
+ > editorial revisions, annotations, elaborations, or other modifications
78
+ > represent, as a whole, an original work of authorship. For the purposes
79
+ > of this License, Derivative Works shall not include works that remain
80
+ > separable from, or merely link (or bind by name) to the interfaces of,
81
+ > the Work and Derivative Works thereof.
82
+ >
83
+ > "Contribution" shall mean any work of authorship, including
84
+ > the original version of the Work and any modifications or additions
85
+ > to that Work or Derivative Works thereof, that is intentionally
86
+ > submitted to Licensor for inclusion in the Work by the copyright owner
87
+ > or by an individual or Legal Entity authorized to submit on behalf of
88
+ > the copyright owner. For the purposes of this definition, "submitted"
89
+ > means any form of electronic, verbal, or written communication sent
90
+ > to the Licensor or its representatives, including but not limited to
91
+ > communication on electronic mailing lists, source code control systems,
92
+ > and issue tracking systems that are managed by, or on behalf of, the
93
+ > Licensor for the purpose of discussing and improving the Work, but
94
+ > excluding communication that is conspicuously marked or otherwise
95
+ > designated in writing by the copyright owner as "Not a Contribution."
96
+ >
97
+ > "Contributor" shall mean Licensor and any individual or Legal Entity
98
+ > on behalf of whom a Contribution has been received by Licensor and
99
+ > subsequently incorporated within the Work.
100
+ >
101
+ > 2. Grant of Copyright License. Subject to the terms and conditions of
102
+ > this License, each Contributor hereby grants to You a perpetual,
103
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
104
+ > copyright license to reproduce, prepare Derivative Works of,
105
+ > publicly display, publicly perform, sublicense, and distribute the
106
+ > Work and such Derivative Works in Source or Object form.
107
+ >
108
+ > 3. Grant of Patent License. Subject to the terms and conditions of
109
+ > this License, each Contributor hereby grants to You a perpetual,
110
+ > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
111
+ > (except as stated in this section) patent license to make, have made,
112
+ > use, offer to sell, sell, import, and otherwise transfer the Work,
113
+ > where such license applies only to those patent claims licensable
114
+ > by such Contributor that are necessarily infringed by their
115
+ > Contribution(s) alone or by combination of their Contribution(s)
116
+ > with the Work to which such Contribution(s) was submitted. If You
117
+ > institute patent litigation against any entity (including a
118
+ > cross-claim or counterclaim in a lawsuit) alleging that the Work
119
+ > or a Contribution incorporated within the Work constitutes direct
120
+ > or contributory patent infringement, then any patent licenses
121
+ > granted to You under this License for that Work shall terminate
122
+ > as of the date such litigation is filed.
123
+ >
124
+ > 4. Redistribution. You may reproduce and distribute copies of the
125
+ > Work or Derivative Works thereof in any medium, with or without
126
+ > modifications, and in Source or Object form, provided that You
127
+ > meet the following conditions:
128
+ >
129
+ > (a) You must give any other recipients of the Work or
130
+ > Derivative Works a copy of this License; and
131
+ >
132
+ > (b) You must cause any modified files to carry prominent notices
133
+ > stating that You changed the files; and
134
+ >
135
+ > (c) You must retain, in the Source form of any Derivative Works
136
+ > that You distribute, all copyright, patent, trademark, and
137
+ > attribution notices from the Source form of the Work,
138
+ > excluding those notices that do not pertain to any part of
139
+ > the Derivative Works; and
140
+ >
141
+ > (d) If the Work includes a "NOTICE" text file as part of its
142
+ > distribution, then any Derivative Works that You distribute must
143
+ > include a readable copy of the attribution notices contained
144
+ > within such NOTICE file, excluding those notices that do not
145
+ > pertain to any part of the Derivative Works, in at least one
146
+ > of the following places: within a NOTICE text file distributed
147
+ > as part of the Derivative Works; within the Source form or
148
+ > documentation, if provided along with the Derivative Works; or,
149
+ > within a display generated by the Derivative Works, if and
150
+ > wherever such third-party notices normally appear. The contents
151
+ > of the NOTICE file are for informational purposes only and
152
+ > do not modify the License. You may add Your own attribution
153
+ > notices within Derivative Works that You distribute, alongside
154
+ > or as an addendum to the NOTICE text from the Work, provided
155
+ > that such additional attribution notices cannot be construed
156
+ > as modifying the License.
157
+ >
158
+ > You may add Your own copyright statement to Your modifications and
159
+ > may provide additional or different license terms and conditions
160
+ > for use, reproduction, or distribution of Your modifications, or
161
+ > for any such Derivative Works as a whole, provided Your use,
162
+ > reproduction, and distribution of the Work otherwise complies with
163
+ > the conditions stated in this License.
164
+ >
165
+ > 5. Submission of Contributions. Unless You explicitly state otherwise,
166
+ > any Contribution intentionally submitted for inclusion in the Work
167
+ > by You to the Licensor shall be under the terms and conditions of
168
+ > this License, without any additional terms or conditions.
169
+ > Notwithstanding the above, nothing herein shall supersede or modify
170
+ > the terms of any separate license agreement you may have executed
171
+ > with Licensor regarding such Contributions.
172
+ >
173
+ > 6. Trademarks. This License does not grant permission to use the trade
174
+ > names, trademarks, service marks, or product names of the Licensor,
175
+ > except as required for reasonable and customary use in describing the
176
+ > origin of the Work and reproducing the content of the NOTICE file.
177
+ >
178
+ > 7. Disclaimer of Warranty. Unless required by applicable law or
179
+ > agreed to in writing, Licensor provides the Work (and each
180
+ > Contributor provides its Contributions) on an "AS IS" BASIS,
181
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
182
+ > implied, including, without limitation, any warranties or conditions
183
+ > of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
184
+ > PARTICULAR PURPOSE. You are solely responsible for determining the
185
+ > appropriateness of using or redistributing the Work and assume any
186
+ > risks associated with Your exercise of permissions under this License.
187
+ >
188
+ > 8. Limitation of Liability. In no event and under no legal theory,
189
+ > whether in tort (including negligence), contract, or otherwise,
190
+ > unless required by applicable law (such as deliberate and grossly
191
+ > negligent acts) or agreed to in writing, shall any Contributor be
192
+ > liable to You for damages, including any direct, indirect, special,
193
+ > incidental, or consequential damages of any character arising as a
194
+ > result of this License or out of the use or inability to use the
195
+ > Work (including but not limited to damages for loss of goodwill,
196
+ > work stoppage, computer failure or malfunction, or any and all
197
+ > other commercial damages or losses), even if such Contributor
198
+ > has been advised of the possibility of such damages.
199
+ >
200
+ > 9. Accepting Warranty or Additional Liability. While redistributing
201
+ > the Work or Derivative Works thereof, You may choose to offer,
202
+ > and charge a fee for, acceptance of support, warranty, indemnity,
203
+ > or other liability obligations and/or rights consistent with this
204
+ > License. However, in accepting such obligations, You may act only
205
+ > on Your own behalf and on Your sole responsibility, not on behalf
206
+ > of any other Contributor, and only if You agree to indemnify,
207
+ > defend, and hold each Contributor harmless for any liability
208
+ > incurred by, or claims asserted against, such Contributor by reason
209
+ > of your accepting any such warranty or additional liability.
210
+ >
211
+ > END OF TERMS AND CONDITIONS
212
+ >
213
+ > APPENDIX: How to apply the Apache License to your work.
214
+ >
215
+ > To apply the Apache License to your work, attach the following
216
+ > boilerplate notice, with the fields enclosed by brackets "[]"
217
+ > replaced with your own identifying information. (Don't include
218
+ > the brackets!) The text should be enclosed in the appropriate
219
+ > comment syntax for the file format. We also recommend that a
220
+ > file or class name and description of purpose be included on the
221
+ > same "printed page" as the copyright notice for easier
222
+ > identification within third-party archives.
223
+ >
224
+ > Copyright [yyyy] [name of copyright owner]
225
+ >
226
+ > Licensed under the Apache License, Version 2.0 (the "License");
227
+ > you may not use this file except in compliance with the License.
228
+ > You may obtain a copy of the License at
229
+ >
230
+ > http://www.apache.org/licenses/LICENSE-2.0
231
+ >
232
+ > Unless required by applicable law or agreed to in writing, software
233
+ > distributed under the License is distributed on an "AS IS" BASIS,
234
+ > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
235
+ > See the License for the specific language governing permissions and
236
+ > limitations under the License.
237
+
238
+ ---------------------------------------
239
+
240
+ ## @jridgewell/gen-mapping
241
+ License: MIT
242
+ By: Justin Ridgewell
243
+ Repository: https://github.com/jridgewell/gen-mapping
244
+
245
+ > Copyright 2022 Justin Ridgewell <jridgewell@google.com>
246
+ >
247
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
248
+ > of this software and associated documentation files (the "Software"), to deal
249
+ > in the Software without restriction, including without limitation the rights
250
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
251
+ > copies of the Software, and to permit persons to whom the Software is
252
+ > furnished to do so, subject to the following conditions:
253
+ >
254
+ > The above copyright notice and this permission notice shall be included in
255
+ > all copies or substantial portions of the Software.
256
+ >
257
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
258
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
259
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
260
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
261
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
262
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
263
+ > SOFTWARE.
264
+
265
+ ---------------------------------------
266
+
267
+ ## @jridgewell/resolve-uri
268
+ License: MIT
269
+ By: Justin Ridgewell
270
+ Repository: https://github.com/jridgewell/resolve-uri
271
+
272
+ > Copyright 2019 Justin Ridgewell <jridgewell@google.com>
273
+ >
274
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
275
+ > of this software and associated documentation files (the "Software"), to deal
276
+ > in the Software without restriction, including without limitation the rights
277
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
278
+ > copies of the Software, and to permit persons to whom the Software is
279
+ > furnished to do so, subject to the following conditions:
280
+ >
281
+ > The above copyright notice and this permission notice shall be included in
282
+ > all copies or substantial portions of the Software.
283
+ >
284
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
285
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
286
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
287
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
288
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
289
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
290
+ > SOFTWARE.
291
+
292
+ ---------------------------------------
293
+
294
+ ## @jridgewell/set-array
295
+ License: MIT
296
+ By: Justin Ridgewell
297
+ Repository: https://github.com/jridgewell/set-array
298
+
299
+ > Copyright 2022 Justin Ridgewell <jridgewell@google.com>
300
+ >
301
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
302
+ > of this software and associated documentation files (the "Software"), to deal
303
+ > in the Software without restriction, including without limitation the rights
304
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
305
+ > copies of the Software, and to permit persons to whom the Software is
306
+ > furnished to do so, subject to the following conditions:
307
+ >
308
+ > The above copyright notice and this permission notice shall be included in
309
+ > all copies or substantial portions of the Software.
310
+ >
311
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
312
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
313
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
314
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
315
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
316
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
317
+ > SOFTWARE.
318
+
319
+ ---------------------------------------
320
+
321
+ ## @jridgewell/sourcemap-codec
322
+ License: MIT
323
+ By: Rich Harris
324
+ Repository: git+https://github.com/jridgewell/sourcemap-codec.git
325
+
326
+ > The MIT License
327
+ >
328
+ > Copyright (c) 2015 Rich Harris
329
+ >
330
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
331
+ > of this software and associated documentation files (the "Software"), to deal
332
+ > in the Software without restriction, including without limitation the rights
333
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
334
+ > copies of the Software, and to permit persons to whom the Software is
335
+ > furnished to do so, subject to the following conditions:
336
+ >
337
+ > The above copyright notice and this permission notice shall be included in
338
+ > all copies or substantial portions of the Software.
339
+ >
340
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
341
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
342
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
343
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
344
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
345
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
346
+ > THE SOFTWARE.
347
+
348
+ ---------------------------------------
349
+
350
+ ## @jridgewell/trace-mapping
351
+ License: MIT
352
+ By: Justin Ridgewell
353
+ Repository: git+https://github.com/jridgewell/trace-mapping.git
354
+
355
+ > Copyright 2022 Justin Ridgewell <justin@ridgewell.name>
356
+ >
357
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
358
+ > of this software and associated documentation files (the "Software"), to deal
359
+ > in the Software without restriction, including without limitation the rights
360
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
361
+ > copies of the Software, and to permit persons to whom the Software is
362
+ > furnished to do so, subject to the following conditions:
363
+ >
364
+ > The above copyright notice and this permission notice shall be included in
365
+ > all copies or substantial portions of the Software.
366
+ >
367
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
368
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
369
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
370
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
371
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
372
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
373
+ > SOFTWARE.
374
+
375
+ ---------------------------------------
376
+
377
+ ## @nodelib/fs.scandir
378
+ License: MIT
379
+ Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir
380
+
381
+ > The MIT License (MIT)
382
+ >
383
+ > Copyright (c) Denis Malinochkin
384
+ >
385
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
386
+ > of this software and associated documentation files (the "Software"), to deal
387
+ > in the Software without restriction, including without limitation the rights
388
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
389
+ > copies of the Software, and to permit persons to whom the Software is
390
+ > furnished to do so, subject to the following conditions:
391
+ >
392
+ > The above copyright notice and this permission notice shall be included in all
393
+ > copies or substantial portions of the Software.
394
+ >
395
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
396
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
397
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
398
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
399
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
400
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
401
+ > SOFTWARE.
402
+
403
+ ---------------------------------------
404
+
405
+ ## @nodelib/fs.stat
406
+ License: MIT
407
+ Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat
408
+
409
+ > The MIT License (MIT)
410
+ >
411
+ > Copyright (c) Denis Malinochkin
412
+ >
413
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
414
+ > of this software and associated documentation files (the "Software"), to deal
415
+ > in the Software without restriction, including without limitation the rights
416
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
417
+ > copies of the Software, and to permit persons to whom the Software is
418
+ > furnished to do so, subject to the following conditions:
419
+ >
420
+ > The above copyright notice and this permission notice shall be included in all
421
+ > copies or substantial portions of the Software.
422
+ >
423
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
424
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
425
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
426
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
427
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
428
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
429
+ > SOFTWARE.
430
+
431
+ ---------------------------------------
432
+
433
+ ## @nodelib/fs.walk
434
+ License: MIT
435
+ Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk
436
+
437
+ > The MIT License (MIT)
438
+ >
439
+ > Copyright (c) Denis Malinochkin
440
+ >
441
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
442
+ > of this software and associated documentation files (the "Software"), to deal
443
+ > in the Software without restriction, including without limitation the rights
444
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
445
+ > copies of the Software, and to permit persons to whom the Software is
446
+ > furnished to do so, subject to the following conditions:
447
+ >
448
+ > The above copyright notice and this permission notice shall be included in all
449
+ > copies or substantial portions of the Software.
450
+ >
451
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
452
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
453
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
454
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
455
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
456
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
457
+ > SOFTWARE.
458
+
459
+ ---------------------------------------
460
+
461
+ ## @polka/url
462
+ License: MIT
463
+ By: Luke Edwards
464
+ Repository: lukeed/polka
465
+
466
+ > The MIT License (MIT)
467
+ >
468
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)
469
+ >
470
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
471
+ > of this software and associated documentation files (the "Software"), to deal
472
+ > in the Software without restriction, including without limitation the rights
473
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
474
+ > copies of the Software, and to permit persons to whom the Software is
475
+ > furnished to do so, subject to the following conditions:
476
+ >
477
+ > The above copyright notice and this permission notice shall be included in
478
+ > all copies or substantial portions of the Software.
479
+ >
480
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
481
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
482
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
483
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
484
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
485
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
486
+ > THE SOFTWARE.
487
+
488
+ ---------------------------------------
489
+
490
+ ## @rollup/plugin-alias
491
+ License: MIT
492
+ By: Johannes Stein
493
+ Repository: rollup/plugins
494
+
495
+ ---------------------------------------
496
+
497
+ ## @rollup/plugin-commonjs
498
+ License: MIT
499
+ By: Rich Harris
500
+ Repository: rollup/plugins
501
+
502
+ > The MIT License (MIT)
503
+ >
504
+ > Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
505
+ >
506
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
507
+ > of this software and associated documentation files (the "Software"), to deal
508
+ > in the Software without restriction, including without limitation the rights
509
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
510
+ > copies of the Software, and to permit persons to whom the Software is
511
+ > furnished to do so, subject to the following conditions:
512
+ >
513
+ > The above copyright notice and this permission notice shall be included in
514
+ > all copies or substantial portions of the Software.
515
+ >
516
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
517
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
518
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
519
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
520
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
521
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
522
+ > THE SOFTWARE.
523
+
524
+ ---------------------------------------
525
+
526
+ ## @rollup/plugin-dynamic-import-vars
527
+ License: MIT
528
+ By: LarsDenBakker
529
+ Repository: rollup/plugins
530
+
531
+ ---------------------------------------
532
+
533
+ ## @rollup/pluginutils
534
+ License: MIT
535
+ By: Rich Harris
536
+ Repository: rollup/plugins
537
+
538
+ ---------------------------------------
539
+
540
+ ## acorn
541
+ License: MIT
542
+ By: Marijn Haverbeke, Ingvar Stepanyan, Adrian Heine
543
+ Repository: https://github.com/acornjs/acorn.git
544
+
545
+ > MIT License
546
+ >
547
+ > Copyright (C) 2012-2022 by various contributors (see AUTHORS)
548
+ >
549
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
550
+ > of this software and associated documentation files (the "Software"), to deal
551
+ > in the Software without restriction, including without limitation the rights
552
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
553
+ > copies of the Software, and to permit persons to whom the Software is
554
+ > furnished to do so, subject to the following conditions:
555
+ >
556
+ > The above copyright notice and this permission notice shall be included in
557
+ > all copies or substantial portions of the Software.
558
+ >
559
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
560
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
561
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
562
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
563
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
564
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
565
+ > THE SOFTWARE.
566
+
567
+ ---------------------------------------
568
+
569
+ ## acorn-walk
570
+ License: MIT
571
+ By: Marijn Haverbeke, Ingvar Stepanyan, Adrian Heine
572
+ Repository: https://github.com/acornjs/acorn.git
573
+
574
+ > MIT License
575
+ >
576
+ > Copyright (C) 2012-2020 by various contributors (see AUTHORS)
577
+ >
578
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
579
+ > of this software and associated documentation files (the "Software"), to deal
580
+ > in the Software without restriction, including without limitation the rights
581
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
582
+ > copies of the Software, and to permit persons to whom the Software is
583
+ > furnished to do so, subject to the following conditions:
584
+ >
585
+ > The above copyright notice and this permission notice shall be included in
586
+ > all copies or substantial portions of the Software.
587
+ >
588
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
589
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
590
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
591
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
592
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
593
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
594
+ > THE SOFTWARE.
595
+
596
+ ---------------------------------------
597
+
598
+ ## ansi-regex
599
+ License: MIT
600
+ By: Sindre Sorhus
601
+ Repository: chalk/ansi-regex
602
+
603
+ > MIT License
604
+ >
605
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
606
+ >
607
+ > 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:
608
+ >
609
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
610
+ >
611
+ > 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.
612
+
613
+ ---------------------------------------
614
+
615
+ ## anymatch
616
+ License: ISC
617
+ By: Elan Shanker
618
+ Repository: https://github.com/micromatch/anymatch
619
+
620
+ > The ISC License
621
+ >
622
+ > Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
623
+ >
624
+ > Permission to use, copy, modify, and/or distribute this software for any
625
+ > purpose with or without fee is hereby granted, provided that the above
626
+ > copyright notice and this permission notice appear in all copies.
627
+ >
628
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
629
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
630
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
631
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
632
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
633
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
634
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
635
+
636
+ ---------------------------------------
637
+
638
+ ## balanced-match
639
+ License: MIT
640
+ By: Julian Gruber
641
+ Repository: git://github.com/juliangruber/balanced-match.git
642
+
643
+ > (MIT)
644
+ >
645
+ > Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
646
+ >
647
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
648
+ > this software and associated documentation files (the "Software"), to deal in
649
+ > the Software without restriction, including without limitation the rights to
650
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
651
+ > of the Software, and to permit persons to whom the Software is furnished to do
652
+ > so, subject to the following conditions:
653
+ >
654
+ > The above copyright notice and this permission notice shall be included in all
655
+ > copies or substantial portions of the Software.
656
+ >
657
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
658
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
659
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
660
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
661
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
662
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
663
+ > SOFTWARE.
664
+
665
+ ---------------------------------------
666
+
667
+ ## binary-extensions
668
+ License: MIT
669
+ By: Sindre Sorhus
670
+ Repository: sindresorhus/binary-extensions
671
+
672
+ > MIT License
673
+ >
674
+ > Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
675
+ >
676
+ > 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:
677
+ >
678
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
679
+ >
680
+ > 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.
681
+
682
+ ---------------------------------------
683
+
684
+ ## brace-expansion
685
+ License: MIT
686
+ By: Julian Gruber
687
+ Repository: git://github.com/juliangruber/brace-expansion.git
688
+
689
+ > MIT License
690
+ >
691
+ > Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
692
+ >
693
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
694
+ > of this software and associated documentation files (the "Software"), to deal
695
+ > in the Software without restriction, including without limitation the rights
696
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
697
+ > copies of the Software, and to permit persons to whom the Software is
698
+ > furnished to do so, subject to the following conditions:
699
+ >
700
+ > The above copyright notice and this permission notice shall be included in all
701
+ > copies or substantial portions of the Software.
702
+ >
703
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
704
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
705
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
706
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
707
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
708
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
709
+ > SOFTWARE.
710
+
711
+ ---------------------------------------
712
+
713
+ ## braces
714
+ License: MIT
715
+ By: Jon Schlinkert, Brian Woodward, Elan Shanker, Eugene Sharygin, hemanth.hm
716
+ Repository: micromatch/braces
717
+
718
+ > The MIT License (MIT)
719
+ >
720
+ > Copyright (c) 2014-2018, Jon Schlinkert.
721
+ >
722
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
723
+ > of this software and associated documentation files (the "Software"), to deal
724
+ > in the Software without restriction, including without limitation the rights
725
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
726
+ > copies of the Software, and to permit persons to whom the Software is
727
+ > furnished to do so, subject to the following conditions:
728
+ >
729
+ > The above copyright notice and this permission notice shall be included in
730
+ > all copies or substantial portions of the Software.
731
+ >
732
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
733
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
734
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
735
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
736
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
737
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
738
+ > THE SOFTWARE.
739
+
740
+ ---------------------------------------
741
+
742
+ ## cac
743
+ License: MIT
744
+ By: egoist
745
+ Repository: egoist/cac
746
+
747
+ > The MIT License (MIT)
748
+ >
749
+ > Copyright (c) EGOIST <0x142857@gmail.com> (https://github.com/egoist)
750
+ >
751
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
752
+ > of this software and associated documentation files (the "Software"), to deal
753
+ > in the Software without restriction, including without limitation the rights
754
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
755
+ > copies of the Software, and to permit persons to whom the Software is
756
+ > furnished to do so, subject to the following conditions:
757
+ >
758
+ > The above copyright notice and this permission notice shall be included in
759
+ > all copies or substantial portions of the Software.
760
+ >
761
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
762
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
763
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
764
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
765
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
766
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
767
+ > THE SOFTWARE.
768
+
769
+ ---------------------------------------
770
+
771
+ ## chokidar
772
+ License: MIT
773
+ By: Paul Miller, Elan Shanker
774
+ Repository: git+https://github.com/paulmillr/chokidar.git
775
+
776
+ > The MIT License (MIT)
777
+ >
778
+ > Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
779
+ >
780
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
781
+ > of this software and associated documentation files (the “Software”), to deal
782
+ > in the Software without restriction, including without limitation the rights
783
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
784
+ > copies of the Software, and to permit persons to whom the Software is
785
+ > furnished to do so, subject to the following conditions:
786
+ >
787
+ > The above copyright notice and this permission notice shall be included in
788
+ > all copies or substantial portions of the Software.
789
+ >
790
+ > THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
791
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
792
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
793
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
794
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
795
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
796
+ > THE SOFTWARE.
797
+
798
+ ---------------------------------------
799
+
800
+ ## commondir
801
+ License: MIT
802
+ By: James Halliday
803
+ Repository: http://github.com/substack/node-commondir.git
804
+
805
+ > The MIT License
806
+ >
807
+ > Copyright (c) 2013 James Halliday (mail@substack.net)
808
+ >
809
+ > Permission is hereby granted, free of charge,
810
+ > to any person obtaining a copy of this software and
811
+ > associated documentation files (the "Software"), to
812
+ > deal in the Software without restriction, including
813
+ > without limitation the rights to use, copy, modify,
814
+ > merge, publish, distribute, sublicense, and/or sell
815
+ > copies of the Software, and to permit persons to whom
816
+ > the Software is furnished to do so,
817
+ > subject to the following conditions:
818
+ >
819
+ > The above copyright notice and this permission notice
820
+ > shall be included in all copies or substantial portions of the Software.
821
+ >
822
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
823
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
824
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
825
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
826
+ > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
827
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
828
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
829
+
830
+ ---------------------------------------
831
+
832
+ ## connect
833
+ License: MIT
834
+ By: TJ Holowaychuk, Douglas Christopher Wilson, Jonathan Ong, Tim Caswell
835
+ Repository: senchalabs/connect
836
+
837
+ > (The MIT License)
838
+ >
839
+ > Copyright (c) 2010 Sencha Inc.
840
+ > Copyright (c) 2011 LearnBoost
841
+ > Copyright (c) 2011-2014 TJ Holowaychuk
842
+ > Copyright (c) 2015 Douglas Christopher Wilson
843
+ >
844
+ > Permission is hereby granted, free of charge, to any person obtaining
845
+ > a copy of this software and associated documentation files (the
846
+ > 'Software'), to deal in the Software without restriction, including
847
+ > without limitation the rights to use, copy, modify, merge, publish,
848
+ > distribute, sublicense, and/or sell copies of the Software, and to
849
+ > permit persons to whom the Software is furnished to do so, subject to
850
+ > the following conditions:
851
+ >
852
+ > The above copyright notice and this permission notice shall be
853
+ > included in all copies or substantial portions of the Software.
854
+ >
855
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
856
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
857
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
858
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
859
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
860
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
861
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
862
+
863
+ ---------------------------------------
864
+
865
+ ## connect-history-api-fallback
866
+ License: MIT
867
+ By: Ben Ripkens, Craig Myles
868
+ Repository: http://github.com/bripkens/connect-history-api-fallback.git
869
+
870
+ > The MIT License
871
+ >
872
+ > Copyright (c) 2022 Ben Blackmore and contributors
873
+ >
874
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
875
+ > of this software and associated documentation files (the "Software"), to deal
876
+ > in the Software without restriction, including without limitation the rights
877
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
878
+ > copies of the Software, and to permit persons to whom the Software is
879
+ > furnished to do so, subject to the following conditions:
880
+ >
881
+ > The above copyright notice and this permission notice shall be included in
882
+ > all copies or substantial portions of the Software.
883
+ >
884
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
885
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
886
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
887
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
888
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
889
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
890
+ > THE SOFTWARE.
891
+
892
+ ---------------------------------------
893
+
894
+ ## convert-source-map
895
+ License: MIT
896
+ By: Thorsten Lorenz
897
+ Repository: git://github.com/thlorenz/convert-source-map.git
898
+
899
+ > Copyright 2013 Thorsten Lorenz.
900
+ > All rights reserved.
901
+ >
902
+ > Permission is hereby granted, free of charge, to any person
903
+ > obtaining a copy of this software and associated documentation
904
+ > files (the "Software"), to deal in the Software without
905
+ > restriction, including without limitation the rights to use,
906
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
907
+ > copies of the Software, and to permit persons to whom the
908
+ > Software is furnished to do so, subject to the following
909
+ > conditions:
910
+ >
911
+ > The above copyright notice and this permission notice shall be
912
+ > included in all copies or substantial portions of the Software.
913
+ >
914
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
915
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
916
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
917
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
918
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
919
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
920
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
921
+ > OTHER DEALINGS IN THE SOFTWARE.
922
+
923
+ ---------------------------------------
924
+
925
+ ## cors
926
+ License: MIT
927
+ By: Troy Goode
928
+ Repository: expressjs/cors
929
+
930
+ > (The MIT License)
931
+ >
932
+ > Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
933
+ >
934
+ > Permission is hereby granted, free of charge, to any person obtaining
935
+ > a copy of this software and associated documentation files (the
936
+ > 'Software'), to deal in the Software without restriction, including
937
+ > without limitation the rights to use, copy, modify, merge, publish,
938
+ > distribute, sublicense, and/or sell copies of the Software, and to
939
+ > permit persons to whom the Software is furnished to do so, subject to
940
+ > the following conditions:
941
+ >
942
+ > The above copyright notice and this permission notice shall be
943
+ > included in all copies or substantial portions of the Software.
944
+ >
945
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
946
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
947
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
948
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
949
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
950
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
951
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
952
+
953
+ ---------------------------------------
954
+
955
+ ## cross-spawn
956
+ License: MIT
957
+ By: André Cruz
958
+ Repository: git@github.com:moxystudio/node-cross-spawn.git
959
+
960
+ > The MIT License (MIT)
961
+ >
962
+ > Copyright (c) 2018 Made With MOXY Lda <hello@moxy.studio>
963
+ >
964
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
965
+ > of this software and associated documentation files (the "Software"), to deal
966
+ > in the Software without restriction, including without limitation the rights
967
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
968
+ > copies of the Software, and to permit persons to whom the Software is
969
+ > furnished to do so, subject to the following conditions:
970
+ >
971
+ > The above copyright notice and this permission notice shall be included in
972
+ > all copies or substantial portions of the Software.
973
+ >
974
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
975
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
976
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
977
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
978
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
979
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
980
+ > THE SOFTWARE.
981
+
982
+ ---------------------------------------
983
+
984
+ ## cssesc
985
+ License: MIT
986
+ By: Mathias Bynens
987
+ Repository: https://github.com/mathiasbynens/cssesc.git
988
+
989
+ > Copyright Mathias Bynens <https://mathiasbynens.be/>
990
+ >
991
+ > Permission is hereby granted, free of charge, to any person obtaining
992
+ > a copy of this software and associated documentation files (the
993
+ > "Software"), to deal in the Software without restriction, including
994
+ > without limitation the rights to use, copy, modify, merge, publish,
995
+ > distribute, sublicense, and/or sell copies of the Software, and to
996
+ > permit persons to whom the Software is furnished to do so, subject to
997
+ > the following conditions:
998
+ >
999
+ > The above copyright notice and this permission notice shall be
1000
+ > included in all copies or substantial portions of the Software.
1001
+ >
1002
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1003
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1004
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1005
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1006
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1007
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1008
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1009
+
1010
+ ---------------------------------------
1011
+
1012
+ ## debug
1013
+ License: MIT
1014
+ By: Josh Junon, TJ Holowaychuk, Nathan Rajlich, Andrew Rhyne
1015
+ Repository: git://github.com/debug-js/debug.git
1016
+
1017
+ > (The MIT License)
1018
+ >
1019
+ > Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
1020
+ > Copyright (c) 2018-2021 Josh Junon
1021
+ >
1022
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software
1023
+ > and associated documentation files (the 'Software'), to deal in the Software without restriction,
1024
+ > including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
1025
+ > and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
1026
+ > subject to the following conditions:
1027
+ >
1028
+ > The above copyright notice and this permission notice shall be included in all copies or substantial
1029
+ > portions of the Software.
1030
+ >
1031
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
1032
+ > LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1033
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1034
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1035
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1036
+
1037
+ ---------------------------------------
1038
+
1039
+ ## define-lazy-prop
1040
+ License: MIT
1041
+ By: Sindre Sorhus
1042
+ Repository: sindresorhus/define-lazy-prop
1043
+
1044
+ > MIT License
1045
+ >
1046
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1047
+ >
1048
+ > 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:
1049
+ >
1050
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1051
+ >
1052
+ > 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.
1053
+
1054
+ ---------------------------------------
1055
+
1056
+ ## dotenv
1057
+ License: BSD-2-Clause
1058
+ Repository: git://github.com/motdotla/dotenv.git
1059
+
1060
+ > Copyright (c) 2015, Scott Motte
1061
+ > All rights reserved.
1062
+ >
1063
+ > Redistribution and use in source and binary forms, with or without
1064
+ > modification, are permitted provided that the following conditions are met:
1065
+ >
1066
+ > * Redistributions of source code must retain the above copyright notice, this
1067
+ > list of conditions and the following disclaimer.
1068
+ >
1069
+ > * Redistributions in binary form must reproduce the above copyright notice,
1070
+ > this list of conditions and the following disclaimer in the documentation
1071
+ > and/or other materials provided with the distribution.
1072
+ >
1073
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1074
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1075
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1076
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1077
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1078
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1079
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1080
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1081
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1082
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1083
+
1084
+ ---------------------------------------
1085
+
1086
+ ## dotenv-expand
1087
+ License: BSD-2-Clause
1088
+ By: motdotla
1089
+ Repository: https://github.com/motdotla/dotenv-expand
1090
+
1091
+ > Copyright (c) 2016, Scott Motte
1092
+ > All rights reserved.
1093
+ >
1094
+ > Redistribution and use in source and binary forms, with or without
1095
+ > modification, are permitted provided that the following conditions are met:
1096
+ >
1097
+ > * Redistributions of source code must retain the above copyright notice, this
1098
+ > list of conditions and the following disclaimer.
1099
+ >
1100
+ > * Redistributions in binary form must reproduce the above copyright notice,
1101
+ > this list of conditions and the following disclaimer in the documentation
1102
+ > and/or other materials provided with the distribution.
1103
+ >
1104
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1105
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1106
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1107
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1108
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1109
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1110
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1111
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1112
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1113
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1114
+
1115
+ ---------------------------------------
1116
+
1117
+ ## ee-first
1118
+ License: MIT
1119
+ By: Jonathan Ong, Douglas Christopher Wilson
1120
+ Repository: jonathanong/ee-first
1121
+
1122
+ > The MIT License (MIT)
1123
+ >
1124
+ > Copyright (c) 2014 Jonathan Ong me@jongleberry.com
1125
+ >
1126
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1127
+ > of this software and associated documentation files (the "Software"), to deal
1128
+ > in the Software without restriction, including without limitation the rights
1129
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1130
+ > copies of the Software, and to permit persons to whom the Software is
1131
+ > furnished to do so, subject to the following conditions:
1132
+ >
1133
+ > The above copyright notice and this permission notice shall be included in
1134
+ > all copies or substantial portions of the Software.
1135
+ >
1136
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1137
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1138
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1139
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1140
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1141
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1142
+ > THE SOFTWARE.
1143
+
1144
+ ---------------------------------------
1145
+
1146
+ ## encodeurl
1147
+ License: MIT
1148
+ By: Douglas Christopher Wilson
1149
+ Repository: pillarjs/encodeurl
1150
+
1151
+ > (The MIT License)
1152
+ >
1153
+ > Copyright (c) 2016 Douglas Christopher Wilson
1154
+ >
1155
+ > Permission is hereby granted, free of charge, to any person obtaining
1156
+ > a copy of this software and associated documentation files (the
1157
+ > 'Software'), to deal in the Software without restriction, including
1158
+ > without limitation the rights to use, copy, modify, merge, publish,
1159
+ > distribute, sublicense, and/or sell copies of the Software, and to
1160
+ > permit persons to whom the Software is furnished to do so, subject to
1161
+ > the following conditions:
1162
+ >
1163
+ > The above copyright notice and this permission notice shall be
1164
+ > included in all copies or substantial portions of the Software.
1165
+ >
1166
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1167
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1168
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1169
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1170
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1171
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1172
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1173
+
1174
+ ---------------------------------------
1175
+
1176
+ ## entities
1177
+ License: BSD-2-Clause
1178
+ By: Felix Boehm
1179
+ Repository: git://github.com/fb55/entities.git
1180
+
1181
+ > Copyright (c) Felix Böhm
1182
+ > All rights reserved.
1183
+ >
1184
+ > Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1185
+ >
1186
+ > Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1187
+ >
1188
+ > Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1189
+ >
1190
+ > THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
1191
+ > EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1192
+
1193
+ ---------------------------------------
1194
+
1195
+ ## es-module-lexer
1196
+ License: MIT
1197
+ By: Guy Bedford
1198
+ Repository: git+https://github.com/guybedford/es-module-lexer.git
1199
+
1200
+ > MIT License
1201
+ > -----------
1202
+ >
1203
+ > Copyright (C) 2018-2022 Guy Bedford
1204
+ >
1205
+ > 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:
1206
+ >
1207
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1208
+ >
1209
+ > 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.
1210
+
1211
+ ---------------------------------------
1212
+
1213
+ ## escape-html
1214
+ License: MIT
1215
+ Repository: component/escape-html
1216
+
1217
+ > (The MIT License)
1218
+ >
1219
+ > Copyright (c) 2012-2013 TJ Holowaychuk
1220
+ > Copyright (c) 2015 Andreas Lubbe
1221
+ > Copyright (c) 2015 Tiancheng "Timothy" Gu
1222
+ >
1223
+ > Permission is hereby granted, free of charge, to any person obtaining
1224
+ > a copy of this software and associated documentation files (the
1225
+ > 'Software'), to deal in the Software without restriction, including
1226
+ > without limitation the rights to use, copy, modify, merge, publish,
1227
+ > distribute, sublicense, and/or sell copies of the Software, and to
1228
+ > permit persons to whom the Software is furnished to do so, subject to
1229
+ > the following conditions:
1230
+ >
1231
+ > The above copyright notice and this permission notice shall be
1232
+ > included in all copies or substantial portions of the Software.
1233
+ >
1234
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1235
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1236
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1237
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1238
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1239
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1240
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1241
+
1242
+ ---------------------------------------
1243
+
1244
+ ## estree-walker
1245
+ License: MIT
1246
+ By: Rich Harris
1247
+ Repository: https://github.com/Rich-Harris/estree-walker
1248
+
1249
+ > Copyright (c) 2015-20 [these people](https://github.com/Rich-Harris/estree-walker/graphs/contributors)
1250
+ >
1251
+ > 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:
1252
+ >
1253
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1254
+ >
1255
+ > 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.
1256
+
1257
+ ---------------------------------------
1258
+
1259
+ ## etag
1260
+ License: MIT
1261
+ By: Douglas Christopher Wilson, David Björklund
1262
+ Repository: jshttp/etag
1263
+
1264
+ > (The MIT License)
1265
+ >
1266
+ > Copyright (c) 2014-2016 Douglas Christopher Wilson
1267
+ >
1268
+ > Permission is hereby granted, free of charge, to any person obtaining
1269
+ > a copy of this software and associated documentation files (the
1270
+ > 'Software'), to deal in the Software without restriction, including
1271
+ > without limitation the rights to use, copy, modify, merge, publish,
1272
+ > distribute, sublicense, and/or sell copies of the Software, and to
1273
+ > permit persons to whom the Software is furnished to do so, subject to
1274
+ > the following conditions:
1275
+ >
1276
+ > The above copyright notice and this permission notice shall be
1277
+ > included in all copies or substantial portions of the Software.
1278
+ >
1279
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1280
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1281
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1282
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1283
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1284
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1285
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1286
+
1287
+ ---------------------------------------
1288
+
1289
+ ## eventemitter3
1290
+ License: MIT
1291
+ By: Arnout Kazemier
1292
+ Repository: git://github.com/primus/eventemitter3.git
1293
+
1294
+ > The MIT License (MIT)
1295
+ >
1296
+ > Copyright (c) 2014 Arnout Kazemier
1297
+ >
1298
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1299
+ > of this software and associated documentation files (the "Software"), to deal
1300
+ > in the Software without restriction, including without limitation the rights
1301
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1302
+ > copies of the Software, and to permit persons to whom the Software is
1303
+ > furnished to do so, subject to the following conditions:
1304
+ >
1305
+ > The above copyright notice and this permission notice shall be included in all
1306
+ > copies or substantial portions of the Software.
1307
+ >
1308
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1309
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1310
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1311
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1312
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1313
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1314
+ > SOFTWARE.
1315
+
1316
+ ---------------------------------------
1317
+
1318
+ ## fast-glob
1319
+ License: MIT
1320
+ By: Denis Malinochkin
1321
+ Repository: mrmlnc/fast-glob
1322
+
1323
+ > The MIT License (MIT)
1324
+ >
1325
+ > Copyright (c) Denis Malinochkin
1326
+ >
1327
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1328
+ > of this software and associated documentation files (the "Software"), to deal
1329
+ > in the Software without restriction, including without limitation the rights
1330
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1331
+ > copies of the Software, and to permit persons to whom the Software is
1332
+ > furnished to do so, subject to the following conditions:
1333
+ >
1334
+ > The above copyright notice and this permission notice shall be included in all
1335
+ > copies or substantial portions of the Software.
1336
+ >
1337
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1338
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1339
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1340
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1341
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1342
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1343
+ > SOFTWARE.
1344
+
1345
+ ---------------------------------------
1346
+
1347
+ ## fastq
1348
+ License: ISC
1349
+ By: Matteo Collina
1350
+ Repository: git+https://github.com/mcollina/fastq.git
1351
+
1352
+ > Copyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>
1353
+ >
1354
+ > Permission to use, copy, modify, and/or distribute this software for any
1355
+ > purpose with or without fee is hereby granted, provided that the above
1356
+ > copyright notice and this permission notice appear in all copies.
1357
+ >
1358
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1359
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1360
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1361
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1362
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1363
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1364
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1365
+
1366
+ ---------------------------------------
1367
+
1368
+ ## fill-range
1369
+ License: MIT
1370
+ By: Jon Schlinkert, Edo Rivai, Paul Miller, Rouven Weßling
1371
+ Repository: jonschlinkert/fill-range
1372
+
1373
+ > The MIT License (MIT)
1374
+ >
1375
+ > Copyright (c) 2014-present, Jon Schlinkert.
1376
+ >
1377
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1378
+ > of this software and associated documentation files (the "Software"), to deal
1379
+ > in the Software without restriction, including without limitation the rights
1380
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1381
+ > copies of the Software, and to permit persons to whom the Software is
1382
+ > furnished to do so, subject to the following conditions:
1383
+ >
1384
+ > The above copyright notice and this permission notice shall be included in
1385
+ > all copies or substantial portions of the Software.
1386
+ >
1387
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1388
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1389
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1390
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1391
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1392
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1393
+ > THE SOFTWARE.
1394
+
1395
+ ---------------------------------------
1396
+
1397
+ ## finalhandler
1398
+ License: MIT
1399
+ By: Douglas Christopher Wilson
1400
+ Repository: pillarjs/finalhandler
1401
+
1402
+ > (The MIT License)
1403
+ >
1404
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
1405
+ >
1406
+ > Permission is hereby granted, free of charge, to any person obtaining
1407
+ > a copy of this software and associated documentation files (the
1408
+ > 'Software'), to deal in the Software without restriction, including
1409
+ > without limitation the rights to use, copy, modify, merge, publish,
1410
+ > distribute, sublicense, and/or sell copies of the Software, and to
1411
+ > permit persons to whom the Software is furnished to do so, subject to
1412
+ > the following conditions:
1413
+ >
1414
+ > The above copyright notice and this permission notice shall be
1415
+ > included in all copies or substantial portions of the Software.
1416
+ >
1417
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1418
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1419
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1420
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1421
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1422
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1423
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1424
+
1425
+ ---------------------------------------
1426
+
1427
+ ## follow-redirects
1428
+ License: MIT
1429
+ By: Ruben Verborgh, Olivier Lalonde, James Talmage
1430
+ Repository: git@github.com:follow-redirects/follow-redirects.git
1431
+
1432
+ > Copyright 2014–present Olivier Lalonde <olalonde@gmail.com>, James Talmage <james@talmage.io>, Ruben Verborgh
1433
+ >
1434
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1435
+ > this software and associated documentation files (the "Software"), to deal in
1436
+ > the Software without restriction, including without limitation the rights to
1437
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1438
+ > of the Software, and to permit persons to whom the Software is furnished to do
1439
+ > so, subject to the following conditions:
1440
+ >
1441
+ > The above copyright notice and this permission notice shall be included in all
1442
+ > copies or substantial portions of the Software.
1443
+ >
1444
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1445
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1446
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1447
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1448
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
1449
+ > IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1450
+
1451
+ ---------------------------------------
1452
+
1453
+ ## fs.realpath
1454
+ License: ISC
1455
+ By: Isaac Z. Schlueter
1456
+ Repository: git+https://github.com/isaacs/fs.realpath.git
1457
+
1458
+ > The ISC License
1459
+ >
1460
+ > Copyright (c) Isaac Z. Schlueter and Contributors
1461
+ >
1462
+ > Permission to use, copy, modify, and/or distribute this software for any
1463
+ > purpose with or without fee is hereby granted, provided that the above
1464
+ > copyright notice and this permission notice appear in all copies.
1465
+ >
1466
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1467
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1468
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1469
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1470
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1471
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1472
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1473
+ >
1474
+ > ----
1475
+ >
1476
+ > This library bundles a version of the `fs.realpath` and `fs.realpathSync`
1477
+ > methods from Node.js v0.10 under the terms of the Node.js MIT license.
1478
+ >
1479
+ > Node's license follows, also included at the header of `old.js` which contains
1480
+ > the licensed code:
1481
+ >
1482
+ > Copyright Joyent, Inc. and other Node contributors.
1483
+ >
1484
+ > Permission is hereby granted, free of charge, to any person obtaining a
1485
+ > copy of this software and associated documentation files (the "Software"),
1486
+ > to deal in the Software without restriction, including without limitation
1487
+ > the rights to use, copy, modify, merge, publish, distribute, sublicense,
1488
+ > and/or sell copies of the Software, and to permit persons to whom the
1489
+ > Software is furnished to do so, subject to the following conditions:
1490
+ >
1491
+ > The above copyright notice and this permission notice shall be included in
1492
+ > all copies or substantial portions of the Software.
1493
+ >
1494
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1495
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1496
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1497
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1498
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1499
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1500
+ > DEALINGS IN THE SOFTWARE.
1501
+
1502
+ ---------------------------------------
1503
+
1504
+ ## generic-names
1505
+ License: MIT
1506
+ By: Alexey Litvinov
1507
+ Repository: git+https://github.com/css-modules/generic-names.git
1508
+
1509
+ > The MIT License (MIT)
1510
+ >
1511
+ > Copyright (c) 2015 Alexey Litvinov
1512
+ >
1513
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1514
+ > of this software and associated documentation files (the "Software"), to deal
1515
+ > in the Software without restriction, including without limitation the rights
1516
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1517
+ > copies of the Software, and to permit persons to whom the Software is
1518
+ > furnished to do so, subject to the following conditions:
1519
+ >
1520
+ > The above copyright notice and this permission notice shall be included in all
1521
+ > copies or substantial portions of the Software.
1522
+ >
1523
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1524
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1525
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1526
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1527
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1528
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1529
+ > SOFTWARE.
1530
+
1531
+ ---------------------------------------
1532
+
1533
+ ## glob
1534
+ License: ISC
1535
+ By: Isaac Z. Schlueter
1536
+ Repository: git://github.com/isaacs/node-glob.git
1537
+
1538
+ > The ISC License
1539
+ >
1540
+ > Copyright (c) 2009-2022 Isaac Z. Schlueter and Contributors
1541
+ >
1542
+ > Permission to use, copy, modify, and/or distribute this software for any
1543
+ > purpose with or without fee is hereby granted, provided that the above
1544
+ > copyright notice and this permission notice appear in all copies.
1545
+ >
1546
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1547
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1548
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1549
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1550
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1551
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1552
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1553
+
1554
+ ---------------------------------------
1555
+
1556
+ ## glob-parent
1557
+ License: ISC
1558
+ By: Gulp Team, Elan Shanker, Blaine Bublitz
1559
+ Repository: gulpjs/glob-parent
1560
+
1561
+ > The ISC License
1562
+ >
1563
+ > Copyright (c) 2015, 2019 Elan Shanker
1564
+ >
1565
+ > Permission to use, copy, modify, and/or distribute this software for any
1566
+ > purpose with or without fee is hereby granted, provided that the above
1567
+ > copyright notice and this permission notice appear in all copies.
1568
+ >
1569
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1570
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1571
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1572
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1573
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1574
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1575
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1576
+
1577
+ ---------------------------------------
1578
+
1579
+ ## http-proxy
1580
+ License: MIT
1581
+ By: Charlie Robbins, jcrugzz <jcrugzz@gmail.com>
1582
+ Repository: https://github.com/http-party/node-http-proxy.git
1583
+
1584
+ > node-http-proxy
1585
+ >
1586
+ > Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors.
1587
+ >
1588
+ > Permission is hereby granted, free of charge, to any person obtaining
1589
+ > a copy of this software and associated documentation files (the
1590
+ > "Software"), to deal in the Software without restriction, including
1591
+ > without limitation the rights to use, copy, modify, merge, publish,
1592
+ > distribute, sublicense, and/or sell copies of the Software, and to
1593
+ > permit persons to whom the Software is furnished to do so, subject to
1594
+ > the following conditions:
1595
+ >
1596
+ > The above copyright notice and this permission notice shall be
1597
+ > included in all copies or substantial portions of the Software.
1598
+ >
1599
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1600
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1601
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1602
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1603
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1604
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1605
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1606
+
1607
+ ---------------------------------------
1608
+
1609
+ ## icss-utils
1610
+ License: ISC
1611
+ By: Glen Maddern
1612
+ Repository: git+https://github.com/css-modules/icss-utils.git
1613
+
1614
+ > ISC License (ISC)
1615
+ > Copyright 2018 Glen Maddern
1616
+ >
1617
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
1618
+ >
1619
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1620
+
1621
+ ---------------------------------------
1622
+
1623
+ ## inflight
1624
+ License: ISC
1625
+ By: Isaac Z. Schlueter
1626
+ Repository: https://github.com/npm/inflight.git
1627
+
1628
+ > The ISC License
1629
+ >
1630
+ > Copyright (c) Isaac Z. Schlueter
1631
+ >
1632
+ > Permission to use, copy, modify, and/or distribute this software for any
1633
+ > purpose with or without fee is hereby granted, provided that the above
1634
+ > copyright notice and this permission notice appear in all copies.
1635
+ >
1636
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1637
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1638
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1639
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1640
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1641
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1642
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1643
+
1644
+ ---------------------------------------
1645
+
1646
+ ## inherits
1647
+ License: ISC
1648
+ Repository: git://github.com/isaacs/inherits
1649
+
1650
+ > The ISC License
1651
+ >
1652
+ > Copyright (c) Isaac Z. Schlueter
1653
+ >
1654
+ > Permission to use, copy, modify, and/or distribute this software for any
1655
+ > purpose with or without fee is hereby granted, provided that the above
1656
+ > copyright notice and this permission notice appear in all copies.
1657
+ >
1658
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1659
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1660
+ > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1661
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1662
+ > LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1663
+ > OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1664
+ > PERFORMANCE OF THIS SOFTWARE.
1665
+
1666
+ ---------------------------------------
1667
+
1668
+ ## is-binary-path
1669
+ License: MIT
1670
+ By: Sindre Sorhus
1671
+ Repository: sindresorhus/is-binary-path
1672
+
1673
+ > MIT License
1674
+ >
1675
+ > Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
1676
+ >
1677
+ > 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:
1678
+ >
1679
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1680
+ >
1681
+ > 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.
1682
+
1683
+ ---------------------------------------
1684
+
1685
+ ## is-docker
1686
+ License: MIT
1687
+ By: Sindre Sorhus
1688
+ Repository: sindresorhus/is-docker
1689
+
1690
+ > MIT License
1691
+ >
1692
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1693
+ >
1694
+ > 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:
1695
+ >
1696
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1697
+ >
1698
+ > 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.
1699
+
1700
+ ---------------------------------------
1701
+
1702
+ ## is-extglob
1703
+ License: MIT
1704
+ By: Jon Schlinkert
1705
+ Repository: jonschlinkert/is-extglob
1706
+
1707
+ > The MIT License (MIT)
1708
+ >
1709
+ > Copyright (c) 2014-2016, Jon Schlinkert
1710
+ >
1711
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1712
+ > of this software and associated documentation files (the "Software"), to deal
1713
+ > in the Software without restriction, including without limitation the rights
1714
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1715
+ > copies of the Software, and to permit persons to whom the Software is
1716
+ > furnished to do so, subject to the following conditions:
1717
+ >
1718
+ > The above copyright notice and this permission notice shall be included in
1719
+ > all copies or substantial portions of the Software.
1720
+ >
1721
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1722
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1723
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1724
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1725
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1726
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1727
+ > THE SOFTWARE.
1728
+
1729
+ ---------------------------------------
1730
+
1731
+ ## is-glob
1732
+ License: MIT
1733
+ By: Jon Schlinkert, Brian Woodward, Daniel Perez
1734
+ Repository: micromatch/is-glob
1735
+
1736
+ > The MIT License (MIT)
1737
+ >
1738
+ > Copyright (c) 2014-2017, Jon Schlinkert.
1739
+ >
1740
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1741
+ > of this software and associated documentation files (the "Software"), to deal
1742
+ > in the Software without restriction, including without limitation the rights
1743
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1744
+ > copies of the Software, and to permit persons to whom the Software is
1745
+ > furnished to do so, subject to the following conditions:
1746
+ >
1747
+ > The above copyright notice and this permission notice shall be included in
1748
+ > all copies or substantial portions of the Software.
1749
+ >
1750
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1751
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1752
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1753
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1754
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1755
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1756
+ > THE SOFTWARE.
1757
+
1758
+ ---------------------------------------
1759
+
1760
+ ## is-number
1761
+ License: MIT
1762
+ By: Jon Schlinkert, Olsten Larck, Rouven Weßling
1763
+ Repository: jonschlinkert/is-number
1764
+
1765
+ > The MIT License (MIT)
1766
+ >
1767
+ > Copyright (c) 2014-present, Jon Schlinkert.
1768
+ >
1769
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1770
+ > of this software and associated documentation files (the "Software"), to deal
1771
+ > in the Software without restriction, including without limitation the rights
1772
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1773
+ > copies of the Software, and to permit persons to whom the Software is
1774
+ > furnished to do so, subject to the following conditions:
1775
+ >
1776
+ > The above copyright notice and this permission notice shall be included in
1777
+ > all copies or substantial portions of the Software.
1778
+ >
1779
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1780
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1781
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1782
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1783
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1784
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1785
+ > THE SOFTWARE.
1786
+
1787
+ ---------------------------------------
1788
+
1789
+ ## is-reference
1790
+ License: MIT
1791
+ By: Rich Harris
1792
+ Repository: git+https://github.com/Rich-Harris/is-reference.git
1793
+
1794
+ ---------------------------------------
1795
+
1796
+ ## is-wsl
1797
+ License: MIT
1798
+ By: Sindre Sorhus
1799
+ Repository: sindresorhus/is-wsl
1800
+
1801
+ > MIT License
1802
+ >
1803
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1804
+ >
1805
+ > 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:
1806
+ >
1807
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1808
+ >
1809
+ > 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.
1810
+
1811
+ ---------------------------------------
1812
+
1813
+ ## isexe
1814
+ License: ISC
1815
+ By: Isaac Z. Schlueter
1816
+ Repository: git+https://github.com/isaacs/isexe.git
1817
+
1818
+ > The ISC License
1819
+ >
1820
+ > Copyright (c) Isaac Z. Schlueter and Contributors
1821
+ >
1822
+ > Permission to use, copy, modify, and/or distribute this software for any
1823
+ > purpose with or without fee is hereby granted, provided that the above
1824
+ > copyright notice and this permission notice appear in all copies.
1825
+ >
1826
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1827
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1828
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1829
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1830
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1831
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1832
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1833
+
1834
+ ---------------------------------------
1835
+
1836
+ ## json-stable-stringify
1837
+ License: MIT
1838
+ By: James Halliday
1839
+ Repository: git://github.com/ljharb/json-stable-stringify.git
1840
+
1841
+ > This software is released under the MIT license:
1842
+ >
1843
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1844
+ > this software and associated documentation files (the "Software"), to deal in
1845
+ > the Software without restriction, including without limitation the rights to
1846
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1847
+ > the Software, and to permit persons to whom the Software is furnished to do so,
1848
+ > subject to the following conditions:
1849
+ >
1850
+ > The above copyright notice and this permission notice shall be included in all
1851
+ > copies or substantial portions of the Software.
1852
+ >
1853
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1854
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1855
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1856
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1857
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1858
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1859
+
1860
+ ---------------------------------------
1861
+
1862
+ ## launch-editor
1863
+ License: MIT
1864
+ By: Evan You
1865
+ Repository: git+https://github.com/yyx990803/launch-editor.git
1866
+
1867
+ ---------------------------------------
1868
+
1869
+ ## launch-editor-middleware
1870
+ License: MIT
1871
+ By: Evan You
1872
+ Repository: git+https://github.com/yyx990803/launch-editor.git
1873
+
1874
+ ---------------------------------------
1875
+
1876
+ ## lilconfig
1877
+ License: MIT
1878
+ By: antonk52
1879
+ Repository: https://github.com/antonk52/lilconfig
1880
+
1881
+ ---------------------------------------
1882
+
1883
+ ## loader-utils
1884
+ License: MIT
1885
+ By: Tobias Koppers @sokra
1886
+ Repository: https://github.com/webpack/loader-utils.git
1887
+
1888
+ > Copyright JS Foundation and other contributors
1889
+ >
1890
+ > Permission is hereby granted, free of charge, to any person obtaining
1891
+ > a copy of this software and associated documentation files (the
1892
+ > 'Software'), to deal in the Software without restriction, including
1893
+ > without limitation the rights to use, copy, modify, merge, publish,
1894
+ > distribute, sublicense, and/or sell copies of the Software, and to
1895
+ > permit persons to whom the Software is furnished to do so, subject to
1896
+ > the following conditions:
1897
+ >
1898
+ > The above copyright notice and this permission notice shall be
1899
+ > included in all copies or substantial portions of the Software.
1900
+ >
1901
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1902
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1903
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1904
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1905
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1906
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1907
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1908
+
1909
+ ---------------------------------------
1910
+
1911
+ ## lodash.camelcase
1912
+ License: MIT
1913
+ By: John-David Dalton, Blaine Bublitz, Mathias Bynens
1914
+ Repository: lodash/lodash
1915
+
1916
+ > Copyright jQuery Foundation and other contributors <https://jquery.org/>
1917
+ >
1918
+ > Based on Underscore.js, copyright Jeremy Ashkenas,
1919
+ > DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
1920
+ >
1921
+ > This software consists of voluntary contributions made by many
1922
+ > individuals. For exact contribution history, see the revision history
1923
+ > available at https://github.com/lodash/lodash
1924
+ >
1925
+ > The following license applies to all parts of this software except as
1926
+ > documented below:
1927
+ >
1928
+ > ====
1929
+ >
1930
+ > Permission is hereby granted, free of charge, to any person obtaining
1931
+ > a copy of this software and associated documentation files (the
1932
+ > "Software"), to deal in the Software without restriction, including
1933
+ > without limitation the rights to use, copy, modify, merge, publish,
1934
+ > distribute, sublicense, and/or sell copies of the Software, and to
1935
+ > permit persons to whom the Software is furnished to do so, subject to
1936
+ > the following conditions:
1937
+ >
1938
+ > The above copyright notice and this permission notice shall be
1939
+ > included in all copies or substantial portions of the Software.
1940
+ >
1941
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1942
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1943
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1944
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1945
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1946
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1947
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1948
+ >
1949
+ > ====
1950
+ >
1951
+ > Copyright and related rights for sample code are waived via CC0. Sample
1952
+ > code is defined as all source code displayed within the prose of the
1953
+ > documentation.
1954
+ >
1955
+ > CC0: http://creativecommons.org/publicdomain/zero/1.0/
1956
+ >
1957
+ > ====
1958
+ >
1959
+ > Files located in the node_modules and vendor directories are externally
1960
+ > maintained libraries used by this software which have their own
1961
+ > licenses; we recommend you read them, as their terms may differ from the
1962
+ > terms above.
1963
+
1964
+ ---------------------------------------
1965
+
1966
+ ## magic-string
1967
+ License: MIT
1968
+ By: Rich Harris
1969
+ Repository: https://github.com/rich-harris/magic-string
1970
+
1971
+ > Copyright 2018 Rich Harris
1972
+ >
1973
+ > 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:
1974
+ >
1975
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1976
+ >
1977
+ > 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.
1978
+
1979
+ ---------------------------------------
1980
+
1981
+ ## merge2
1982
+ License: MIT
1983
+ Repository: git@github.com:teambition/merge2.git
1984
+
1985
+ > The MIT License (MIT)
1986
+ >
1987
+ > Copyright (c) 2014-2020 Teambition
1988
+ >
1989
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1990
+ > of this software and associated documentation files (the "Software"), to deal
1991
+ > in the Software without restriction, including without limitation the rights
1992
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1993
+ > copies of the Software, and to permit persons to whom the Software is
1994
+ > furnished to do so, subject to the following conditions:
1995
+ >
1996
+ > The above copyright notice and this permission notice shall be included in all
1997
+ > copies or substantial portions of the Software.
1998
+ >
1999
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2000
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2001
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2002
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2003
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2004
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2005
+ > SOFTWARE.
2006
+
2007
+ ---------------------------------------
2008
+
2009
+ ## micromatch
2010
+ License: MIT
2011
+ By: Jon Schlinkert, Amila Welihinda, Bogdan Chadkin, Brian Woodward, Devon Govett, Elan Shanker, Fabrício Matté, Martin Kolárik, Olsten Larck, Paul Miller, Tom Byrer, Tyler Akins, Peter Bright, Kuba Juszczyk
2012
+ Repository: micromatch/micromatch
2013
+
2014
+ > The MIT License (MIT)
2015
+ >
2016
+ > Copyright (c) 2014-present, Jon Schlinkert.
2017
+ >
2018
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2019
+ > of this software and associated documentation files (the "Software"), to deal
2020
+ > in the Software without restriction, including without limitation the rights
2021
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2022
+ > copies of the Software, and to permit persons to whom the Software is
2023
+ > furnished to do so, subject to the following conditions:
2024
+ >
2025
+ > The above copyright notice and this permission notice shall be included in
2026
+ > all copies or substantial portions of the Software.
2027
+ >
2028
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2029
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2030
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2031
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2032
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2033
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2034
+ > THE SOFTWARE.
2035
+
2036
+ ---------------------------------------
2037
+
2038
+ ## minimatch
2039
+ License: ISC
2040
+ By: Isaac Z. Schlueter
2041
+ Repository: git://github.com/isaacs/minimatch.git
2042
+
2043
+ > The ISC License
2044
+ >
2045
+ > Copyright (c) 2011-2022 Isaac Z. Schlueter and Contributors
2046
+ >
2047
+ > Permission to use, copy, modify, and/or distribute this software for any
2048
+ > purpose with or without fee is hereby granted, provided that the above
2049
+ > copyright notice and this permission notice appear in all copies.
2050
+ >
2051
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2052
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2053
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2054
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2055
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2056
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2057
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2058
+
2059
+ ---------------------------------------
2060
+
2061
+ ## mlly
2062
+ License: MIT
2063
+ Repository: unjs/mlly
2064
+
2065
+ > MIT License
2066
+ >
2067
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
2068
+ >
2069
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2070
+ > of this software and associated documentation files (the "Software"), to deal
2071
+ > in the Software without restriction, including without limitation the rights
2072
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2073
+ > copies of the Software, and to permit persons to whom the Software is
2074
+ > furnished to do so, subject to the following conditions:
2075
+ >
2076
+ > The above copyright notice and this permission notice shall be included in all
2077
+ > copies or substantial portions of the Software.
2078
+ >
2079
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2080
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2081
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2082
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2083
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2084
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2085
+ > SOFTWARE.
2086
+
2087
+ ---------------------------------------
2088
+
2089
+ ## mrmime
2090
+ License: MIT
2091
+ By: Luke Edwards
2092
+ Repository: lukeed/mrmime
2093
+
2094
+ > The MIT License (MIT)
2095
+ >
2096
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)
2097
+ >
2098
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2099
+ > of this software and associated documentation files (the "Software"), to deal
2100
+ > in the Software without restriction, including without limitation the rights
2101
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2102
+ > copies of the Software, and to permit persons to whom the Software is
2103
+ > furnished to do so, subject to the following conditions:
2104
+ >
2105
+ > The above copyright notice and this permission notice shall be included in
2106
+ > all copies or substantial portions of the Software.
2107
+ >
2108
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2109
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2110
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2111
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2112
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2113
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2114
+ > THE SOFTWARE.
2115
+
2116
+ ---------------------------------------
2117
+
2118
+ ## ms
2119
+ License: MIT
2120
+ Repository: zeit/ms
2121
+
2122
+ > The MIT License (MIT)
2123
+ >
2124
+ > Copyright (c) 2016 Zeit, Inc.
2125
+ >
2126
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2127
+ > of this software and associated documentation files (the "Software"), to deal
2128
+ > in the Software without restriction, including without limitation the rights
2129
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2130
+ > copies of the Software, and to permit persons to whom the Software is
2131
+ > furnished to do so, subject to the following conditions:
2132
+ >
2133
+ > The above copyright notice and this permission notice shall be included in all
2134
+ > copies or substantial portions of the Software.
2135
+ >
2136
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2137
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2138
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2139
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2140
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2141
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2142
+ > SOFTWARE.
2143
+
2144
+ ---------------------------------------
2145
+
2146
+ ## normalize-path
2147
+ License: MIT
2148
+ By: Jon Schlinkert, Blaine Bublitz
2149
+ Repository: jonschlinkert/normalize-path
2150
+
2151
+ > The MIT License (MIT)
2152
+ >
2153
+ > Copyright (c) 2014-2018, Jon Schlinkert.
2154
+ >
2155
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2156
+ > of this software and associated documentation files (the "Software"), to deal
2157
+ > in the Software without restriction, including without limitation the rights
2158
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2159
+ > copies of the Software, and to permit persons to whom the Software is
2160
+ > furnished to do so, subject to the following conditions:
2161
+ >
2162
+ > The above copyright notice and this permission notice shall be included in
2163
+ > all copies or substantial portions of the Software.
2164
+ >
2165
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2166
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2167
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2168
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2169
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2170
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2171
+ > THE SOFTWARE.
2172
+
2173
+ ---------------------------------------
2174
+
2175
+ ## object-assign
2176
+ License: MIT
2177
+ By: Sindre Sorhus
2178
+ Repository: sindresorhus/object-assign
2179
+
2180
+ > The MIT License (MIT)
2181
+ >
2182
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2183
+ >
2184
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2185
+ > of this software and associated documentation files (the "Software"), to deal
2186
+ > in the Software without restriction, including without limitation the rights
2187
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2188
+ > copies of the Software, and to permit persons to whom the Software is
2189
+ > furnished to do so, subject to the following conditions:
2190
+ >
2191
+ > The above copyright notice and this permission notice shall be included in
2192
+ > all copies or substantial portions of the Software.
2193
+ >
2194
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2195
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2196
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2197
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2198
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2199
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2200
+ > THE SOFTWARE.
2201
+
2202
+ ---------------------------------------
2203
+
2204
+ ## okie
2205
+ License: MIT
2206
+ By: Evan You
2207
+ Repository: git+https://github.com/yyx990803/okie.git
2208
+
2209
+ > MIT License
2210
+ >
2211
+ > Copyright (c) 2020-present, Yuxi (Evan) You
2212
+ >
2213
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2214
+ > of this software and associated documentation files (the "Software"), to deal
2215
+ > in the Software without restriction, including without limitation the rights
2216
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2217
+ > copies of the Software, and to permit persons to whom the Software is
2218
+ > furnished to do so, subject to the following conditions:
2219
+ >
2220
+ > The above copyright notice and this permission notice shall be included in all
2221
+ > copies or substantial portions of the Software.
2222
+ >
2223
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2224
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2225
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2226
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2227
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2228
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2229
+ > SOFTWARE.
2230
+
2231
+ ---------------------------------------
2232
+
2233
+ ## on-finished
2234
+ License: MIT
2235
+ By: Douglas Christopher Wilson, Jonathan Ong
2236
+ Repository: jshttp/on-finished
2237
+
2238
+ > (The MIT License)
2239
+ >
2240
+ > Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
2241
+ > Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
2242
+ >
2243
+ > Permission is hereby granted, free of charge, to any person obtaining
2244
+ > a copy of this software and associated documentation files (the
2245
+ > 'Software'), to deal in the Software without restriction, including
2246
+ > without limitation the rights to use, copy, modify, merge, publish,
2247
+ > distribute, sublicense, and/or sell copies of the Software, and to
2248
+ > permit persons to whom the Software is furnished to do so, subject to
2249
+ > the following conditions:
2250
+ >
2251
+ > The above copyright notice and this permission notice shall be
2252
+ > included in all copies or substantial portions of the Software.
2253
+ >
2254
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2255
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2256
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2257
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2258
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2259
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2260
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2261
+
2262
+ ---------------------------------------
2263
+
2264
+ ## once
2265
+ License: ISC
2266
+ By: Isaac Z. Schlueter
2267
+ Repository: git://github.com/isaacs/once
2268
+
2269
+ > The ISC License
2270
+ >
2271
+ > Copyright (c) Isaac Z. Schlueter and Contributors
2272
+ >
2273
+ > Permission to use, copy, modify, and/or distribute this software for any
2274
+ > purpose with or without fee is hereby granted, provided that the above
2275
+ > copyright notice and this permission notice appear in all copies.
2276
+ >
2277
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2278
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2279
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2280
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2281
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2282
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2283
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2284
+
2285
+ ---------------------------------------
2286
+
2287
+ ## open
2288
+ License: MIT
2289
+ By: Sindre Sorhus
2290
+ Repository: sindresorhus/open
2291
+
2292
+ > MIT License
2293
+ >
2294
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2295
+ >
2296
+ > 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:
2297
+ >
2298
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2299
+ >
2300
+ > 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.
2301
+
2302
+ ---------------------------------------
2303
+
2304
+ ## parse5
2305
+ License: MIT
2306
+ By: Ivan Nikulin, https://github.com/inikulin/parse5/graphs/contributors
2307
+ Repository: git://github.com/inikulin/parse5.git
2308
+
2309
+ > Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
2310
+ >
2311
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2312
+ > of this software and associated documentation files (the "Software"), to deal
2313
+ > in the Software without restriction, including without limitation the rights
2314
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2315
+ > copies of the Software, and to permit persons to whom the Software is
2316
+ > furnished to do so, subject to the following conditions:
2317
+ >
2318
+ > The above copyright notice and this permission notice shall be included in
2319
+ > all copies or substantial portions of the Software.
2320
+ >
2321
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2322
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2323
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2324
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2325
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2326
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2327
+ > THE SOFTWARE.
2328
+
2329
+ ---------------------------------------
2330
+
2331
+ ## parseurl
2332
+ License: MIT
2333
+ By: Douglas Christopher Wilson, Jonathan Ong
2334
+ Repository: pillarjs/parseurl
2335
+
2336
+ > (The MIT License)
2337
+ >
2338
+ > Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2339
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
2340
+ >
2341
+ > Permission is hereby granted, free of charge, to any person obtaining
2342
+ > a copy of this software and associated documentation files (the
2343
+ > 'Software'), to deal in the Software without restriction, including
2344
+ > without limitation the rights to use, copy, modify, merge, publish,
2345
+ > distribute, sublicense, and/or sell copies of the Software, and to
2346
+ > permit persons to whom the Software is furnished to do so, subject to
2347
+ > the following conditions:
2348
+ >
2349
+ > The above copyright notice and this permission notice shall be
2350
+ > included in all copies or substantial portions of the Software.
2351
+ >
2352
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2353
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2354
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2355
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2356
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2357
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2358
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2359
+
2360
+ ---------------------------------------
2361
+
2362
+ ## path-key
2363
+ License: MIT
2364
+ By: Sindre Sorhus
2365
+ Repository: sindresorhus/path-key
2366
+
2367
+ > MIT License
2368
+ >
2369
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2370
+ >
2371
+ > 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:
2372
+ >
2373
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2374
+ >
2375
+ > 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.
2376
+
2377
+ ---------------------------------------
2378
+
2379
+ ## periscopic
2380
+ License: MIT
2381
+ Repository: Rich-Harris/periscopic
2382
+
2383
+ > Copyright (c) 2019 Rich Harris
2384
+ >
2385
+ > 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:
2386
+ >
2387
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2388
+ >
2389
+ > 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.
2390
+
2391
+ ---------------------------------------
2392
+
2393
+ ## picocolors
2394
+ License: ISC
2395
+ By: Alexey Raspopov
2396
+ Repository: alexeyraspopov/picocolors
2397
+
2398
+ > ISC License
2399
+ >
2400
+ > Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov
2401
+ >
2402
+ > Permission to use, copy, modify, and/or distribute this software for any
2403
+ > purpose with or without fee is hereby granted, provided that the above
2404
+ > copyright notice and this permission notice appear in all copies.
2405
+ >
2406
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2407
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2408
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2409
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2410
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2411
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2412
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2413
+
2414
+ ---------------------------------------
2415
+
2416
+ ## picomatch
2417
+ License: MIT
2418
+ By: Jon Schlinkert
2419
+ Repository: micromatch/picomatch
2420
+
2421
+ > The MIT License (MIT)
2422
+ >
2423
+ > Copyright (c) 2017-present, Jon Schlinkert.
2424
+ >
2425
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2426
+ > of this software and associated documentation files (the "Software"), to deal
2427
+ > in the Software without restriction, including without limitation the rights
2428
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2429
+ > copies of the Software, and to permit persons to whom the Software is
2430
+ > furnished to do so, subject to the following conditions:
2431
+ >
2432
+ > The above copyright notice and this permission notice shall be included in
2433
+ > all copies or substantial portions of the Software.
2434
+ >
2435
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2436
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2437
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2438
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2439
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2440
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2441
+ > THE SOFTWARE.
2442
+
2443
+ ---------------------------------------
2444
+
2445
+ ## pify
2446
+ License: MIT
2447
+ By: Sindre Sorhus
2448
+ Repository: sindresorhus/pify
2449
+
2450
+ > The MIT License (MIT)
2451
+ >
2452
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2453
+ >
2454
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2455
+ > of this software and associated documentation files (the "Software"), to deal
2456
+ > in the Software without restriction, including without limitation the rights
2457
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2458
+ > copies of the Software, and to permit persons to whom the Software is
2459
+ > furnished to do so, subject to the following conditions:
2460
+ >
2461
+ > The above copyright notice and this permission notice shall be included in
2462
+ > all copies or substantial portions of the Software.
2463
+ >
2464
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2465
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2466
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2467
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2468
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2469
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2470
+ > THE SOFTWARE.
2471
+
2472
+ ---------------------------------------
2473
+
2474
+ ## postcss-import
2475
+ License: MIT
2476
+ By: Maxime Thirouin
2477
+ Repository: https://github.com/postcss/postcss-import.git
2478
+
2479
+ > The MIT License (MIT)
2480
+ >
2481
+ > Copyright (c) 2014 Maxime Thirouin, Jason Campbell & Kevin Mårtensson
2482
+ >
2483
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2484
+ > this software and associated documentation files (the "Software"), to deal in
2485
+ > the Software without restriction, including without limitation the rights to
2486
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2487
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2488
+ > subject to the following conditions:
2489
+ >
2490
+ > The above copyright notice and this permission notice shall be included in all
2491
+ > copies or substantial portions of the Software.
2492
+ >
2493
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2494
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2495
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2496
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2497
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2498
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2499
+
2500
+ ---------------------------------------
2501
+
2502
+ ## postcss-load-config
2503
+ License: MIT
2504
+ By: Michael Ciniawky, Ryan Dunckel, Mateusz Derks, Dalton Santos, Patrick Gilday, François Wouts
2505
+ Repository: postcss/postcss-load-config
2506
+
2507
+ > The MIT License (MIT)
2508
+ >
2509
+ > Copyright Michael Ciniawsky <michael.ciniawsky@gmail.com>
2510
+ >
2511
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2512
+ > this software and associated documentation files (the "Software"), to deal in
2513
+ > the Software without restriction, including without limitation the rights to
2514
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2515
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2516
+ > subject to the following conditions:
2517
+ >
2518
+ > The above copyright notice and this permission notice shall be included in all
2519
+ > copies or substantial portions of the Software.
2520
+ >
2521
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2522
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2523
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2524
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2525
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2526
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2527
+
2528
+ ---------------------------------------
2529
+
2530
+ ## postcss-modules
2531
+ License: MIT
2532
+ By: Alexander Madyankin
2533
+ Repository: https://github.com/css-modules/postcss-modules.git
2534
+
2535
+ > The MIT License (MIT)
2536
+ >
2537
+ > Copyright 2015-present Alexander Madyankin <alexander@madyankin.name>
2538
+ >
2539
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2540
+ > this software and associated documentation files (the "Software"), to deal in
2541
+ > the Software without restriction, including without limitation the rights to
2542
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2543
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2544
+ > subject to the following conditions:
2545
+ >
2546
+ > The above copyright notice and this permission notice shall be included in all
2547
+ > copies or substantial portions of the Software.
2548
+ >
2549
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2550
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2551
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2552
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2553
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2554
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2555
+
2556
+ ---------------------------------------
2557
+
2558
+ ## postcss-modules-extract-imports
2559
+ License: ISC
2560
+ By: Glen Maddern
2561
+ Repository: https://github.com/css-modules/postcss-modules-extract-imports.git
2562
+
2563
+ > Copyright 2015 Glen Maddern
2564
+ >
2565
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2566
+ >
2567
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2568
+
2569
+ ---------------------------------------
2570
+
2571
+ ## postcss-modules-local-by-default
2572
+ License: MIT
2573
+ By: Mark Dalgleish
2574
+ Repository: https://github.com/css-modules/postcss-modules-local-by-default.git
2575
+
2576
+ > The MIT License (MIT)
2577
+ >
2578
+ > Copyright 2015 Mark Dalgleish <mark.john.dalgleish@gmail.com>
2579
+ >
2580
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2581
+ > this software and associated documentation files (the "Software"), to deal in
2582
+ > the Software without restriction, including without limitation the rights to
2583
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2584
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2585
+ > subject to the following conditions:
2586
+ >
2587
+ > The above copyright notice and this permission notice shall be included in all
2588
+ > copies or substantial portions of the Software.
2589
+ >
2590
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2591
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2592
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2593
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2594
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2595
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2596
+
2597
+ ---------------------------------------
2598
+
2599
+ ## postcss-modules-scope
2600
+ License: ISC
2601
+ By: Glen Maddern
2602
+ Repository: https://github.com/css-modules/postcss-modules-scope.git
2603
+
2604
+ > ISC License (ISC)
2605
+ >
2606
+ > Copyright (c) 2015, Glen Maddern
2607
+ >
2608
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2609
+ >
2610
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2611
+
2612
+ ---------------------------------------
2613
+
2614
+ ## postcss-modules-values
2615
+ License: ISC
2616
+ By: Glen Maddern
2617
+ Repository: git+https://github.com/css-modules/postcss-modules-values.git
2618
+
2619
+ > ISC License (ISC)
2620
+ >
2621
+ > Copyright (c) 2015, Glen Maddern
2622
+ >
2623
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2624
+ >
2625
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2626
+
2627
+ ---------------------------------------
2628
+
2629
+ ## postcss-selector-parser
2630
+ License: MIT
2631
+ By: Ben Briggs, Chris Eppstein
2632
+ Repository: postcss/postcss-selector-parser
2633
+
2634
+ > Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
2635
+ >
2636
+ > Permission is hereby granted, free of charge, to any person
2637
+ > obtaining a copy of this software and associated documentation
2638
+ > files (the "Software"), to deal in the Software without
2639
+ > restriction, including without limitation the rights to use,
2640
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
2641
+ > copies of the Software, and to permit persons to whom the
2642
+ > Software is furnished to do so, subject to the following
2643
+ > conditions:
2644
+ >
2645
+ > The above copyright notice and this permission notice shall be
2646
+ > included in all copies or substantial portions of the Software.
2647
+ >
2648
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2649
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2650
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2651
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2652
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2653
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2654
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2655
+ > OTHER DEALINGS IN THE SOFTWARE.
2656
+
2657
+ ---------------------------------------
2658
+
2659
+ ## postcss-value-parser
2660
+ License: MIT
2661
+ By: Bogdan Chadkin
2662
+ Repository: https://github.com/TrySound/postcss-value-parser.git
2663
+
2664
+ > Copyright (c) Bogdan Chadkin <trysound@yandex.ru>
2665
+ >
2666
+ > Permission is hereby granted, free of charge, to any person
2667
+ > obtaining a copy of this software and associated documentation
2668
+ > files (the "Software"), to deal in the Software without
2669
+ > restriction, including without limitation the rights to use,
2670
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
2671
+ > copies of the Software, and to permit persons to whom the
2672
+ > Software is furnished to do so, subject to the following
2673
+ > conditions:
2674
+ >
2675
+ > The above copyright notice and this permission notice shall be
2676
+ > included in all copies or substantial portions of the Software.
2677
+ >
2678
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2679
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2680
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2681
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2682
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2683
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2684
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2685
+ > OTHER DEALINGS IN THE SOFTWARE.
2686
+
2687
+ ---------------------------------------
2688
+
2689
+ ## queue-microtask
2690
+ License: MIT
2691
+ By: Feross Aboukhadijeh
2692
+ Repository: git://github.com/feross/queue-microtask.git
2693
+
2694
+ > The MIT License (MIT)
2695
+ >
2696
+ > Copyright (c) Feross Aboukhadijeh
2697
+ >
2698
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2699
+ > this software and associated documentation files (the "Software"), to deal in
2700
+ > the Software without restriction, including without limitation the rights to
2701
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2702
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2703
+ > subject to the following conditions:
2704
+ >
2705
+ > The above copyright notice and this permission notice shall be included in all
2706
+ > copies or substantial portions of the Software.
2707
+ >
2708
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2709
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2710
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2711
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2712
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2713
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2714
+
2715
+ ---------------------------------------
2716
+
2717
+ ## read-cache
2718
+ License: MIT
2719
+ By: Bogdan Chadkin
2720
+ Repository: git+https://github.com/TrySound/read-cache.git
2721
+
2722
+ > The MIT License (MIT)
2723
+ >
2724
+ > Copyright 2016 Bogdan Chadkin <trysound@yandex.ru>
2725
+ >
2726
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2727
+ > this software and associated documentation files (the "Software"), to deal in
2728
+ > the Software without restriction, including without limitation the rights to
2729
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2730
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2731
+ > subject to the following conditions:
2732
+ >
2733
+ > The above copyright notice and this permission notice shall be included in all
2734
+ > copies or substantial portions of the Software.
2735
+ >
2736
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2737
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2738
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2739
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2740
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2741
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2742
+
2743
+ ---------------------------------------
2744
+
2745
+ ## readdirp
2746
+ License: MIT
2747
+ By: Thorsten Lorenz, Paul Miller
2748
+ Repository: git://github.com/paulmillr/readdirp.git
2749
+
2750
+ > MIT License
2751
+ >
2752
+ > Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
2753
+ >
2754
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2755
+ > of this software and associated documentation files (the "Software"), to deal
2756
+ > in the Software without restriction, including without limitation the rights
2757
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2758
+ > copies of the Software, and to permit persons to whom the Software is
2759
+ > furnished to do so, subject to the following conditions:
2760
+ >
2761
+ > The above copyright notice and this permission notice shall be included in all
2762
+ > copies or substantial portions of the Software.
2763
+ >
2764
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2765
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2766
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2767
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2768
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2769
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2770
+ > SOFTWARE.
2771
+
2772
+ ---------------------------------------
2773
+
2774
+ ## requires-port
2775
+ License: MIT
2776
+ By: Arnout Kazemier
2777
+ Repository: https://github.com/unshiftio/requires-port
2778
+
2779
+ > The MIT License (MIT)
2780
+ >
2781
+ > Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.
2782
+ >
2783
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2784
+ > of this software and associated documentation files (the "Software"), to deal
2785
+ > in the Software without restriction, including without limitation the rights
2786
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2787
+ > copies of the Software, and to permit persons to whom the Software is
2788
+ > furnished to do so, subject to the following conditions:
2789
+ >
2790
+ > The above copyright notice and this permission notice shall be included in all
2791
+ > copies or substantial portions of the Software.
2792
+ >
2793
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2794
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2795
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2796
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2797
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2798
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2799
+ > SOFTWARE.
2800
+
2801
+ ---------------------------------------
2802
+
2803
+ ## resolve.exports
2804
+ License: MIT
2805
+ By: Luke Edwards
2806
+ Repository: lukeed/resolve.exports
2807
+
2808
+ > The MIT License (MIT)
2809
+ >
2810
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
2811
+ >
2812
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2813
+ > of this software and associated documentation files (the "Software"), to deal
2814
+ > in the Software without restriction, including without limitation the rights
2815
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2816
+ > copies of the Software, and to permit persons to whom the Software is
2817
+ > furnished to do so, subject to the following conditions:
2818
+ >
2819
+ > The above copyright notice and this permission notice shall be included in
2820
+ > all copies or substantial portions of the Software.
2821
+ >
2822
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2823
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2824
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2825
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2826
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2827
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2828
+ > THE SOFTWARE.
2829
+
2830
+ ---------------------------------------
2831
+
2832
+ ## reusify
2833
+ License: MIT
2834
+ By: Matteo Collina
2835
+ Repository: git+https://github.com/mcollina/reusify.git
2836
+
2837
+ > The MIT License (MIT)
2838
+ >
2839
+ > Copyright (c) 2015 Matteo Collina
2840
+ >
2841
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2842
+ > of this software and associated documentation files (the "Software"), to deal
2843
+ > in the Software without restriction, including without limitation the rights
2844
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2845
+ > copies of the Software, and to permit persons to whom the Software is
2846
+ > furnished to do so, subject to the following conditions:
2847
+ >
2848
+ > The above copyright notice and this permission notice shall be included in all
2849
+ > copies or substantial portions of the Software.
2850
+ >
2851
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2852
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2853
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2854
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2855
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2856
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2857
+ > SOFTWARE.
2858
+
2859
+ ---------------------------------------
2860
+
2861
+ ## run-parallel
2862
+ License: MIT
2863
+ By: Feross Aboukhadijeh
2864
+ Repository: git://github.com/feross/run-parallel.git
2865
+
2866
+ > The MIT License (MIT)
2867
+ >
2868
+ > Copyright (c) Feross Aboukhadijeh
2869
+ >
2870
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2871
+ > this software and associated documentation files (the "Software"), to deal in
2872
+ > the Software without restriction, including without limitation the rights to
2873
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2874
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2875
+ > subject to the following conditions:
2876
+ >
2877
+ > The above copyright notice and this permission notice shall be included in all
2878
+ > copies or substantial portions of the Software.
2879
+ >
2880
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2881
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2882
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2883
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2884
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2885
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2886
+
2887
+ ---------------------------------------
2888
+
2889
+ ## shebang-command
2890
+ License: MIT
2891
+ By: Kevin Mårtensson
2892
+ Repository: kevva/shebang-command
2893
+
2894
+ > MIT License
2895
+ >
2896
+ > Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
2897
+ >
2898
+ > 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:
2899
+ >
2900
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2901
+ >
2902
+ > 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.
2903
+
2904
+ ---------------------------------------
2905
+
2906
+ ## shebang-regex
2907
+ License: MIT
2908
+ By: Sindre Sorhus
2909
+ Repository: sindresorhus/shebang-regex
2910
+
2911
+ > MIT License
2912
+ >
2913
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2914
+ >
2915
+ > 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:
2916
+ >
2917
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2918
+ >
2919
+ > 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.
2920
+
2921
+ ---------------------------------------
2922
+
2923
+ ## shell-quote
2924
+ License: MIT
2925
+ By: James Halliday
2926
+ Repository: http://github.com/substack/node-shell-quote.git
2927
+
2928
+ > The MIT License
2929
+ >
2930
+ > Copyright (c) 2013 James Halliday (mail@substack.net)
2931
+ >
2932
+ > Permission is hereby granted, free of charge,
2933
+ > to any person obtaining a copy of this software and
2934
+ > associated documentation files (the "Software"), to
2935
+ > deal in the Software without restriction, including
2936
+ > without limitation the rights to use, copy, modify,
2937
+ > merge, publish, distribute, sublicense, and/or sell
2938
+ > copies of the Software, and to permit persons to whom
2939
+ > the Software is furnished to do so,
2940
+ > subject to the following conditions:
2941
+ >
2942
+ > The above copyright notice and this permission notice
2943
+ > shall be included in all copies or substantial portions of the Software.
2944
+ >
2945
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2946
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2947
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2948
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
2949
+ > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2950
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2951
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2952
+
2953
+ ---------------------------------------
2954
+
2955
+ ## sirv
2956
+ License: MIT
2957
+ By: Luke Edwards
2958
+ Repository: lukeed/sirv
2959
+
2960
+ ---------------------------------------
2961
+
2962
+ ## statuses
2963
+ License: MIT
2964
+ By: Douglas Christopher Wilson, Jonathan Ong
2965
+ Repository: jshttp/statuses
2966
+
2967
+ > The MIT License (MIT)
2968
+ >
2969
+ > Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
2970
+ > Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
2971
+ >
2972
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2973
+ > of this software and associated documentation files (the "Software"), to deal
2974
+ > in the Software without restriction, including without limitation the rights
2975
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2976
+ > copies of the Software, and to permit persons to whom the Software is
2977
+ > furnished to do so, subject to the following conditions:
2978
+ >
2979
+ > The above copyright notice and this permission notice shall be included in
2980
+ > all copies or substantial portions of the Software.
2981
+ >
2982
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2983
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2984
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2985
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2986
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2987
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2988
+ > THE SOFTWARE.
2989
+
2990
+ ---------------------------------------
2991
+
2992
+ ## string-hash
2993
+ License: CC0-1.0
2994
+ By: The Dark Sky Company
2995
+ Repository: git://github.com/darkskyapp/string-hash.git
2996
+
2997
+ ---------------------------------------
2998
+
2999
+ ## strip-ansi
3000
+ License: MIT
3001
+ By: Sindre Sorhus
3002
+ Repository: chalk/strip-ansi
3003
+
3004
+ > MIT License
3005
+ >
3006
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3007
+ >
3008
+ > 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:
3009
+ >
3010
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3011
+ >
3012
+ > 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.
3013
+
3014
+ ---------------------------------------
3015
+
3016
+ ## strip-literal
3017
+ License: MIT
3018
+ By: Anthony Fu
3019
+ Repository: git+https://github.com/antfu/strip-literal.git
3020
+
3021
+ > MIT License
3022
+ >
3023
+ > Copyright (c) 2022 Anthony Fu <https://github.com/antfu>
3024
+ >
3025
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3026
+ > of this software and associated documentation files (the "Software"), to deal
3027
+ > in the Software without restriction, including without limitation the rights
3028
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3029
+ > copies of the Software, and to permit persons to whom the Software is
3030
+ > furnished to do so, subject to the following conditions:
3031
+ >
3032
+ > The above copyright notice and this permission notice shall be included in all
3033
+ > copies or substantial portions of the Software.
3034
+ >
3035
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3036
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3037
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3038
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3039
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3040
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3041
+ > SOFTWARE.
3042
+
3043
+ ---------------------------------------
3044
+
3045
+ ## to-regex-range
3046
+ License: MIT
3047
+ By: Jon Schlinkert, Rouven Weßling
3048
+ Repository: micromatch/to-regex-range
3049
+
3050
+ > The MIT License (MIT)
3051
+ >
3052
+ > Copyright (c) 2015-present, Jon Schlinkert.
3053
+ >
3054
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3055
+ > of this software and associated documentation files (the "Software"), to deal
3056
+ > in the Software without restriction, including without limitation the rights
3057
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3058
+ > copies of the Software, and to permit persons to whom the Software is
3059
+ > furnished to do so, subject to the following conditions:
3060
+ >
3061
+ > The above copyright notice and this permission notice shall be included in
3062
+ > all copies or substantial portions of the Software.
3063
+ >
3064
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3065
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3066
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3067
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3068
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3069
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3070
+ > THE SOFTWARE.
3071
+
3072
+ ---------------------------------------
3073
+
3074
+ ## totalist
3075
+ License: MIT
3076
+ By: Luke Edwards
3077
+ Repository: lukeed/totalist
3078
+
3079
+ > The MIT License (MIT)
3080
+ >
3081
+ > Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
3082
+ >
3083
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3084
+ > of this software and associated documentation files (the "Software"), to deal
3085
+ > in the Software without restriction, including without limitation the rights
3086
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3087
+ > copies of the Software, and to permit persons to whom the Software is
3088
+ > furnished to do so, subject to the following conditions:
3089
+ >
3090
+ > The above copyright notice and this permission notice shall be included in
3091
+ > all copies or substantial portions of the Software.
3092
+ >
3093
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3094
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3095
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3096
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3097
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3098
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3099
+ > THE SOFTWARE.
3100
+
3101
+ ---------------------------------------
3102
+
3103
+ ## tsconfck
3104
+ License: MIT
3105
+ By: dominikg
3106
+ Repository: git+https://github.com/dominikg/tsconfck.git
3107
+
3108
+ > MIT License
3109
+ >
3110
+ > Copyright (c) 2021-present dominikg and [contributors](https://github.com/dominikg/tsconfck/graphs/contributors)
3111
+ >
3112
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3113
+ > of this software and associated documentation files (the "Software"), to deal
3114
+ > in the Software without restriction, including without limitation the rights
3115
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3116
+ > copies of the Software, and to permit persons to whom the Software is
3117
+ > furnished to do so, subject to the following conditions:
3118
+ >
3119
+ > The above copyright notice and this permission notice shall be included in all
3120
+ > copies or substantial portions of the Software.
3121
+ >
3122
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3123
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3124
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3125
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3126
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3127
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3128
+ > SOFTWARE.
3129
+ >
3130
+ > -- Licenses for 3rd-party code included in tsconfck --
3131
+ >
3132
+ > # strip-bom and strip-json-comments
3133
+ > MIT License
3134
+ >
3135
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3136
+ >
3137
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3138
+ > of this software and associated documentation files (the "Software"), to deal
3139
+ > in the Software without restriction, including without limitation the rights
3140
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3141
+ > copies of the Software, and to permit persons to whom the Software is
3142
+ > furnished to do so, subject to the following conditions:
3143
+ >
3144
+ > The above copyright notice and this permission notice shall be included in all
3145
+ > copies or substantial portions of the Software.
3146
+ >
3147
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3148
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3149
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3150
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3151
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3152
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3153
+ > SOFTWARE.
3154
+
3155
+ ---------------------------------------
3156
+
3157
+ ## ufo
3158
+ License: MIT
3159
+ Repository: unjs/ufo
3160
+
3161
+ > MIT License
3162
+ >
3163
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
3164
+ >
3165
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3166
+ > of this software and associated documentation files (the "Software"), to deal
3167
+ > in the Software without restriction, including without limitation the rights
3168
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3169
+ > copies of the Software, and to permit persons to whom the Software is
3170
+ > furnished to do so, subject to the following conditions:
3171
+ >
3172
+ > The above copyright notice and this permission notice shall be included in all
3173
+ > copies or substantial portions of the Software.
3174
+ >
3175
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3176
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3177
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3178
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3179
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3180
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3181
+ > SOFTWARE.
3182
+
3183
+ ---------------------------------------
3184
+
3185
+ ## unpipe
3186
+ License: MIT
3187
+ By: Douglas Christopher Wilson
3188
+ Repository: stream-utils/unpipe
3189
+
3190
+ > (The MIT License)
3191
+ >
3192
+ > Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
3193
+ >
3194
+ > Permission is hereby granted, free of charge, to any person obtaining
3195
+ > a copy of this software and associated documentation files (the
3196
+ > 'Software'), to deal in the Software without restriction, including
3197
+ > without limitation the rights to use, copy, modify, merge, publish,
3198
+ > distribute, sublicense, and/or sell copies of the Software, and to
3199
+ > permit persons to whom the Software is furnished to do so, subject to
3200
+ > the following conditions:
3201
+ >
3202
+ > The above copyright notice and this permission notice shall be
3203
+ > included in all copies or substantial portions of the Software.
3204
+ >
3205
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3206
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3207
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3208
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3209
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3210
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3211
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3212
+
3213
+ ---------------------------------------
3214
+
3215
+ ## util-deprecate
3216
+ License: MIT
3217
+ By: Nathan Rajlich
3218
+ Repository: git://github.com/TooTallNate/util-deprecate.git
3219
+
3220
+ > (The MIT License)
3221
+ >
3222
+ > Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
3223
+ >
3224
+ > Permission is hereby granted, free of charge, to any person
3225
+ > obtaining a copy of this software and associated documentation
3226
+ > files (the "Software"), to deal in the Software without
3227
+ > restriction, including without limitation the rights to use,
3228
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
3229
+ > copies of the Software, and to permit persons to whom the
3230
+ > Software is furnished to do so, subject to the following
3231
+ > conditions:
3232
+ >
3233
+ > The above copyright notice and this permission notice shall be
3234
+ > included in all copies or substantial portions of the Software.
3235
+ >
3236
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3237
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
3238
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3239
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
3240
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
3241
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3242
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
3243
+ > OTHER DEALINGS IN THE SOFTWARE.
3244
+
3245
+ ---------------------------------------
3246
+
3247
+ ## utils-merge
3248
+ License: MIT
3249
+ By: Jared Hanson
3250
+ Repository: git://github.com/jaredhanson/utils-merge.git
3251
+
3252
+ > The MIT License (MIT)
3253
+ >
3254
+ > Copyright (c) 2013-2017 Jared Hanson
3255
+ >
3256
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3257
+ > this software and associated documentation files (the "Software"), to deal in
3258
+ > the Software without restriction, including without limitation the rights to
3259
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3260
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3261
+ > subject to the following conditions:
3262
+ >
3263
+ > The above copyright notice and this permission notice shall be included in all
3264
+ > copies or substantial portions of the Software.
3265
+ >
3266
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3267
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3268
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3269
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3270
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3271
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3272
+
3273
+ ---------------------------------------
3274
+
3275
+ ## vary
3276
+ License: MIT
3277
+ By: Douglas Christopher Wilson
3278
+ Repository: jshttp/vary
3279
+
3280
+ > (The MIT License)
3281
+ >
3282
+ > Copyright (c) 2014-2017 Douglas Christopher Wilson
3283
+ >
3284
+ > Permission is hereby granted, free of charge, to any person obtaining
3285
+ > a copy of this software and associated documentation files (the
3286
+ > 'Software'), to deal in the Software without restriction, including
3287
+ > without limitation the rights to use, copy, modify, merge, publish,
3288
+ > distribute, sublicense, and/or sell copies of the Software, and to
3289
+ > permit persons to whom the Software is furnished to do so, subject to
3290
+ > the following conditions:
3291
+ >
3292
+ > The above copyright notice and this permission notice shall be
3293
+ > included in all copies or substantial portions of the Software.
3294
+ >
3295
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3296
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3297
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3298
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3299
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3300
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3301
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3302
+
3303
+ ---------------------------------------
3304
+
3305
+ ## which
3306
+ License: ISC
3307
+ By: Isaac Z. Schlueter
3308
+ Repository: git://github.com/isaacs/node-which.git
3309
+
3310
+ > The ISC License
3311
+ >
3312
+ > Copyright (c) Isaac Z. Schlueter and Contributors
3313
+ >
3314
+ > Permission to use, copy, modify, and/or distribute this software for any
3315
+ > purpose with or without fee is hereby granted, provided that the above
3316
+ > copyright notice and this permission notice appear in all copies.
3317
+ >
3318
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3319
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3320
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3321
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3322
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3323
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3324
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3325
+
3326
+ ---------------------------------------
3327
+
3328
+ ## wrappy
3329
+ License: ISC
3330
+ By: Isaac Z. Schlueter
3331
+ Repository: https://github.com/npm/wrappy
3332
+
3333
+ > The ISC License
3334
+ >
3335
+ > Copyright (c) Isaac Z. Schlueter and Contributors
3336
+ >
3337
+ > Permission to use, copy, modify, and/or distribute this software for any
3338
+ > purpose with or without fee is hereby granted, provided that the above
3339
+ > copyright notice and this permission notice appear in all copies.
3340
+ >
3341
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3342
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3343
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3344
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3345
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3346
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3347
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3348
+
3349
+ ---------------------------------------
3350
+
3351
+ ## ws
3352
+ License: MIT
3353
+ By: Einar Otto Stangvik
3354
+ Repository: websockets/ws
3355
+
3356
+ > Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
3357
+ > Copyright (c) 2013 Arnout Kazemier and contributors
3358
+ > Copyright (c) 2016 Luigi Pinca and contributors
3359
+ >
3360
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3361
+ > this software and associated documentation files (the "Software"), to deal in
3362
+ > the Software without restriction, including without limitation the rights to
3363
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3364
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3365
+ > subject to the following conditions:
3366
+ >
3367
+ > The above copyright notice and this permission notice shall be included in all
3368
+ > copies or substantial portions of the Software.
3369
+ >
3370
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3371
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3372
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3373
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3374
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3375
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3376
+
3377
+ ---------------------------------------
3378
+
3379
+ ## yaml
3380
+ License: ISC
3381
+ By: Eemeli Aro
3382
+ Repository: github:eemeli/yaml
3383
+
3384
+ > Copyright Eemeli Aro <eemeli@gmail.com>
3385
+ >
3386
+ > Permission to use, copy, modify, and/or distribute this software for any purpose
3387
+ > with or without fee is hereby granted, provided that the above copyright notice
3388
+ > and this permission notice appear in all copies.
3389
+ >
3390
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3391
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
3392
+ > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3393
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
3394
+ > OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
3395
+ > TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
3396
+ > THIS SOFTWARE.