@yext/chat-ui-react 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +33 -0
- package/README.md +44 -0
- package/THIRD-PARTY-NOTICES +2106 -0
- package/lib/bundle.css +1 -0
- package/lib/commonjs/components/ChatHeader.d.ts +51 -0
- package/lib/commonjs/components/ChatHeader.d.ts.map +1 -0
- package/lib/commonjs/components/ChatHeader.js +42 -0
- package/lib/commonjs/components/ChatHeader.js.map +1 -0
- package/lib/commonjs/components/ChatInput.d.ts +48 -0
- package/lib/commonjs/components/ChatInput.d.ts.map +1 -0
- package/lib/commonjs/components/ChatInput.js +50 -0
- package/lib/commonjs/components/ChatInput.js.map +1 -0
- package/lib/commonjs/components/ChatPanel.d.ts +39 -0
- package/lib/commonjs/components/ChatPanel.d.ts.map +1 -0
- package/lib/commonjs/components/ChatPanel.js +54 -0
- package/lib/commonjs/components/ChatPanel.js.map +1 -0
- package/lib/commonjs/components/ChatPopUp.d.ts +42 -0
- package/lib/commonjs/components/ChatPopUp.d.ts.map +1 -0
- package/lib/commonjs/components/ChatPopUp.js +45 -0
- package/lib/commonjs/components/ChatPopUp.js.map +1 -0
- package/lib/commonjs/components/LoadingDots.d.ts +9 -0
- package/lib/commonjs/components/LoadingDots.d.ts.map +1 -0
- package/lib/commonjs/components/LoadingDots.js +15 -0
- package/lib/commonjs/components/LoadingDots.js.map +1 -0
- package/lib/commonjs/components/Markdown.d.ts +13 -0
- package/lib/commonjs/components/Markdown.d.ts.map +1 -0
- package/lib/commonjs/components/Markdown.js +32 -0
- package/lib/commonjs/components/Markdown.js.map +1 -0
- package/lib/commonjs/components/MessageBubble.d.ts +49 -0
- package/lib/commonjs/components/MessageBubble.d.ts.map +1 -0
- package/lib/commonjs/components/MessageBubble.js +54 -0
- package/lib/commonjs/components/MessageBubble.js.map +1 -0
- package/lib/commonjs/components/index.d.ts +11 -0
- package/lib/commonjs/components/index.d.ts.map +1 -0
- package/lib/commonjs/components/index.js +14 -0
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/hooks/index.d.ts +2 -0
- package/lib/commonjs/hooks/index.d.ts.map +1 -0
- package/lib/commonjs/hooks/index.js +6 -0
- package/lib/commonjs/hooks/index.js.map +1 -0
- package/lib/commonjs/hooks/useComposedCssClasses.d.ts +30 -0
- package/lib/commonjs/hooks/useComposedCssClasses.d.ts.map +1 -0
- package/lib/commonjs/hooks/useComposedCssClasses.js +60 -0
- package/lib/commonjs/hooks/useComposedCssClasses.js.map +1 -0
- package/lib/commonjs/icons/Arrow.d.ts +3 -0
- package/lib/commonjs/icons/Arrow.d.ts.map +1 -0
- package/lib/commonjs/icons/Arrow.js +9 -0
- package/lib/commonjs/icons/Arrow.js.map +1 -0
- package/lib/commonjs/icons/Cross.d.ts +3 -0
- package/lib/commonjs/icons/Cross.d.ts.map +1 -0
- package/lib/commonjs/icons/Cross.js +9 -0
- package/lib/commonjs/icons/Cross.js.map +1 -0
- package/lib/commonjs/icons/DualSync.d.ts +3 -0
- package/lib/commonjs/icons/DualSync.d.ts.map +1 -0
- package/lib/commonjs/icons/DualSync.js +9 -0
- package/lib/commonjs/icons/DualSync.js.map +1 -0
- package/lib/commonjs/icons/Message.d.ts +3 -0
- package/lib/commonjs/icons/Message.d.ts.map +1 -0
- package/lib/commonjs/icons/Message.js +9 -0
- package/lib/commonjs/icons/Message.js.map +1 -0
- package/lib/commonjs/index.d.ts +3 -0
- package/lib/commonjs/index.d.ts.map +1 -0
- package/lib/commonjs/index.js +19 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/utils/defaultHandleError.d.ts +9 -0
- package/lib/commonjs/utils/defaultHandleError.d.ts.map +1 -0
- package/lib/commonjs/utils/defaultHandleError.js +15 -0
- package/lib/commonjs/utils/defaultHandleError.js.map +1 -0
- package/lib/esm/components/ChatHeader.d.ts +51 -0
- package/lib/esm/components/ChatHeader.d.ts.map +1 -0
- package/lib/esm/components/ChatHeader.js +38 -0
- package/lib/esm/components/ChatHeader.js.map +1 -0
- package/lib/esm/components/ChatInput.d.ts +48 -0
- package/lib/esm/components/ChatInput.d.ts.map +1 -0
- package/lib/esm/components/ChatInput.js +43 -0
- package/lib/esm/components/ChatInput.js.map +1 -0
- package/lib/esm/components/ChatPanel.d.ts +39 -0
- package/lib/esm/components/ChatPanel.d.ts.map +1 -0
- package/lib/esm/components/ChatPanel.js +50 -0
- package/lib/esm/components/ChatPanel.js.map +1 -0
- package/lib/esm/components/ChatPopUp.d.ts +42 -0
- package/lib/esm/components/ChatPopUp.d.ts.map +1 -0
- package/lib/esm/components/ChatPopUp.js +41 -0
- package/lib/esm/components/ChatPopUp.js.map +1 -0
- package/lib/esm/components/LoadingDots.d.ts +9 -0
- package/lib/esm/components/LoadingDots.d.ts.map +1 -0
- package/lib/esm/components/LoadingDots.js +11 -0
- package/lib/esm/components/LoadingDots.js.map +1 -0
- package/lib/esm/components/Markdown.d.ts +13 -0
- package/lib/esm/components/Markdown.d.ts.map +1 -0
- package/lib/esm/components/Markdown.js +25 -0
- package/lib/esm/components/Markdown.js.map +1 -0
- package/lib/esm/components/MessageBubble.d.ts +49 -0
- package/lib/esm/components/MessageBubble.d.ts.map +1 -0
- package/lib/esm/components/MessageBubble.js +50 -0
- package/lib/esm/components/MessageBubble.js.map +1 -0
- package/lib/esm/components/index.d.ts +11 -0
- package/lib/esm/components/index.d.ts.map +1 -0
- package/lib/esm/components/index.js +6 -0
- package/lib/esm/components/index.js.map +1 -0
- package/lib/esm/hooks/index.d.ts +2 -0
- package/lib/esm/hooks/index.d.ts.map +1 -0
- package/lib/esm/hooks/index.js +2 -0
- package/lib/esm/hooks/index.js.map +1 -0
- package/lib/esm/hooks/useComposedCssClasses.d.ts +30 -0
- package/lib/esm/hooks/useComposedCssClasses.d.ts.map +1 -0
- package/lib/esm/hooks/useComposedCssClasses.js +56 -0
- package/lib/esm/hooks/useComposedCssClasses.js.map +1 -0
- package/lib/esm/icons/Arrow.d.ts +3 -0
- package/lib/esm/icons/Arrow.d.ts.map +1 -0
- package/lib/esm/icons/Arrow.js +5 -0
- package/lib/esm/icons/Arrow.js.map +1 -0
- package/lib/esm/icons/Cross.d.ts +3 -0
- package/lib/esm/icons/Cross.d.ts.map +1 -0
- package/lib/esm/icons/Cross.js +5 -0
- package/lib/esm/icons/Cross.js.map +1 -0
- package/lib/esm/icons/DualSync.d.ts +3 -0
- package/lib/esm/icons/DualSync.d.ts.map +1 -0
- package/lib/esm/icons/DualSync.js +5 -0
- package/lib/esm/icons/DualSync.js.map +1 -0
- package/lib/esm/icons/Message.d.ts +3 -0
- package/lib/esm/icons/Message.d.ts.map +1 -0
- package/lib/esm/icons/Message.js +5 -0
- package/lib/esm/icons/Message.js.map +1 -0
- package/lib/esm/index.d.ts +266 -0
- package/lib/esm/index.d.ts.map +1 -0
- package/lib/esm/index.js +3 -0
- package/lib/esm/index.js.map +1 -0
- package/lib/esm/tsdoc-metadata.json +11 -0
- package/lib/esm/utils/defaultHandleError.d.ts +9 -0
- package/lib/esm/utils/defaultHandleError.d.ts.map +1 -0
- package/lib/esm/utils/defaultHandleError.js +11 -0
- package/lib/esm/utils/defaultHandleError.js.map +1 -0
- package/package.json +95 -0
- package/src/components/ChatHeader.tsx +118 -0
- package/src/components/ChatInput.tsx +129 -0
- package/src/components/ChatPanel.tsx +108 -0
- package/src/components/ChatPopUp.tsx +112 -0
- package/src/components/LoadingDots.tsx +22 -0
- package/src/components/Markdown.tsx +36 -0
- package/src/components/MessageBubble.tsx +125 -0
- package/src/components/index.ts +17 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useComposedCssClasses.ts +62 -0
- package/src/icons/Arrow.tsx +8 -0
- package/src/icons/Cross.tsx +8 -0
- package/src/icons/DualSync.tsx +8 -0
- package/src/icons/Message.tsx +10 -0
- package/src/index.ts +2 -0
- package/src/utils/defaultHandleError.ts +10 -0
|
@@ -0,0 +1,2106 @@
|
|
|
1
|
+
This file was generated with the generate-license-file npm package!
|
|
2
|
+
https://www.npmjs.com/package/generate-license-file
|
|
3
|
+
|
|
4
|
+
The following npm package may be included in this product:
|
|
5
|
+
|
|
6
|
+
- @babel/runtime@7.21.5
|
|
7
|
+
|
|
8
|
+
This package contains the following license and notice below:
|
|
9
|
+
|
|
10
|
+
MIT License
|
|
11
|
+
|
|
12
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
13
|
+
|
|
14
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
15
|
+
a copy of this software and associated documentation files (the
|
|
16
|
+
"Software"), to deal in the Software without restriction, including
|
|
17
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
18
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
19
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
20
|
+
the following conditions:
|
|
21
|
+
|
|
22
|
+
The above copyright notice and this permission notice shall be
|
|
23
|
+
included in all copies or substantial portions of the Software.
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
26
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
27
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
28
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
29
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
30
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
31
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
32
|
+
|
|
33
|
+
-----------
|
|
34
|
+
|
|
35
|
+
The following npm package may be included in this product:
|
|
36
|
+
|
|
37
|
+
- @reduxjs/toolkit@1.9.5
|
|
38
|
+
|
|
39
|
+
This package contains the following license and notice below:
|
|
40
|
+
|
|
41
|
+
MIT License
|
|
42
|
+
|
|
43
|
+
Copyright (c) 2018 Mark Erikson
|
|
44
|
+
|
|
45
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
46
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
47
|
+
in the Software without restriction, including without limitation the rights
|
|
48
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
49
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
50
|
+
furnished to do so, subject to the following conditions:
|
|
51
|
+
|
|
52
|
+
The above copyright notice and this permission notice shall be included in all
|
|
53
|
+
copies or substantial portions of the Software.
|
|
54
|
+
|
|
55
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
56
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
57
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
58
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
59
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
60
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
61
|
+
SOFTWARE.
|
|
62
|
+
|
|
63
|
+
-----------
|
|
64
|
+
|
|
65
|
+
The following npm packages may be included in this product:
|
|
66
|
+
|
|
67
|
+
- @types/hast@2.3.4
|
|
68
|
+
- @types/mdast@3.0.11
|
|
69
|
+
- @types/parse5@5.0.3
|
|
70
|
+
- @types/prop-types@15.7.5
|
|
71
|
+
- @types/react-dom@18.2.4
|
|
72
|
+
- @types/react@18.2.7
|
|
73
|
+
- @types/scheduler@0.16.3
|
|
74
|
+
- @types/unist@2.0.6
|
|
75
|
+
- @types/use-sync-external-store@0.0.3
|
|
76
|
+
|
|
77
|
+
These packages each contain the following license and notice below:
|
|
78
|
+
|
|
79
|
+
MIT License
|
|
80
|
+
|
|
81
|
+
Copyright (c) Microsoft Corporation.
|
|
82
|
+
|
|
83
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
84
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
85
|
+
in the Software without restriction, including without limitation the rights
|
|
86
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
87
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
88
|
+
furnished to do so, subject to the following conditions:
|
|
89
|
+
|
|
90
|
+
The above copyright notice and this permission notice shall be included in all
|
|
91
|
+
copies or substantial portions of the Software.
|
|
92
|
+
|
|
93
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
94
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
95
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
96
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
97
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
98
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
99
|
+
SOFTWARE
|
|
100
|
+
|
|
101
|
+
-----------
|
|
102
|
+
|
|
103
|
+
The following npm package may be included in this product:
|
|
104
|
+
|
|
105
|
+
- @types/hoist-non-react-statics@3.3.1
|
|
106
|
+
|
|
107
|
+
This package contains the following license and notice below:
|
|
108
|
+
|
|
109
|
+
MIT License
|
|
110
|
+
|
|
111
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
112
|
+
|
|
113
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
114
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
115
|
+
in the Software without restriction, including without limitation the rights
|
|
116
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
117
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
118
|
+
furnished to do so, subject to the following conditions:
|
|
119
|
+
|
|
120
|
+
The above copyright notice and this permission notice shall be included in all
|
|
121
|
+
copies or substantial portions of the Software.
|
|
122
|
+
|
|
123
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
124
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
125
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
126
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
127
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
128
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
129
|
+
SOFTWARE
|
|
130
|
+
|
|
131
|
+
-----------
|
|
132
|
+
|
|
133
|
+
The following npm packages may be included in this product:
|
|
134
|
+
|
|
135
|
+
- @yext/chat-core@0.3.0
|
|
136
|
+
- @yext/chat-headless-react@0.3.1
|
|
137
|
+
- @yext/chat-headless@0.3.1
|
|
138
|
+
|
|
139
|
+
These packages each contain the following license and notice below:
|
|
140
|
+
|
|
141
|
+
The files listed in this repository are licensed under the below license. All other features and products are subject to separate agreements and certain functionality requires paid subscriptions to Yext products.
|
|
142
|
+
|
|
143
|
+
Contains information from the language-subtag-registry JSON Database (https://github.com/mattcg/language-subtag-registry/tree/master/data/json) which is made available under the ODC Attribution License (https://github.com/mattcg/language-subtag-registry/blob/master/LICENSE.md).
|
|
144
|
+
|
|
145
|
+
BSD 3-Clause License
|
|
146
|
+
|
|
147
|
+
Copyright (c) 2023, Yext
|
|
148
|
+
All rights reserved.
|
|
149
|
+
|
|
150
|
+
Redistribution and use in source and binary forms, with or without
|
|
151
|
+
modification, are permitted provided that the following conditions are met:
|
|
152
|
+
|
|
153
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
154
|
+
list of conditions and the following disclaimer.
|
|
155
|
+
|
|
156
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
157
|
+
this list of conditions and the following disclaimer in the documentation
|
|
158
|
+
and/or other materials provided with the distribution.
|
|
159
|
+
|
|
160
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
161
|
+
contributors may be used to endorse or promote products derived from
|
|
162
|
+
this software without specific prior written permission.
|
|
163
|
+
|
|
164
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
165
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
166
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
167
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
168
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
169
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
170
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
171
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
172
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
173
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
174
|
+
|
|
175
|
+
-----------
|
|
176
|
+
|
|
177
|
+
The following npm packages may be included in this product:
|
|
178
|
+
|
|
179
|
+
- bail@1.0.5
|
|
180
|
+
- ccount@1.1.0
|
|
181
|
+
- character-entities-legacy@1.1.4
|
|
182
|
+
- character-entities@1.2.4
|
|
183
|
+
- character-reference-invalid@1.1.4
|
|
184
|
+
- mdast-util-to-string@2.0.0
|
|
185
|
+
- unist-util-position@3.1.0
|
|
186
|
+
- unist-util-visit@2.0.3
|
|
187
|
+
|
|
188
|
+
These packages each contain the following license and notice below:
|
|
189
|
+
|
|
190
|
+
(The MIT License)
|
|
191
|
+
|
|
192
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
193
|
+
|
|
194
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
195
|
+
a copy of this software and associated documentation files (the
|
|
196
|
+
'Software'), to deal in the Software without restriction, including
|
|
197
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
198
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
199
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
200
|
+
the following conditions:
|
|
201
|
+
|
|
202
|
+
The above copyright notice and this permission notice shall be
|
|
203
|
+
included in all copies or substantial portions of the Software.
|
|
204
|
+
|
|
205
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
206
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
207
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
208
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
209
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
210
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
211
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
212
|
+
|
|
213
|
+
-----------
|
|
214
|
+
|
|
215
|
+
The following npm packages may be included in this product:
|
|
216
|
+
|
|
217
|
+
- comma-separated-tokens@1.0.8
|
|
218
|
+
- hast-to-hyperscript@9.0.1
|
|
219
|
+
- hast-util-from-parse5@6.0.1
|
|
220
|
+
- hast-util-parse-selector@2.2.5
|
|
221
|
+
- hast-util-raw@6.1.0
|
|
222
|
+
- hast-util-sanitize@3.0.2
|
|
223
|
+
- hast-util-to-parse5@6.0.0
|
|
224
|
+
- hastscript@6.0.0
|
|
225
|
+
- html-void-elements@1.0.5
|
|
226
|
+
- is-alphabetical@1.0.4
|
|
227
|
+
- is-alphanumerical@1.0.4
|
|
228
|
+
- is-decimal@1.0.4
|
|
229
|
+
- is-hexadecimal@1.0.4
|
|
230
|
+
- mdast-util-to-hast@10.2.0
|
|
231
|
+
- rehype-raw@5.1.0
|
|
232
|
+
- rehype-sanitize@4.0.0
|
|
233
|
+
- remark-rehype@8.1.0
|
|
234
|
+
- space-separated-tokens@1.1.5
|
|
235
|
+
- unist-util-generated@1.1.6
|
|
236
|
+
- unist-util-stringify-position@2.0.3
|
|
237
|
+
- unist-util-visit-parents@3.1.1
|
|
238
|
+
- vfile-location@3.2.0
|
|
239
|
+
- web-namespaces@1.1.4
|
|
240
|
+
- zwitch@1.0.5
|
|
241
|
+
|
|
242
|
+
These packages each contain the following license and notice below:
|
|
243
|
+
|
|
244
|
+
(The MIT License)
|
|
245
|
+
|
|
246
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
247
|
+
|
|
248
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
249
|
+
a copy of this software and associated documentation files (the
|
|
250
|
+
'Software'), to deal in the Software without restriction, including
|
|
251
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
252
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
253
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
254
|
+
the following conditions:
|
|
255
|
+
|
|
256
|
+
The above copyright notice and this permission notice shall be
|
|
257
|
+
included in all copies or substantial portions of the Software.
|
|
258
|
+
|
|
259
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
260
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
261
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
262
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
263
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
264
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
265
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
266
|
+
|
|
267
|
+
-----------
|
|
268
|
+
|
|
269
|
+
The following npm package may be included in this product:
|
|
270
|
+
|
|
271
|
+
- cross-fetch@3.1.6
|
|
272
|
+
|
|
273
|
+
This package contains the following license and notice below:
|
|
274
|
+
|
|
275
|
+
The MIT License (MIT)
|
|
276
|
+
|
|
277
|
+
Copyright (c) 2017 Leonardo Quixadá
|
|
278
|
+
|
|
279
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
280
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
281
|
+
in the Software without restriction, including without limitation the rights
|
|
282
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
283
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
284
|
+
furnished to do so, subject to the following conditions:
|
|
285
|
+
|
|
286
|
+
The above copyright notice and this permission notice shall be included in all
|
|
287
|
+
copies or substantial portions of the Software.
|
|
288
|
+
|
|
289
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
290
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
291
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
292
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
293
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
294
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
295
|
+
SOFTWARE.
|
|
296
|
+
|
|
297
|
+
-----------
|
|
298
|
+
|
|
299
|
+
The following npm package may be included in this product:
|
|
300
|
+
|
|
301
|
+
- csstype@3.1.2
|
|
302
|
+
|
|
303
|
+
This package contains the following license and notice below:
|
|
304
|
+
|
|
305
|
+
Copyright (c) 2017-2018 Fredrik Nicol
|
|
306
|
+
|
|
307
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
308
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
309
|
+
in the Software without restriction, including without limitation the rights
|
|
310
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
311
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
312
|
+
furnished to do so, subject to the following conditions:
|
|
313
|
+
|
|
314
|
+
The above copyright notice and this permission notice shall be included in all
|
|
315
|
+
copies or substantial portions of the Software.
|
|
316
|
+
|
|
317
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
318
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
319
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
320
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
321
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
322
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
323
|
+
SOFTWARE.
|
|
324
|
+
|
|
325
|
+
-----------
|
|
326
|
+
|
|
327
|
+
The following npm package may be included in this product:
|
|
328
|
+
|
|
329
|
+
- debug@4.3.4
|
|
330
|
+
|
|
331
|
+
This package contains the following license and notice below:
|
|
332
|
+
|
|
333
|
+
(The MIT License)
|
|
334
|
+
|
|
335
|
+
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
336
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
337
|
+
|
|
338
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
339
|
+
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
340
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
341
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
342
|
+
subject to the following conditions:
|
|
343
|
+
|
|
344
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
345
|
+
portions of the Software.
|
|
346
|
+
|
|
347
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
348
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
349
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
350
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
351
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
352
|
+
|
|
353
|
+
-----------
|
|
354
|
+
|
|
355
|
+
The following npm package may be included in this product:
|
|
356
|
+
|
|
357
|
+
- escape-string-regexp@4.0.0
|
|
358
|
+
|
|
359
|
+
This package contains the following license and notice below:
|
|
360
|
+
|
|
361
|
+
MIT License
|
|
362
|
+
|
|
363
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
364
|
+
|
|
365
|
+
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:
|
|
366
|
+
|
|
367
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
368
|
+
|
|
369
|
+
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.
|
|
370
|
+
|
|
371
|
+
-----------
|
|
372
|
+
|
|
373
|
+
The following npm package may be included in this product:
|
|
374
|
+
|
|
375
|
+
- extend@3.0.2
|
|
376
|
+
|
|
377
|
+
This package contains the following license and notice below:
|
|
378
|
+
|
|
379
|
+
The MIT License (MIT)
|
|
380
|
+
|
|
381
|
+
Copyright (c) 2014 Stefan Thomas
|
|
382
|
+
|
|
383
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
384
|
+
a copy of this software and associated documentation files (the
|
|
385
|
+
"Software"), to deal in the Software without restriction, including
|
|
386
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
387
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
388
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
389
|
+
the following conditions:
|
|
390
|
+
|
|
391
|
+
The above copyright notice and this permission notice shall be
|
|
392
|
+
included in all copies or substantial portions of the Software.
|
|
393
|
+
|
|
394
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
395
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
396
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
397
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
398
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
399
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
400
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
401
|
+
|
|
402
|
+
-----------
|
|
403
|
+
|
|
404
|
+
The following npm package may be included in this product:
|
|
405
|
+
|
|
406
|
+
- fast-shallow-equal@1.0.0
|
|
407
|
+
|
|
408
|
+
This package contains the following license and notice below:
|
|
409
|
+
|
|
410
|
+
This is free and unencumbered software released into the public domain.
|
|
411
|
+
|
|
412
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
413
|
+
distribute this software, either in source code form or as a compiled
|
|
414
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
|
415
|
+
means.
|
|
416
|
+
|
|
417
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
|
418
|
+
of this software dedicate any and all copyright interest in the
|
|
419
|
+
software to the public domain. We make this dedication for the benefit
|
|
420
|
+
of the public at large and to the detriment of our heirs and
|
|
421
|
+
successors. We intend this dedication to be an overt act of
|
|
422
|
+
relinquishment in perpetuity of all present and future rights to this
|
|
423
|
+
software under copyright law.
|
|
424
|
+
|
|
425
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
426
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
427
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
428
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
429
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
430
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
431
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
432
|
+
|
|
433
|
+
For more information, please refer to <https://unlicense.org>
|
|
434
|
+
|
|
435
|
+
-----------
|
|
436
|
+
|
|
437
|
+
The following npm package may be included in this product:
|
|
438
|
+
|
|
439
|
+
- hoist-non-react-statics@3.3.2
|
|
440
|
+
|
|
441
|
+
This package contains the following license and notice below:
|
|
442
|
+
|
|
443
|
+
Software License Agreement (BSD License)
|
|
444
|
+
========================================
|
|
445
|
+
|
|
446
|
+
Copyright (c) 2015, Yahoo! Inc. All rights reserved.
|
|
447
|
+
----------------------------------------------------
|
|
448
|
+
|
|
449
|
+
Redistribution and use of this software in source and binary forms, with or
|
|
450
|
+
without modification, are permitted provided that the following conditions are
|
|
451
|
+
met:
|
|
452
|
+
|
|
453
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
454
|
+
list of conditions and the following disclaimer.
|
|
455
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
456
|
+
this list of conditions and the following disclaimer in the documentation
|
|
457
|
+
and/or other materials provided with the distribution.
|
|
458
|
+
* Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be
|
|
459
|
+
used to endorse or promote products derived from this software without
|
|
460
|
+
specific prior written permission of Yahoo! Inc.
|
|
461
|
+
|
|
462
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
463
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
464
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
465
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
466
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
467
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
468
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
469
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
470
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
471
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
472
|
+
|
|
473
|
+
-----------
|
|
474
|
+
|
|
475
|
+
The following npm package may be included in this product:
|
|
476
|
+
|
|
477
|
+
- immer@9.0.21
|
|
478
|
+
|
|
479
|
+
This package contains the following license and notice below:
|
|
480
|
+
|
|
481
|
+
MIT License
|
|
482
|
+
|
|
483
|
+
Copyright (c) 2017 Michel Weststrate
|
|
484
|
+
|
|
485
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
486
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
487
|
+
in the Software without restriction, including without limitation the rights
|
|
488
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
489
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
490
|
+
furnished to do so, subject to the following conditions:
|
|
491
|
+
|
|
492
|
+
The above copyright notice and this permission notice shall be included in all
|
|
493
|
+
copies or substantial portions of the Software.
|
|
494
|
+
|
|
495
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
496
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
497
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
498
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
499
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
500
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
501
|
+
SOFTWARE.
|
|
502
|
+
|
|
503
|
+
-----------
|
|
504
|
+
|
|
505
|
+
The following npm package may be included in this product:
|
|
506
|
+
|
|
507
|
+
- inline-style-parser@0.1.1
|
|
508
|
+
|
|
509
|
+
This package contains the following license and notice below:
|
|
510
|
+
|
|
511
|
+
# inline-style-parser
|
|
512
|
+
|
|
513
|
+
[](https://nodei.co/npm/inline-style-parser/)
|
|
514
|
+
|
|
515
|
+
[](https://www.npmjs.com/package/inline-style-parser)
|
|
516
|
+
[](https://travis-ci.org/remarkablemark/inline-style-parser)
|
|
517
|
+
[](https://coveralls.io/github/remarkablemark/inline-style-parser?branch=master)
|
|
518
|
+
|
|
519
|
+
An inline style parser copied from [`css/lib/parse/index.js`](https://github.com/reworkcss/css/blob/v2.2.4/lib/parse/index.js):
|
|
520
|
+
|
|
521
|
+
```
|
|
522
|
+
InlineStyleParser(string)
|
|
523
|
+
```
|
|
524
|
+
|
|
525
|
+
Example:
|
|
526
|
+
|
|
527
|
+
```js
|
|
528
|
+
var parse = require('inline-style-parser');
|
|
529
|
+
parse('color: #BADA55;');
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
Output:
|
|
533
|
+
|
|
534
|
+
```js
|
|
535
|
+
[ { type: 'declaration',
|
|
536
|
+
property: 'color',
|
|
537
|
+
value: '#BADA55',
|
|
538
|
+
position: Position { start: [Object], end: [Object], source: undefined } } ]
|
|
539
|
+
```
|
|
540
|
+
|
|
541
|
+
[JSFiddle](https://jsfiddle.net/remarkablemark/hcxbpwq8/) | [Repl.it](https://repl.it/@remarkablemark/inline-style-parser)
|
|
542
|
+
|
|
543
|
+
See [usage](#usage) and [examples](https://github.com/remarkablemark/inline-style-parser/tree/master/examples).
|
|
544
|
+
|
|
545
|
+
## Installation
|
|
546
|
+
|
|
547
|
+
[NPM](https://www.npmjs.com/package/inline-style-parser):
|
|
548
|
+
|
|
549
|
+
```sh
|
|
550
|
+
$ npm install inline-style-parser --save
|
|
551
|
+
```
|
|
552
|
+
|
|
553
|
+
[Yarn](https://yarnpkg.com/package/inline-style-parser):
|
|
554
|
+
|
|
555
|
+
```sh
|
|
556
|
+
$ yarn add inline-style-parser
|
|
557
|
+
```
|
|
558
|
+
|
|
559
|
+
[CDN](https://unpkg.com/inline-style-parser/):
|
|
560
|
+
|
|
561
|
+
```html
|
|
562
|
+
<script src="https://unpkg.com/inline-style-parser@latest/dist/inline-style-parser.min.js"></script>
|
|
563
|
+
<script>
|
|
564
|
+
window.InlineStyleParser(/* string */);
|
|
565
|
+
</script>
|
|
566
|
+
```
|
|
567
|
+
|
|
568
|
+
## Usage
|
|
569
|
+
|
|
570
|
+
Import the module:
|
|
571
|
+
|
|
572
|
+
```js
|
|
573
|
+
// CommonJS
|
|
574
|
+
const parse = require('inline-style-parser');
|
|
575
|
+
|
|
576
|
+
// ES Modules
|
|
577
|
+
import parse from 'inline-style-parser';
|
|
578
|
+
```
|
|
579
|
+
|
|
580
|
+
Parse single declaration:
|
|
581
|
+
|
|
582
|
+
```js
|
|
583
|
+
parse('left: 0');
|
|
584
|
+
```
|
|
585
|
+
|
|
586
|
+
Output:
|
|
587
|
+
|
|
588
|
+
```js
|
|
589
|
+
[
|
|
590
|
+
{
|
|
591
|
+
type: 'declaration',
|
|
592
|
+
property: 'left',
|
|
593
|
+
value: '0',
|
|
594
|
+
position: {
|
|
595
|
+
start: { line: 1, column: 1 },
|
|
596
|
+
end: { line: 1, column: 8 },
|
|
597
|
+
source: undefined
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
]
|
|
601
|
+
```
|
|
602
|
+
|
|
603
|
+
Parse multiple declarations:
|
|
604
|
+
|
|
605
|
+
```js
|
|
606
|
+
parse('left: 0; right: 100px;');
|
|
607
|
+
```
|
|
608
|
+
|
|
609
|
+
Output:
|
|
610
|
+
|
|
611
|
+
```js
|
|
612
|
+
[
|
|
613
|
+
{
|
|
614
|
+
type: 'declaration',
|
|
615
|
+
property: 'left',
|
|
616
|
+
value: '0',
|
|
617
|
+
position: {
|
|
618
|
+
start: { line: 1, column: 1 },
|
|
619
|
+
end: { line: 1, column: 8 },
|
|
620
|
+
source: undefined
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
type: 'declaration',
|
|
625
|
+
property: 'right',
|
|
626
|
+
value: '100px',
|
|
627
|
+
position: {
|
|
628
|
+
start: { line: 1, column: 10 },
|
|
629
|
+
end: { line: 1, column: 22 },
|
|
630
|
+
source: undefined
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
]
|
|
634
|
+
```
|
|
635
|
+
|
|
636
|
+
Parse declaration with missing value:
|
|
637
|
+
|
|
638
|
+
```js
|
|
639
|
+
parse('top:');
|
|
640
|
+
```
|
|
641
|
+
|
|
642
|
+
Output:
|
|
643
|
+
|
|
644
|
+
```js
|
|
645
|
+
[
|
|
646
|
+
{
|
|
647
|
+
type: 'declaration',
|
|
648
|
+
property: 'top',
|
|
649
|
+
value: '',
|
|
650
|
+
position: {
|
|
651
|
+
start: { line: 1, column: 1 },
|
|
652
|
+
end: { line: 1, column: 5 },
|
|
653
|
+
source: undefined
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
]
|
|
657
|
+
```
|
|
658
|
+
|
|
659
|
+
Parse unknown declaration:
|
|
660
|
+
|
|
661
|
+
```js
|
|
662
|
+
parse('answer: 42;');
|
|
663
|
+
```
|
|
664
|
+
|
|
665
|
+
Output:
|
|
666
|
+
|
|
667
|
+
```js
|
|
668
|
+
[
|
|
669
|
+
{
|
|
670
|
+
type: 'declaration',
|
|
671
|
+
property: 'answer',
|
|
672
|
+
value: '42',
|
|
673
|
+
position: {
|
|
674
|
+
start: { line: 1, column: 1 },
|
|
675
|
+
end: { line: 1, column: 11 },
|
|
676
|
+
source: undefined
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
]
|
|
680
|
+
```
|
|
681
|
+
|
|
682
|
+
Invalid declarations:
|
|
683
|
+
|
|
684
|
+
```js
|
|
685
|
+
parse(''); // []
|
|
686
|
+
parse(); // throws TypeError
|
|
687
|
+
parse(1); // throws TypeError
|
|
688
|
+
parse('width'); // throws Error
|
|
689
|
+
parse('/*'); // throws Error
|
|
690
|
+
```
|
|
691
|
+
|
|
692
|
+
## Testing
|
|
693
|
+
|
|
694
|
+
Run tests:
|
|
695
|
+
|
|
696
|
+
```sh
|
|
697
|
+
$ npm test
|
|
698
|
+
```
|
|
699
|
+
|
|
700
|
+
Run tests in watch mode:
|
|
701
|
+
|
|
702
|
+
```sh
|
|
703
|
+
$ npm run test:watch
|
|
704
|
+
```
|
|
705
|
+
|
|
706
|
+
Run tests with coverage:
|
|
707
|
+
|
|
708
|
+
```sh
|
|
709
|
+
$ npm run test:coverage
|
|
710
|
+
```
|
|
711
|
+
|
|
712
|
+
Run tests in CI mode:
|
|
713
|
+
|
|
714
|
+
```sh
|
|
715
|
+
$ npm run test:ci
|
|
716
|
+
```
|
|
717
|
+
|
|
718
|
+
Lint files:
|
|
719
|
+
|
|
720
|
+
```sh
|
|
721
|
+
$ npm run lint
|
|
722
|
+
```
|
|
723
|
+
|
|
724
|
+
Fix lint errors:
|
|
725
|
+
|
|
726
|
+
```sh
|
|
727
|
+
$ npm run lint:fix
|
|
728
|
+
```
|
|
729
|
+
|
|
730
|
+
## Release
|
|
731
|
+
|
|
732
|
+
Only collaborators with credentials can release and publish:
|
|
733
|
+
|
|
734
|
+
```sh
|
|
735
|
+
$ npm run release
|
|
736
|
+
$ git push --follow-tags && npm publish
|
|
737
|
+
```
|
|
738
|
+
|
|
739
|
+
## License
|
|
740
|
+
|
|
741
|
+
MIT. See [license](https://github.com/reworkcss/css/blob/v2.2.4/LICENSE) from original project.
|
|
742
|
+
|
|
743
|
+
-----------
|
|
744
|
+
|
|
745
|
+
The following npm package may be included in this product:
|
|
746
|
+
|
|
747
|
+
- is-buffer@2.0.5
|
|
748
|
+
|
|
749
|
+
This package contains the following license and notice below:
|
|
750
|
+
|
|
751
|
+
The MIT License (MIT)
|
|
752
|
+
|
|
753
|
+
Copyright (c) Feross Aboukhadijeh
|
|
754
|
+
|
|
755
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
756
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
757
|
+
in the Software without restriction, including without limitation the rights
|
|
758
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
759
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
760
|
+
furnished to do so, subject to the following conditions:
|
|
761
|
+
|
|
762
|
+
The above copyright notice and this permission notice shall be included in
|
|
763
|
+
all copies or substantial portions of the Software.
|
|
764
|
+
|
|
765
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
766
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
767
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
768
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
769
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
770
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
771
|
+
THE SOFTWARE.
|
|
772
|
+
|
|
773
|
+
-----------
|
|
774
|
+
|
|
775
|
+
The following npm package may be included in this product:
|
|
776
|
+
|
|
777
|
+
- is-plain-obj@2.1.0
|
|
778
|
+
|
|
779
|
+
This package contains the following license and notice below:
|
|
780
|
+
|
|
781
|
+
MIT License
|
|
782
|
+
|
|
783
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
784
|
+
|
|
785
|
+
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:
|
|
786
|
+
|
|
787
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
788
|
+
|
|
789
|
+
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.
|
|
790
|
+
|
|
791
|
+
-----------
|
|
792
|
+
|
|
793
|
+
The following npm package may be included in this product:
|
|
794
|
+
|
|
795
|
+
- js-tokens@4.0.0
|
|
796
|
+
|
|
797
|
+
This package contains the following license and notice below:
|
|
798
|
+
|
|
799
|
+
The MIT License (MIT)
|
|
800
|
+
|
|
801
|
+
Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
|
|
802
|
+
|
|
803
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
804
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
805
|
+
in the Software without restriction, including without limitation the rights
|
|
806
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
807
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
808
|
+
furnished to do so, subject to the following conditions:
|
|
809
|
+
|
|
810
|
+
The above copyright notice and this permission notice shall be included in
|
|
811
|
+
all copies or substantial portions of the Software.
|
|
812
|
+
|
|
813
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
814
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
815
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
816
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
817
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
818
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
819
|
+
THE SOFTWARE.
|
|
820
|
+
|
|
821
|
+
-----------
|
|
822
|
+
|
|
823
|
+
The following npm packages may be included in this product:
|
|
824
|
+
|
|
825
|
+
- longest-streak@2.0.4
|
|
826
|
+
- parse-entities@2.0.0
|
|
827
|
+
- property-information@5.6.0
|
|
828
|
+
|
|
829
|
+
These packages each contain the following license and notice below:
|
|
830
|
+
|
|
831
|
+
(The MIT License)
|
|
832
|
+
|
|
833
|
+
Copyright (c) 2015 Titus Wormer <mailto:tituswormer@gmail.com>
|
|
834
|
+
|
|
835
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
836
|
+
a copy of this software and associated documentation files (the
|
|
837
|
+
'Software'), to deal in the Software without restriction, including
|
|
838
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
839
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
840
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
841
|
+
the following conditions:
|
|
842
|
+
|
|
843
|
+
The above copyright notice and this permission notice shall be
|
|
844
|
+
included in all copies or substantial portions of the Software.
|
|
845
|
+
|
|
846
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
847
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
848
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
849
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
850
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
851
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
852
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
853
|
+
|
|
854
|
+
-----------
|
|
855
|
+
|
|
856
|
+
The following npm package may be included in this product:
|
|
857
|
+
|
|
858
|
+
- loose-envify@1.4.0
|
|
859
|
+
|
|
860
|
+
This package contains the following license and notice below:
|
|
861
|
+
|
|
862
|
+
The MIT License (MIT)
|
|
863
|
+
|
|
864
|
+
Copyright (c) 2015 Andres Suarez <zertosh@gmail.com>
|
|
865
|
+
|
|
866
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
867
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
868
|
+
in the Software without restriction, including without limitation the rights
|
|
869
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
870
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
871
|
+
furnished to do so, subject to the following conditions:
|
|
872
|
+
|
|
873
|
+
The above copyright notice and this permission notice shall be included in
|
|
874
|
+
all copies or substantial portions of the Software.
|
|
875
|
+
|
|
876
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
877
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
878
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
879
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
880
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
881
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
882
|
+
THE SOFTWARE.
|
|
883
|
+
|
|
884
|
+
-----------
|
|
885
|
+
|
|
886
|
+
The following npm package may be included in this product:
|
|
887
|
+
|
|
888
|
+
- markdown-table@2.0.0
|
|
889
|
+
|
|
890
|
+
This package contains the following license and notice below:
|
|
891
|
+
|
|
892
|
+
(The MIT License)
|
|
893
|
+
|
|
894
|
+
Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
|
895
|
+
|
|
896
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
897
|
+
a copy of this software and associated documentation files (the
|
|
898
|
+
'Software'), to deal in the Software without restriction, including
|
|
899
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
900
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
901
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
902
|
+
the following conditions:
|
|
903
|
+
|
|
904
|
+
The above copyright notice and this permission notice shall be
|
|
905
|
+
included in all copies or substantial portions of the Software.
|
|
906
|
+
|
|
907
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
908
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
909
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
910
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
911
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
912
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
913
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
914
|
+
|
|
915
|
+
-----------
|
|
916
|
+
|
|
917
|
+
The following npm package may be included in this product:
|
|
918
|
+
|
|
919
|
+
- mdast-util-definitions@4.0.0
|
|
920
|
+
|
|
921
|
+
This package contains the following license and notice below:
|
|
922
|
+
|
|
923
|
+
(The MIT License)
|
|
924
|
+
|
|
925
|
+
Copyright (c) 2015-2016 Titus Wormer <tituswormer@gmail.com>
|
|
926
|
+
|
|
927
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
928
|
+
a copy of this software and associated documentation files (the
|
|
929
|
+
'Software'), to deal in the Software without restriction, including
|
|
930
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
931
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
932
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
933
|
+
the following conditions:
|
|
934
|
+
|
|
935
|
+
The above copyright notice and this permission notice shall be
|
|
936
|
+
included in all copies or substantial portions of the Software.
|
|
937
|
+
|
|
938
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
939
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
940
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
941
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
942
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
943
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
944
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
945
|
+
|
|
946
|
+
-----------
|
|
947
|
+
|
|
948
|
+
The following npm packages may be included in this product:
|
|
949
|
+
|
|
950
|
+
- mdast-util-find-and-replace@1.1.1
|
|
951
|
+
- mdast-util-from-markdown@0.8.5
|
|
952
|
+
- mdast-util-gfm-autolink-literal@0.1.3
|
|
953
|
+
- mdast-util-gfm-strikethrough@0.2.3
|
|
954
|
+
- mdast-util-gfm-table@0.1.6
|
|
955
|
+
- mdast-util-gfm-task-list-item@0.1.6
|
|
956
|
+
- mdast-util-gfm@0.1.2
|
|
957
|
+
- mdast-util-to-markdown@0.6.5
|
|
958
|
+
- micromark-extension-gfm-autolink-literal@0.5.7
|
|
959
|
+
- micromark-extension-gfm-strikethrough@0.6.5
|
|
960
|
+
- micromark-extension-gfm-table@0.4.3
|
|
961
|
+
- micromark-extension-gfm-tagfilter@0.3.0
|
|
962
|
+
- micromark-extension-gfm-task-list-item@0.3.3
|
|
963
|
+
- micromark-extension-gfm@0.3.3
|
|
964
|
+
- micromark@2.11.4
|
|
965
|
+
- remark-gfm@1.0.0
|
|
966
|
+
|
|
967
|
+
These packages each contain the following license and notice below:
|
|
968
|
+
|
|
969
|
+
(The MIT License)
|
|
970
|
+
|
|
971
|
+
Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
|
|
972
|
+
|
|
973
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
974
|
+
a copy of this software and associated documentation files (the
|
|
975
|
+
'Software'), to deal in the Software without restriction, including
|
|
976
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
977
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
978
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
979
|
+
the following conditions:
|
|
980
|
+
|
|
981
|
+
The above copyright notice and this permission notice shall be
|
|
982
|
+
included in all copies or substantial portions of the Software.
|
|
983
|
+
|
|
984
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
985
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
986
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
987
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
988
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
989
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
990
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
991
|
+
|
|
992
|
+
-----------
|
|
993
|
+
|
|
994
|
+
The following npm package may be included in this product:
|
|
995
|
+
|
|
996
|
+
- mdurl@1.0.1
|
|
997
|
+
|
|
998
|
+
This package contains the following license and notice below:
|
|
999
|
+
|
|
1000
|
+
Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin.
|
|
1001
|
+
|
|
1002
|
+
Permission is hereby granted, free of charge, to any person
|
|
1003
|
+
obtaining a copy of this software and associated documentation
|
|
1004
|
+
files (the "Software"), to deal in the Software without
|
|
1005
|
+
restriction, including without limitation the rights to use,
|
|
1006
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1007
|
+
copies of the Software, and to permit persons to whom the
|
|
1008
|
+
Software is furnished to do so, subject to the following
|
|
1009
|
+
conditions:
|
|
1010
|
+
|
|
1011
|
+
The above copyright notice and this permission notice shall be
|
|
1012
|
+
included in all copies or substantial portions of the Software.
|
|
1013
|
+
|
|
1014
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1015
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
1016
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1017
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
1018
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1019
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1020
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
1021
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
1022
|
+
|
|
1023
|
+
--------------------------------------------------------------------------------
|
|
1024
|
+
|
|
1025
|
+
.parse() is based on Joyent's node.js `url` code:
|
|
1026
|
+
|
|
1027
|
+
Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
1028
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1029
|
+
of this software and associated documentation files (the "Software"), to
|
|
1030
|
+
deal in the Software without restriction, including without limitation the
|
|
1031
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
1032
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
|
1033
|
+
furnished to do so, subject to the following conditions:
|
|
1034
|
+
|
|
1035
|
+
The above copyright notice and this permission notice shall be included in
|
|
1036
|
+
all copies or substantial portions of the Software.
|
|
1037
|
+
|
|
1038
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1039
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1040
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1041
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1042
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1043
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
1044
|
+
IN THE SOFTWARE.
|
|
1045
|
+
|
|
1046
|
+
-----------
|
|
1047
|
+
|
|
1048
|
+
The following npm package may be included in this product:
|
|
1049
|
+
|
|
1050
|
+
- ms@2.1.2
|
|
1051
|
+
|
|
1052
|
+
This package contains the following license and notice below:
|
|
1053
|
+
|
|
1054
|
+
The MIT License (MIT)
|
|
1055
|
+
|
|
1056
|
+
Copyright (c) 2016 Zeit, Inc.
|
|
1057
|
+
|
|
1058
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1059
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1060
|
+
in the Software without restriction, including without limitation the rights
|
|
1061
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1062
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1063
|
+
furnished to do so, subject to the following conditions:
|
|
1064
|
+
|
|
1065
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1066
|
+
copies or substantial portions of the Software.
|
|
1067
|
+
|
|
1068
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1069
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1070
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1071
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1072
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1073
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1074
|
+
SOFTWARE.
|
|
1075
|
+
|
|
1076
|
+
-----------
|
|
1077
|
+
|
|
1078
|
+
The following npm package may be included in this product:
|
|
1079
|
+
|
|
1080
|
+
- node-fetch@2.6.11
|
|
1081
|
+
|
|
1082
|
+
This package contains the following license and notice below:
|
|
1083
|
+
|
|
1084
|
+
The MIT License (MIT)
|
|
1085
|
+
|
|
1086
|
+
Copyright (c) 2016 David Frank
|
|
1087
|
+
|
|
1088
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1089
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1090
|
+
in the Software without restriction, including without limitation the rights
|
|
1091
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1092
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1093
|
+
furnished to do so, subject to the following conditions:
|
|
1094
|
+
|
|
1095
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1096
|
+
copies or substantial portions of the Software.
|
|
1097
|
+
|
|
1098
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1099
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1100
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1101
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1102
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1103
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1104
|
+
SOFTWARE.
|
|
1105
|
+
|
|
1106
|
+
-----------
|
|
1107
|
+
|
|
1108
|
+
The following npm package may be included in this product:
|
|
1109
|
+
|
|
1110
|
+
- object-assign@4.1.1
|
|
1111
|
+
|
|
1112
|
+
This package contains the following license and notice below:
|
|
1113
|
+
|
|
1114
|
+
The MIT License (MIT)
|
|
1115
|
+
|
|
1116
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1117
|
+
|
|
1118
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1119
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1120
|
+
in the Software without restriction, including without limitation the rights
|
|
1121
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1122
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1123
|
+
furnished to do so, subject to the following conditions:
|
|
1124
|
+
|
|
1125
|
+
The above copyright notice and this permission notice shall be included in
|
|
1126
|
+
all copies or substantial portions of the Software.
|
|
1127
|
+
|
|
1128
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1129
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1130
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1131
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1132
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1133
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1134
|
+
THE SOFTWARE.
|
|
1135
|
+
|
|
1136
|
+
-----------
|
|
1137
|
+
|
|
1138
|
+
The following npm package may be included in this product:
|
|
1139
|
+
|
|
1140
|
+
- parse5@6.0.1
|
|
1141
|
+
|
|
1142
|
+
This package contains the following license and notice below:
|
|
1143
|
+
|
|
1144
|
+
Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
|
|
1145
|
+
|
|
1146
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1147
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1148
|
+
in the Software without restriction, including without limitation the rights
|
|
1149
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1150
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1151
|
+
furnished to do so, subject to the following conditions:
|
|
1152
|
+
|
|
1153
|
+
The above copyright notice and this permission notice shall be included in
|
|
1154
|
+
all copies or substantial portions of the Software.
|
|
1155
|
+
|
|
1156
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1157
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1158
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1159
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1160
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1161
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1162
|
+
THE SOFTWARE.
|
|
1163
|
+
|
|
1164
|
+
-----------
|
|
1165
|
+
|
|
1166
|
+
The following npm package may be included in this product:
|
|
1167
|
+
|
|
1168
|
+
- prop-types@15.8.1
|
|
1169
|
+
|
|
1170
|
+
This package contains the following license and notice below:
|
|
1171
|
+
|
|
1172
|
+
MIT License
|
|
1173
|
+
|
|
1174
|
+
Copyright (c) 2013-present, Facebook, Inc.
|
|
1175
|
+
|
|
1176
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1177
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1178
|
+
in the Software without restriction, including without limitation the rights
|
|
1179
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1180
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1181
|
+
furnished to do so, subject to the following conditions:
|
|
1182
|
+
|
|
1183
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1184
|
+
copies or substantial portions of the Software.
|
|
1185
|
+
|
|
1186
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1187
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1188
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1189
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1190
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1191
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1192
|
+
SOFTWARE.
|
|
1193
|
+
|
|
1194
|
+
-----------
|
|
1195
|
+
|
|
1196
|
+
The following npm packages may be included in this product:
|
|
1197
|
+
|
|
1198
|
+
- react-dom@18.2.0
|
|
1199
|
+
- react-is@16.13.1
|
|
1200
|
+
- react-is@17.0.2
|
|
1201
|
+
- react-is@18.2.0
|
|
1202
|
+
- react@18.2.0
|
|
1203
|
+
- scheduler@0.23.0
|
|
1204
|
+
- use-sync-external-store@1.2.0
|
|
1205
|
+
|
|
1206
|
+
These packages each contain the following license and notice below:
|
|
1207
|
+
|
|
1208
|
+
MIT License
|
|
1209
|
+
|
|
1210
|
+
Copyright (c) Facebook, Inc. and its affiliates.
|
|
1211
|
+
|
|
1212
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1213
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1214
|
+
in the Software without restriction, including without limitation the rights
|
|
1215
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1216
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1217
|
+
furnished to do so, subject to the following conditions:
|
|
1218
|
+
|
|
1219
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1220
|
+
copies or substantial portions of the Software.
|
|
1221
|
+
|
|
1222
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1223
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1224
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1225
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1226
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1227
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1228
|
+
SOFTWARE.
|
|
1229
|
+
|
|
1230
|
+
-----------
|
|
1231
|
+
|
|
1232
|
+
The following npm package may be included in this product:
|
|
1233
|
+
|
|
1234
|
+
- react-expanding-textarea@2.3.6
|
|
1235
|
+
|
|
1236
|
+
This package contains the following license and notice below:
|
|
1237
|
+
|
|
1238
|
+
Copyright (c) 2020, Robert Pearce
|
|
1239
|
+
|
|
1240
|
+
All rights reserved.
|
|
1241
|
+
|
|
1242
|
+
Redistribution and use in source and binary forms, with or without
|
|
1243
|
+
modification, are permitted provided that the following conditions are met:
|
|
1244
|
+
|
|
1245
|
+
* Redistributions of source code must retain the above copyright
|
|
1246
|
+
notice, this list of conditions and the following disclaimer.
|
|
1247
|
+
|
|
1248
|
+
* Redistributions in binary form must reproduce the above
|
|
1249
|
+
copyright notice, this list of conditions and the following
|
|
1250
|
+
disclaimer in the documentation and/or other materials provided
|
|
1251
|
+
with the distribution.
|
|
1252
|
+
|
|
1253
|
+
* Neither the name of Robert Pearce nor the names of other
|
|
1254
|
+
contributors may be used to endorse or promote products derived
|
|
1255
|
+
from this software without specific prior written permission.
|
|
1256
|
+
|
|
1257
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1258
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1259
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1260
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1261
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1262
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1263
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1264
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1265
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1266
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1267
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1268
|
+
|
|
1269
|
+
-----------
|
|
1270
|
+
|
|
1271
|
+
The following npm package may be included in this product:
|
|
1272
|
+
|
|
1273
|
+
- react-markdown@6.0.3
|
|
1274
|
+
|
|
1275
|
+
This package contains the following license and notice below:
|
|
1276
|
+
|
|
1277
|
+
The MIT License (MIT)
|
|
1278
|
+
|
|
1279
|
+
Copyright (c) 2015 Espen Hovlandsdal
|
|
1280
|
+
|
|
1281
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1282
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1283
|
+
in the Software without restriction, including without limitation the rights
|
|
1284
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1285
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1286
|
+
furnished to do so, subject to the following conditions:
|
|
1287
|
+
|
|
1288
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1289
|
+
copies or substantial portions of the Software.
|
|
1290
|
+
|
|
1291
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1292
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1293
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1294
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1295
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1296
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1297
|
+
SOFTWARE.
|
|
1298
|
+
|
|
1299
|
+
-----------
|
|
1300
|
+
|
|
1301
|
+
The following npm packages may be included in this product:
|
|
1302
|
+
|
|
1303
|
+
- react-redux@8.0.5
|
|
1304
|
+
- redux-thunk@2.4.2
|
|
1305
|
+
|
|
1306
|
+
These packages each contain the following license and notice below:
|
|
1307
|
+
|
|
1308
|
+
The MIT License (MIT)
|
|
1309
|
+
|
|
1310
|
+
Copyright (c) 2015-present Dan Abramov
|
|
1311
|
+
|
|
1312
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1313
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1314
|
+
in the Software without restriction, including without limitation the rights
|
|
1315
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1316
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1317
|
+
furnished to do so, subject to the following conditions:
|
|
1318
|
+
|
|
1319
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1320
|
+
copies or substantial portions of the Software.
|
|
1321
|
+
|
|
1322
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1323
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1324
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1325
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1326
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1327
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1328
|
+
SOFTWARE.
|
|
1329
|
+
|
|
1330
|
+
-----------
|
|
1331
|
+
|
|
1332
|
+
The following npm package may be included in this product:
|
|
1333
|
+
|
|
1334
|
+
- react-textarea-autosize@8.4.1
|
|
1335
|
+
|
|
1336
|
+
This package contains the following license and notice below:
|
|
1337
|
+
|
|
1338
|
+
The MIT License (MIT)
|
|
1339
|
+
|
|
1340
|
+
Copyright (c) 2013 Andrey Popp
|
|
1341
|
+
|
|
1342
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1343
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
1344
|
+
the Software without restriction, including without limitation the rights to
|
|
1345
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
1346
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
1347
|
+
subject to the following conditions:
|
|
1348
|
+
|
|
1349
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1350
|
+
copies or substantial portions of the Software.
|
|
1351
|
+
|
|
1352
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1353
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1354
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1355
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1356
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1357
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1358
|
+
|
|
1359
|
+
-----------
|
|
1360
|
+
|
|
1361
|
+
The following npm package may be included in this product:
|
|
1362
|
+
|
|
1363
|
+
- react-with-forwarded-ref@0.3.5
|
|
1364
|
+
|
|
1365
|
+
This package contains the following license and notice below:
|
|
1366
|
+
|
|
1367
|
+
Copyright (c) 2019, Robert Pearce
|
|
1368
|
+
|
|
1369
|
+
All rights reserved.
|
|
1370
|
+
|
|
1371
|
+
Redistribution and use in source and binary forms, with or without
|
|
1372
|
+
modification, are permitted provided that the following conditions are met:
|
|
1373
|
+
|
|
1374
|
+
* Redistributions of source code must retain the above copyright
|
|
1375
|
+
notice, this list of conditions and the following disclaimer.
|
|
1376
|
+
|
|
1377
|
+
* Redistributions in binary form must reproduce the above
|
|
1378
|
+
copyright notice, this list of conditions and the following
|
|
1379
|
+
disclaimer in the documentation and/or other materials provided
|
|
1380
|
+
with the distribution.
|
|
1381
|
+
|
|
1382
|
+
* Neither the name of Robert Pearce nor the names of other
|
|
1383
|
+
contributors may be used to endorse or promote products derived
|
|
1384
|
+
from this software without specific prior written permission.
|
|
1385
|
+
|
|
1386
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1387
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1388
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1389
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1390
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1391
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1392
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1393
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1394
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1395
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1396
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1397
|
+
|
|
1398
|
+
-----------
|
|
1399
|
+
|
|
1400
|
+
The following npm package may be included in this product:
|
|
1401
|
+
|
|
1402
|
+
- redux@4.2.1
|
|
1403
|
+
|
|
1404
|
+
This package contains the following license and notice below:
|
|
1405
|
+
|
|
1406
|
+
The MIT License (MIT)
|
|
1407
|
+
|
|
1408
|
+
Copyright (c) 2015-present Dan Abramov
|
|
1409
|
+
|
|
1410
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1411
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1412
|
+
in the Software without restriction, including without limitation the rights
|
|
1413
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1414
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1415
|
+
furnished to do so, subject to the following conditions:
|
|
1416
|
+
|
|
1417
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1418
|
+
copies or substantial portions of the Software.
|
|
1419
|
+
|
|
1420
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1421
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1422
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1423
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1424
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1425
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1426
|
+
SOFTWARE.
|
|
1427
|
+
|
|
1428
|
+
-----------
|
|
1429
|
+
|
|
1430
|
+
The following npm package may be included in this product:
|
|
1431
|
+
|
|
1432
|
+
- regenerator-runtime@0.13.11
|
|
1433
|
+
|
|
1434
|
+
This package contains the following license and notice below:
|
|
1435
|
+
|
|
1436
|
+
MIT License
|
|
1437
|
+
|
|
1438
|
+
Copyright (c) 2014-present, Facebook, Inc.
|
|
1439
|
+
|
|
1440
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1441
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1442
|
+
in the Software without restriction, including without limitation the rights
|
|
1443
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1444
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1445
|
+
furnished to do so, subject to the following conditions:
|
|
1446
|
+
|
|
1447
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1448
|
+
copies or substantial portions of the Software.
|
|
1449
|
+
|
|
1450
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1451
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1452
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1453
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1454
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1455
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1456
|
+
SOFTWARE.
|
|
1457
|
+
|
|
1458
|
+
-----------
|
|
1459
|
+
|
|
1460
|
+
The following npm package may be included in this product:
|
|
1461
|
+
|
|
1462
|
+
- remark-parse@9.0.0
|
|
1463
|
+
|
|
1464
|
+
This package contains the following license and notice below:
|
|
1465
|
+
|
|
1466
|
+
# remark-parse
|
|
1467
|
+
|
|
1468
|
+
[![Build][build-badge]][build]
|
|
1469
|
+
[![Coverage][coverage-badge]][coverage]
|
|
1470
|
+
[![Downloads][downloads-badge]][downloads]
|
|
1471
|
+
[![Size][size-badge]][size]
|
|
1472
|
+
[![Sponsors][sponsors-badge]][collective]
|
|
1473
|
+
[![Backers][backers-badge]][collective]
|
|
1474
|
+
[![Chat][chat-badge]][chat]
|
|
1475
|
+
|
|
1476
|
+
[Parser][] for [**unified**][unified].
|
|
1477
|
+
Parses Markdown to [**mdast**][mdast] syntax trees.
|
|
1478
|
+
Built on [`micromark`][micromark] and
|
|
1479
|
+
[`mdast-util-from-markdown`][from-markdown].
|
|
1480
|
+
Used in the [**remark** processor][remark] but can be used on its own as well.
|
|
1481
|
+
Can be [extended][extend] to change how Markdown is parsed.
|
|
1482
|
+
|
|
1483
|
+
## Install
|
|
1484
|
+
|
|
1485
|
+
[npm][]:
|
|
1486
|
+
|
|
1487
|
+
```sh
|
|
1488
|
+
npm install remark-parse
|
|
1489
|
+
```
|
|
1490
|
+
|
|
1491
|
+
## Use
|
|
1492
|
+
|
|
1493
|
+
```js
|
|
1494
|
+
var unified = require('unified')
|
|
1495
|
+
var createStream = require('unified-stream')
|
|
1496
|
+
var markdown = require('remark-parse')
|
|
1497
|
+
var remark2rehype = require('remark-rehype')
|
|
1498
|
+
var html = require('rehype-stringify')
|
|
1499
|
+
|
|
1500
|
+
var processor = unified().use(markdown).use(remark2rehype).use(html)
|
|
1501
|
+
|
|
1502
|
+
process.stdin.pipe(createStream(processor)).pipe(process.stdout)
|
|
1503
|
+
```
|
|
1504
|
+
|
|
1505
|
+
[See **unified** for more examples »][unified]
|
|
1506
|
+
|
|
1507
|
+
## API
|
|
1508
|
+
|
|
1509
|
+
[See **unified** for API docs »][unified]
|
|
1510
|
+
|
|
1511
|
+
### `processor().use(parse)`
|
|
1512
|
+
|
|
1513
|
+
Configure the `processor` to read Markdown as input and process
|
|
1514
|
+
[**mdast**][mdast] syntax trees.
|
|
1515
|
+
|
|
1516
|
+
## Extending the parser
|
|
1517
|
+
|
|
1518
|
+
See [`micromark`][micromark] and [`mdast-util-from-markdown`][from-markdown].
|
|
1519
|
+
Then create a wrapper plugin such as [`remark-gfm`][gfm].
|
|
1520
|
+
|
|
1521
|
+
## Security
|
|
1522
|
+
|
|
1523
|
+
As Markdown is sometimes used for HTML, and improper use of HTML can open you up
|
|
1524
|
+
to a [cross-site scripting (XSS)][xss] attack, use of remark can also be unsafe.
|
|
1525
|
+
When going to HTML, use remark in combination with the [**rehype**][rehype]
|
|
1526
|
+
ecosystem, and use [`rehype-sanitize`][sanitize] to make the tree safe.
|
|
1527
|
+
|
|
1528
|
+
Use of remark plugins could also open you up to other attacks.
|
|
1529
|
+
Carefully assess each plugin and the risks involved in using them.
|
|
1530
|
+
|
|
1531
|
+
## Contribute
|
|
1532
|
+
|
|
1533
|
+
See [`contributing.md`][contributing] in [`remarkjs/.github`][health] for ways
|
|
1534
|
+
to get started.
|
|
1535
|
+
See [`support.md`][support] for ways to get help.
|
|
1536
|
+
Ideas for new plugins and tools can be posted in [`remarkjs/ideas`][ideas].
|
|
1537
|
+
|
|
1538
|
+
A curated list of awesome remark resources can be found in [**awesome
|
|
1539
|
+
remark**][awesome].
|
|
1540
|
+
|
|
1541
|
+
This project has a [code of conduct][coc].
|
|
1542
|
+
By interacting with this repository, organization, or community you agree to
|
|
1543
|
+
abide by its terms.
|
|
1544
|
+
|
|
1545
|
+
## Sponsor
|
|
1546
|
+
|
|
1547
|
+
Support this effort and give back by sponsoring on [OpenCollective][collective]!
|
|
1548
|
+
|
|
1549
|
+
<!--lint ignore no-html-->
|
|
1550
|
+
|
|
1551
|
+
<table>
|
|
1552
|
+
<tr valign="middle">
|
|
1553
|
+
<td width="20%" align="center" colspan="2">
|
|
1554
|
+
<a href="https://www.gatsbyjs.org">Gatsby</a> 🥇<br><br>
|
|
1555
|
+
<a href="https://www.gatsbyjs.org"><img src="https://avatars1.githubusercontent.com/u/12551863?s=256&v=4" width="128"></a>
|
|
1556
|
+
</td>
|
|
1557
|
+
<td width="20%" align="center" colspan="2">
|
|
1558
|
+
<a href="https://vercel.com">Vercel</a> 🥇<br><br>
|
|
1559
|
+
<a href="https://vercel.com"><img src="https://avatars1.githubusercontent.com/u/14985020?s=256&v=4" width="128"></a>
|
|
1560
|
+
</td>
|
|
1561
|
+
<td width="20%" align="center" colspan="2">
|
|
1562
|
+
<a href="https://www.netlify.com">Netlify</a><br><br>
|
|
1563
|
+
<!--OC has a sharper image-->
|
|
1564
|
+
<a href="https://www.netlify.com"><img src="https://images.opencollective.com/netlify/4087de2/logo/256.png" width="128"></a>
|
|
1565
|
+
</td>
|
|
1566
|
+
<td width="10%" align="center">
|
|
1567
|
+
<a href="https://www.holloway.com">Holloway</a><br><br>
|
|
1568
|
+
<a href="https://www.holloway.com"><img src="https://avatars1.githubusercontent.com/u/35904294?s=128&v=4" width="64"></a>
|
|
1569
|
+
</td>
|
|
1570
|
+
<td width="10%" align="center">
|
|
1571
|
+
<a href="https://themeisle.com">ThemeIsle</a><br><br>
|
|
1572
|
+
<a href="https://themeisle.com"><img src="https://avatars1.githubusercontent.com/u/58979018?s=128&v=4" width="64"></a>
|
|
1573
|
+
</td>
|
|
1574
|
+
<td width="10%" align="center">
|
|
1575
|
+
<a href="https://boosthub.io">Boost Hub</a><br><br>
|
|
1576
|
+
<a href="https://boosthub.io"><img src="https://images.opencollective.com/boosthub/6318083/logo/128.png" width="64"></a>
|
|
1577
|
+
</td>
|
|
1578
|
+
<td width="10%" align="center">
|
|
1579
|
+
<a href="https://expo.io">Expo</a><br><br>
|
|
1580
|
+
<a href="https://expo.io"><img src="https://avatars1.githubusercontent.com/u/12504344?s=128&v=4" width="64"></a>
|
|
1581
|
+
</td>
|
|
1582
|
+
</tr>
|
|
1583
|
+
<tr valign="middle">
|
|
1584
|
+
<td width="100%" align="center" colspan="10">
|
|
1585
|
+
<br>
|
|
1586
|
+
<a href="https://opencollective.com/unified"><strong>You?</strong></a>
|
|
1587
|
+
<br><br>
|
|
1588
|
+
</td>
|
|
1589
|
+
</tr>
|
|
1590
|
+
</table>
|
|
1591
|
+
|
|
1592
|
+
## License
|
|
1593
|
+
|
|
1594
|
+
[MIT][license] © [Titus Wormer][author]
|
|
1595
|
+
|
|
1596
|
+
<!-- Definitions -->
|
|
1597
|
+
|
|
1598
|
+
[build-badge]: https://img.shields.io/travis/remarkjs/remark.svg
|
|
1599
|
+
|
|
1600
|
+
[build]: https://travis-ci.org/remarkjs/remark
|
|
1601
|
+
|
|
1602
|
+
[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark.svg
|
|
1603
|
+
|
|
1604
|
+
[coverage]: https://codecov.io/github/remarkjs/remark
|
|
1605
|
+
|
|
1606
|
+
[downloads-badge]: https://img.shields.io/npm/dm/remark-parse.svg
|
|
1607
|
+
|
|
1608
|
+
[downloads]: https://www.npmjs.com/package/remark-parse
|
|
1609
|
+
|
|
1610
|
+
[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-parse.svg
|
|
1611
|
+
|
|
1612
|
+
[size]: https://bundlephobia.com/result?p=remark-parse
|
|
1613
|
+
|
|
1614
|
+
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
|
|
1615
|
+
|
|
1616
|
+
[backers-badge]: https://opencollective.com/unified/backers/badge.svg
|
|
1617
|
+
|
|
1618
|
+
[collective]: https://opencollective.com/unified
|
|
1619
|
+
|
|
1620
|
+
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
|
|
1621
|
+
|
|
1622
|
+
[chat]: https://github.com/remarkjs/remark/discussions
|
|
1623
|
+
|
|
1624
|
+
[health]: https://github.com/remarkjs/.github
|
|
1625
|
+
|
|
1626
|
+
[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md
|
|
1627
|
+
|
|
1628
|
+
[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md
|
|
1629
|
+
|
|
1630
|
+
[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md
|
|
1631
|
+
|
|
1632
|
+
[ideas]: https://github.com/remarkjs/ideas
|
|
1633
|
+
|
|
1634
|
+
[awesome]: https://github.com/remarkjs/awesome-remark
|
|
1635
|
+
|
|
1636
|
+
[license]: https://github.com/remarkjs/remark/blob/main/license
|
|
1637
|
+
|
|
1638
|
+
[author]: https://wooorm.com
|
|
1639
|
+
|
|
1640
|
+
[npm]: https://docs.npmjs.com/cli/install
|
|
1641
|
+
|
|
1642
|
+
[unified]: https://github.com/unifiedjs/unified
|
|
1643
|
+
|
|
1644
|
+
[remark]: https://github.com/remarkjs/remark/tree/main/packages/remark
|
|
1645
|
+
|
|
1646
|
+
[mdast]: https://github.com/syntax-tree/mdast
|
|
1647
|
+
|
|
1648
|
+
[parser]: https://github.com/unifiedjs/unified#processorparser
|
|
1649
|
+
|
|
1650
|
+
[extend]: #extending-the-parser
|
|
1651
|
+
|
|
1652
|
+
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting
|
|
1653
|
+
|
|
1654
|
+
[rehype]: https://github.com/rehypejs/rehype
|
|
1655
|
+
|
|
1656
|
+
[sanitize]: https://github.com/rehypejs/rehype-sanitize
|
|
1657
|
+
|
|
1658
|
+
[micromark]: https://github.com/micromark/micromark
|
|
1659
|
+
|
|
1660
|
+
[from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown
|
|
1661
|
+
|
|
1662
|
+
[gfm]: https://github.com/remarkjs/remark-gfm
|
|
1663
|
+
|
|
1664
|
+
-----------
|
|
1665
|
+
|
|
1666
|
+
The following npm package may be included in this product:
|
|
1667
|
+
|
|
1668
|
+
- repeat-string@1.6.1
|
|
1669
|
+
|
|
1670
|
+
This package contains the following license and notice below:
|
|
1671
|
+
|
|
1672
|
+
The MIT License (MIT)
|
|
1673
|
+
|
|
1674
|
+
Copyright (c) 2014-2016, Jon Schlinkert.
|
|
1675
|
+
|
|
1676
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1677
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1678
|
+
in the Software without restriction, including without limitation the rights
|
|
1679
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1680
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1681
|
+
furnished to do so, subject to the following conditions:
|
|
1682
|
+
|
|
1683
|
+
The above copyright notice and this permission notice shall be included in
|
|
1684
|
+
all copies or substantial portions of the Software.
|
|
1685
|
+
|
|
1686
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1687
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1688
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1689
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1690
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1691
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1692
|
+
THE SOFTWARE.
|
|
1693
|
+
|
|
1694
|
+
-----------
|
|
1695
|
+
|
|
1696
|
+
The following npm package may be included in this product:
|
|
1697
|
+
|
|
1698
|
+
- reselect@4.1.8
|
|
1699
|
+
|
|
1700
|
+
This package contains the following license and notice below:
|
|
1701
|
+
|
|
1702
|
+
The MIT License (MIT)
|
|
1703
|
+
|
|
1704
|
+
Copyright (c) 2015-2018 Reselect Contributors
|
|
1705
|
+
|
|
1706
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1707
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1708
|
+
in the Software without restriction, including without limitation the rights
|
|
1709
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1710
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1711
|
+
furnished to do so, subject to the following conditions:
|
|
1712
|
+
|
|
1713
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1714
|
+
copies or substantial portions of the Software.
|
|
1715
|
+
|
|
1716
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1717
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1718
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1719
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1720
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1721
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1722
|
+
SOFTWARE.
|
|
1723
|
+
|
|
1724
|
+
-----------
|
|
1725
|
+
|
|
1726
|
+
The following npm package may be included in this product:
|
|
1727
|
+
|
|
1728
|
+
- style-to-object@0.3.0
|
|
1729
|
+
|
|
1730
|
+
This package contains the following license and notice below:
|
|
1731
|
+
|
|
1732
|
+
The MIT License (MIT)
|
|
1733
|
+
|
|
1734
|
+
Copyright (c) 2017 Menglin "Mark" Xu <mark@remarkablemark.org>
|
|
1735
|
+
|
|
1736
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1737
|
+
a copy of this software and associated documentation files (the
|
|
1738
|
+
"Software"), to deal in the Software without restriction, including
|
|
1739
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1740
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1741
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1742
|
+
the following conditions:
|
|
1743
|
+
|
|
1744
|
+
The above copyright notice and this permission notice shall be
|
|
1745
|
+
included in all copies or substantial portions of the Software.
|
|
1746
|
+
|
|
1747
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1748
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1749
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
1750
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
1751
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1752
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
1753
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1754
|
+
|
|
1755
|
+
-----------
|
|
1756
|
+
|
|
1757
|
+
The following npm package may be included in this product:
|
|
1758
|
+
|
|
1759
|
+
- tailwind-merge@1.12.0
|
|
1760
|
+
|
|
1761
|
+
This package contains the following license and notice below:
|
|
1762
|
+
|
|
1763
|
+
MIT License
|
|
1764
|
+
|
|
1765
|
+
Copyright (c) 2021 Dany Castillo
|
|
1766
|
+
|
|
1767
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1768
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1769
|
+
in the Software without restriction, including without limitation the rights
|
|
1770
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1771
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1772
|
+
furnished to do so, subject to the following conditions:
|
|
1773
|
+
|
|
1774
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1775
|
+
copies or substantial portions of the Software.
|
|
1776
|
+
|
|
1777
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1778
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1779
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1780
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1781
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1782
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1783
|
+
SOFTWARE.
|
|
1784
|
+
|
|
1785
|
+
-----------
|
|
1786
|
+
|
|
1787
|
+
The following npm package may be included in this product:
|
|
1788
|
+
|
|
1789
|
+
- tr46@0.0.3
|
|
1790
|
+
|
|
1791
|
+
This package contains the following license and notice below:
|
|
1792
|
+
|
|
1793
|
+
(MIT)
|
|
1794
|
+
|
|
1795
|
+
-----------
|
|
1796
|
+
|
|
1797
|
+
The following npm package may be included in this product:
|
|
1798
|
+
|
|
1799
|
+
- trough@1.0.5
|
|
1800
|
+
|
|
1801
|
+
This package contains the following license and notice below:
|
|
1802
|
+
|
|
1803
|
+
(The MIT License)
|
|
1804
|
+
|
|
1805
|
+
Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
|
|
1806
|
+
|
|
1807
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1808
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1809
|
+
in the Software without restriction, including without limitation the rights
|
|
1810
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1811
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1812
|
+
furnished to do so, subject to the following conditions:
|
|
1813
|
+
|
|
1814
|
+
The above copyright notice and this permission notice shall be included in
|
|
1815
|
+
all copies or substantial portions of the Software.
|
|
1816
|
+
|
|
1817
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1818
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1819
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1820
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1821
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1822
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1823
|
+
THE SOFTWARE.
|
|
1824
|
+
|
|
1825
|
+
-----------
|
|
1826
|
+
|
|
1827
|
+
The following npm package may be included in this product:
|
|
1828
|
+
|
|
1829
|
+
- tslib@2.5.2
|
|
1830
|
+
|
|
1831
|
+
This package contains the following license and notice below:
|
|
1832
|
+
|
|
1833
|
+
Copyright (c) Microsoft Corporation.
|
|
1834
|
+
|
|
1835
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
1836
|
+
purpose with or without fee is hereby granted.
|
|
1837
|
+
|
|
1838
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
1839
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
1840
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
1841
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
1842
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
1843
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
1844
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
1845
|
+
|
|
1846
|
+
-----------
|
|
1847
|
+
|
|
1848
|
+
The following npm packages may be included in this product:
|
|
1849
|
+
|
|
1850
|
+
- unified@9.2.2
|
|
1851
|
+
- vfile@4.2.1
|
|
1852
|
+
|
|
1853
|
+
These packages each contain the following license and notice below:
|
|
1854
|
+
|
|
1855
|
+
(The MIT License)
|
|
1856
|
+
|
|
1857
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
1858
|
+
|
|
1859
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1860
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1861
|
+
in the Software without restriction, including without limitation the rights
|
|
1862
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1863
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1864
|
+
furnished to do so, subject to the following conditions:
|
|
1865
|
+
|
|
1866
|
+
The above copyright notice and this permission notice shall be included in
|
|
1867
|
+
all copies or substantial portions of the Software.
|
|
1868
|
+
|
|
1869
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1870
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1871
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1872
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1873
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1874
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1875
|
+
THE SOFTWARE.
|
|
1876
|
+
|
|
1877
|
+
-----------
|
|
1878
|
+
|
|
1879
|
+
The following npm package may be included in this product:
|
|
1880
|
+
|
|
1881
|
+
- unist-builder@2.0.3
|
|
1882
|
+
|
|
1883
|
+
This package contains the following license and notice below:
|
|
1884
|
+
|
|
1885
|
+
The MIT License (MIT)
|
|
1886
|
+
|
|
1887
|
+
Copyright (c) 2015 Eugene Sharygin
|
|
1888
|
+
|
|
1889
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1890
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1891
|
+
in the Software without restriction, including without limitation the rights
|
|
1892
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1893
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1894
|
+
furnished to do so, subject to the following conditions:
|
|
1895
|
+
|
|
1896
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1897
|
+
copies or substantial portions of the Software.
|
|
1898
|
+
|
|
1899
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1900
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1901
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1902
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1903
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1904
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1905
|
+
SOFTWARE.
|
|
1906
|
+
|
|
1907
|
+
-----------
|
|
1908
|
+
|
|
1909
|
+
The following npm package may be included in this product:
|
|
1910
|
+
|
|
1911
|
+
- unist-util-is@4.1.0
|
|
1912
|
+
|
|
1913
|
+
This package contains the following license and notice below:
|
|
1914
|
+
|
|
1915
|
+
(The MIT license)
|
|
1916
|
+
|
|
1917
|
+
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
1918
|
+
|
|
1919
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1920
|
+
a copy of this software and associated documentation files (the
|
|
1921
|
+
'Software'), to deal in the Software without restriction, including
|
|
1922
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
1923
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
1924
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
1925
|
+
the following conditions:
|
|
1926
|
+
|
|
1927
|
+
The above copyright notice and this permission notice shall be
|
|
1928
|
+
included in all copies or substantial portions of the Software.
|
|
1929
|
+
|
|
1930
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
1931
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
1932
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1933
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
1934
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1935
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1936
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1937
|
+
|
|
1938
|
+
-----------
|
|
1939
|
+
|
|
1940
|
+
The following npm package may be included in this product:
|
|
1941
|
+
|
|
1942
|
+
- use-composed-ref@1.3.0
|
|
1943
|
+
|
|
1944
|
+
This package contains the following license and notice below:
|
|
1945
|
+
|
|
1946
|
+
# use-composed-ref
|
|
1947
|
+
|
|
1948
|
+
React hook which creates a ref function from given refs. Useful when using forwardRef.
|
|
1949
|
+
|
|
1950
|
+
-----------
|
|
1951
|
+
|
|
1952
|
+
The following npm package may be included in this product:
|
|
1953
|
+
|
|
1954
|
+
- use-isomorphic-layout-effect@1.1.2
|
|
1955
|
+
|
|
1956
|
+
This package contains the following license and notice below:
|
|
1957
|
+
|
|
1958
|
+
MIT License
|
|
1959
|
+
|
|
1960
|
+
Copyright (c) Mateusz Burzyński
|
|
1961
|
+
|
|
1962
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1963
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1964
|
+
in the Software without restriction, including without limitation the rights
|
|
1965
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1966
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1967
|
+
furnished to do so, subject to the following conditions:
|
|
1968
|
+
|
|
1969
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1970
|
+
copies or substantial portions of the Software.
|
|
1971
|
+
|
|
1972
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1973
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1974
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1975
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1976
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1977
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1978
|
+
SOFTWARE.
|
|
1979
|
+
|
|
1980
|
+
-----------
|
|
1981
|
+
|
|
1982
|
+
The following npm package may be included in this product:
|
|
1983
|
+
|
|
1984
|
+
- use-latest@1.2.1
|
|
1985
|
+
|
|
1986
|
+
This package contains the following license and notice below:
|
|
1987
|
+
|
|
1988
|
+
# use-latest
|
|
1989
|
+
|
|
1990
|
+
A React helper hook for storing latest value in ref object (updated in useEffect's callback).
|
|
1991
|
+
|
|
1992
|
+
-----------
|
|
1993
|
+
|
|
1994
|
+
The following npm package may be included in this product:
|
|
1995
|
+
|
|
1996
|
+
- vfile-message@2.0.4
|
|
1997
|
+
|
|
1998
|
+
This package contains the following license and notice below:
|
|
1999
|
+
|
|
2000
|
+
(The MIT License)
|
|
2001
|
+
|
|
2002
|
+
Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com>
|
|
2003
|
+
|
|
2004
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2005
|
+
a copy of this software and associated documentation files (the
|
|
2006
|
+
'Software'), to deal in the Software without restriction, including
|
|
2007
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2008
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2009
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2010
|
+
the following conditions:
|
|
2011
|
+
|
|
2012
|
+
The above copyright notice and this permission notice shall be
|
|
2013
|
+
included in all copies or substantial portions of the Software.
|
|
2014
|
+
|
|
2015
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2016
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2017
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2018
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2019
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2020
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2021
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2022
|
+
|
|
2023
|
+
-----------
|
|
2024
|
+
|
|
2025
|
+
The following npm package may be included in this product:
|
|
2026
|
+
|
|
2027
|
+
- webidl-conversions@3.0.1
|
|
2028
|
+
|
|
2029
|
+
This package contains the following license and notice below:
|
|
2030
|
+
|
|
2031
|
+
# The BSD 2-Clause License
|
|
2032
|
+
|
|
2033
|
+
Copyright (c) 2014, Domenic Denicola
|
|
2034
|
+
All rights reserved.
|
|
2035
|
+
|
|
2036
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
2037
|
+
|
|
2038
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
2039
|
+
|
|
2040
|
+
2. 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.
|
|
2041
|
+
|
|
2042
|
+
THIS SOFTWARE 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2043
|
+
|
|
2044
|
+
-----------
|
|
2045
|
+
|
|
2046
|
+
The following npm package may be included in this product:
|
|
2047
|
+
|
|
2048
|
+
- whatwg-url@5.0.0
|
|
2049
|
+
|
|
2050
|
+
This package contains the following license and notice below:
|
|
2051
|
+
|
|
2052
|
+
The MIT License (MIT)
|
|
2053
|
+
|
|
2054
|
+
Copyright (c) 2015–2016 Sebastian Mayr
|
|
2055
|
+
|
|
2056
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2057
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2058
|
+
in the Software without restriction, including without limitation the rights
|
|
2059
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2060
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2061
|
+
furnished to do so, subject to the following conditions:
|
|
2062
|
+
|
|
2063
|
+
The above copyright notice and this permission notice shall be included in
|
|
2064
|
+
all copies or substantial portions of the Software.
|
|
2065
|
+
|
|
2066
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2067
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2068
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2069
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2070
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2071
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2072
|
+
THE SOFTWARE.
|
|
2073
|
+
|
|
2074
|
+
-----------
|
|
2075
|
+
|
|
2076
|
+
The following npm package may be included in this product:
|
|
2077
|
+
|
|
2078
|
+
- xtend@4.0.2
|
|
2079
|
+
|
|
2080
|
+
This package contains the following license and notice below:
|
|
2081
|
+
|
|
2082
|
+
The MIT License (MIT)
|
|
2083
|
+
Copyright (c) 2012-2014 Raynos.
|
|
2084
|
+
|
|
2085
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2086
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2087
|
+
in the Software without restriction, including without limitation the rights
|
|
2088
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2089
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2090
|
+
furnished to do so, subject to the following conditions:
|
|
2091
|
+
|
|
2092
|
+
The above copyright notice and this permission notice shall be included in
|
|
2093
|
+
all copies or substantial portions of the Software.
|
|
2094
|
+
|
|
2095
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2096
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2097
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2098
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2099
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2100
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2101
|
+
THE SOFTWARE.
|
|
2102
|
+
|
|
2103
|
+
-----------
|
|
2104
|
+
|
|
2105
|
+
This file was generated with the generate-license-file npm package!
|
|
2106
|
+
https://www.npmjs.com/package/generate-license-file
|