@tailwindcss/language-server 0.0.0-dev.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1138 @@
1
+ @parcel/watcher@2.0.3
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2017-present Devon Govett
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
24
+
25
+ ================================================================================
26
+
27
+ @tailwindcss/aspect-ratio@0.4.2
28
+
29
+ # @tailwindcss/aspect-ratio
30
+
31
+ A plugin that provides a composable API for giving elements a fixed aspect ratio.
32
+
33
+
34
+ ## Installation
35
+
36
+ Install the plugin from npm:
37
+
38
+ ```sh
39
+ npm install -D @tailwindcss/aspect-ratio
40
+ ```
41
+
42
+ Then add the plugin to your `tailwind.config.js` file, and disable the `aspectRatio` core plugin to avoid conflicts with the native `aspect-ratio` utilities included in Tailwind CSS v3.0:
43
+
44
+ ```js
45
+ // tailwind.config.js
46
+ module.exports = {
47
+ theme: {
48
+ // ...
49
+ },
50
+ corePlugins: {
51
+ aspectRatio: false,
52
+ },
53
+ plugins: [
54
+ require('@tailwindcss/aspect-ratio'),
55
+ // ...
56
+ ],
57
+ }
58
+ ```
59
+
60
+ ## Usage
61
+
62
+ Combine the `aspect-w-{n}` and `aspect-h-{n}` classes to specify the aspect ratio for an element:
63
+
64
+ ```html
65
+ <div class="aspect-w-16 aspect-h-9">
66
+ <iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
67
+ </div>
68
+ ```
69
+
70
+ Use `aspect-none` to remove any aspect ratio behavior:
71
+
72
+ ```html
73
+ <div class="aspect-w-16 aspect-h-9 lg:aspect-none">
74
+ <!-- ... -->
75
+ </div>
76
+ ```
77
+
78
+ When removing aspect ratio behavior, if nested elements have `w-{n}` or `h-{n}` classes, ensure they are re-declared with a matching breakpoint prefix:
79
+
80
+ ```html
81
+ <div class="aspect-w-16 aspect-h-9 lg:aspect-none">
82
+ <img src="..." alt="..." class="w-full h-full object-center object-cover lg:w-full lg:h-full" />
83
+ </div>
84
+ ```
85
+
86
+ Note that due to the way this currently needs to be implemented ([the old padding-bottom trick](https://css-tricks.com/aspect-ratio-boxes/)) you need to assign the aspect ratio to a _parent_ element, and make the actual element you are trying to size the only child of that parent.
87
+
88
+ Once the [`aspect-ratio` property](https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio) is supported in modern browsers, we'll add official support to Tailwind CSS itself and deprecate this plugin.
89
+
90
+ Aspect ratio classes up to 16 are generated by default:
91
+
92
+ | Width | Height |
93
+ | --- | --- |
94
+ | `aspect-w-1` | `aspect-h-1` |
95
+ | `aspect-w-2` | `aspect-h-2` |
96
+ | `aspect-w-3` | `aspect-h-3` |
97
+ | `aspect-w-4` | `aspect-h-4` |
98
+ | `aspect-w-5` | `aspect-h-5` |
99
+ | `aspect-w-6` | `aspect-h-6` |
100
+ | `aspect-w-7` | `aspect-h-7` |
101
+ | `aspect-w-8` | `aspect-h-8` |
102
+ | `aspect-w-9` | `aspect-h-9` |
103
+ | `aspect-w-10` | `aspect-h-10` |
104
+ | `aspect-w-11` | `aspect-h-11` |
105
+ | `aspect-w-12` | `aspect-h-12` |
106
+ | `aspect-w-13` | `aspect-h-13` |
107
+ | `aspect-w-14` | `aspect-h-14` |
108
+ | `aspect-w-15` | `aspect-h-15` |
109
+ | `aspect-w-16` | `aspect-h-16` |
110
+
111
+ ## Configuration
112
+
113
+ You can configure which values and variants are generated by this plugin under the `aspectRatio` key in your `tailwind.config.js` file:
114
+
115
+ ```js
116
+ // tailwind.config.js
117
+ module.exports = {
118
+ theme: {
119
+ aspectRatio: {
120
+ 1: '1',
121
+ 2: '2',
122
+ 3: '3',
123
+ 4: '4',
124
+ }
125
+ },
126
+ variants: {
127
+ aspectRatio: ['responsive', 'hover']
128
+ }
129
+ }
130
+ ```
131
+
132
+ ## Compatibility with default aspect-ratio utilities
133
+
134
+ Tailwind CSS v3.0 shipped with [native aspect-ratio](https://tailwindcss.com/docs/aspect-ratio) support, and while these new utilities are great, the `aspect-ratio` property isn't supported in Safari 14, which still has [significant global usage](https://caniuse.com/mdn-css_properties_aspect-ratio). If you need to support Safari 14, this plugin is still the best way to do that.
135
+
136
+ While it's technically possible to use the new native `aspect-ratio` utilities as well as this plugin in the same project, it doesn't really make a lot of sense to do so. If you're able to use the new native aspect-ratio utilities, just use them instead of this plugin, as they are a lot simpler and work much better.
137
+
138
+ However, if you do want to use both approaches in your project, maybe as a way of transitioning slowly from the plugin approach to the new native utilities, you'll need to add the following values to your `tailwind.config.js` file:
139
+
140
+ ```js
141
+ module.exports = {
142
+ // ...
143
+ theme: {
144
+ aspectRatio: {
145
+ auto: 'auto',
146
+ square: '1 / 1',
147
+ video: '16 / 9',
148
+ 1: '1',
149
+ 2: '2',
150
+ 3: '3',
151
+ 4: '4',
152
+ 5: '5',
153
+ 6: '6',
154
+ 7: '7',
155
+ 8: '8',
156
+ 9: '9',
157
+ 10: '10',
158
+ 11: '11',
159
+ 12: '12',
160
+ 13: '13',
161
+ 14: '14',
162
+ 15: '15',
163
+ 16: '16',
164
+ },
165
+ },
166
+ }
167
+ ```
168
+
169
+ This is necessary, as the default `aspectRatio` values are overwritten by this plugin's values.
170
+
171
+ ================================================================================
172
+
173
+ @tailwindcss/forms@0.5.3
174
+
175
+ MIT License
176
+
177
+ Copyright (c) Tailwind Labs, Inc.
178
+
179
+ Permission is hereby granted, free of charge, to any person obtaining a copy
180
+ of this software and associated documentation files (the "Software"), to deal
181
+ in the Software without restriction, including without limitation the rights
182
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
183
+ copies of the Software, and to permit persons to whom the Software is
184
+ furnished to do so, subject to the following conditions:
185
+
186
+ The above copyright notice and this permission notice shall be included in all
187
+ copies or substantial portions of the Software.
188
+
189
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
190
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
191
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
192
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
193
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
194
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
195
+ SOFTWARE.
196
+
197
+ ================================================================================
198
+
199
+ @tailwindcss/line-clamp@0.4.2
200
+
201
+ MIT License
202
+
203
+ Copyright (c) 2022 Tailwind Labs
204
+
205
+ Permission is hereby granted, free of charge, to any person obtaining a copy
206
+ of this software and associated documentation files (the "Software"), to deal
207
+ in the Software without restriction, including without limitation the rights
208
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
209
+ copies of the Software, and to permit persons to whom the Software is
210
+ furnished to do so, subject to the following conditions:
211
+
212
+ The above copyright notice and this permission notice shall be included in all
213
+ copies or substantial portions of the Software.
214
+
215
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
216
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
217
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
218
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
219
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
220
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
221
+ SOFTWARE.
222
+
223
+ ================================================================================
224
+
225
+ @tailwindcss/typography@0.5.7
226
+
227
+ MIT License
228
+
229
+ Copyright (c) Tailwind Labs, Inc.
230
+
231
+ Permission is hereby granted, free of charge, to any person obtaining a copy
232
+ of this software and associated documentation files (the "Software"), to deal
233
+ in the Software without restriction, including without limitation the rights
234
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
235
+ copies of the Software, and to permit persons to whom the Software is
236
+ furnished to do so, subject to the following conditions:
237
+
238
+ The above copyright notice and this permission notice shall be included in all
239
+ copies or substantial portions of the Software.
240
+
241
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
242
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
243
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
244
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
245
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
246
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
247
+ SOFTWARE.
248
+
249
+ ================================================================================
250
+
251
+ builtin-modules@3.2.0
252
+
253
+ MIT License
254
+
255
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
256
+
257
+ 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:
258
+
259
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
260
+
261
+ 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.
262
+
263
+ ================================================================================
264
+
265
+ chokidar@3.5.1
266
+
267
+ The MIT License (MIT)
268
+
269
+ Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
270
+
271
+ Permission is hereby granted, free of charge, to any person obtaining a copy
272
+ of this software and associated documentation files (the “Software”), to deal
273
+ in the Software without restriction, including without limitation the rights
274
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
275
+ copies of the Software, and to permit persons to whom the Software is
276
+ furnished to do so, subject to the following conditions:
277
+
278
+ The above copyright notice and this permission notice shall be included in
279
+ all copies or substantial portions of the Software.
280
+
281
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
282
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
283
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
284
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
285
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
286
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
287
+ THE SOFTWARE.
288
+
289
+ ================================================================================
290
+
291
+ color-name@1.1.4
292
+
293
+ The MIT License (MIT)
294
+ Copyright (c) 2015 Dmitry Ivanov
295
+
296
+ 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:
297
+
298
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
299
+
300
+ 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.
301
+
302
+ ================================================================================
303
+
304
+ culori@0.20.1
305
+
306
+ MIT License
307
+
308
+ Copyright (c) 2018 Dan Burzo
309
+
310
+ Permission is hereby granted, free of charge, to any person obtaining a copy
311
+ of this software and associated documentation files (the "Software"), to deal
312
+ in the Software without restriction, including without limitation the rights
313
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
314
+ copies of the Software, and to permit persons to whom the Software is
315
+ furnished to do so, subject to the following conditions:
316
+
317
+ The above copyright notice and this permission notice shall be included in all
318
+ copies or substantial portions of the Software.
319
+
320
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
321
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
322
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
323
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
324
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
325
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
326
+ SOFTWARE.
327
+
328
+ ================================================================================
329
+
330
+ debounce@1.2.0
331
+
332
+ # debounce
333
+
334
+ Useful for implementing behavior that should only happen after a repeated
335
+ action has completed.
336
+
337
+ ## Installation
338
+
339
+ $ component install component/debounce
340
+
341
+ Or in node:
342
+
343
+ $ npm install debounce
344
+
345
+ ## Example
346
+
347
+ ```js
348
+ var debounce = require('debounce');
349
+ window.onresize = debounce(resize, 200);
350
+
351
+ function resize(e) {
352
+ console.log('height', window.innerHeight);
353
+ console.log('width', window.innerWidth);
354
+ }
355
+ ```
356
+
357
+ To later clear the timer and cancel currently scheduled executions:
358
+ ```
359
+ window.onresize.clear();
360
+ ```
361
+
362
+ To execute any pending invocations and reset the timer:
363
+ ```
364
+ window.onresize.flush();
365
+ ```
366
+
367
+ Alternately, if using newer syntax:
368
+
369
+ ```js
370
+ import { debounce } from "debounce";
371
+ ```
372
+
373
+ ## API
374
+
375
+ ### debounce(fn, wait, [ immediate || false ])
376
+
377
+ Creates and returns a new debounced version of the passed function that
378
+ will postpone its execution until after wait milliseconds have elapsed
379
+ since the last time it was invoked.
380
+
381
+ Pass `true` for the `immediate` parameter to cause debounce to trigger
382
+ the function on the leading edge instead of the trailing edge of the wait
383
+ interval. Useful in circumstances like preventing accidental double-clicks
384
+ on a "submit" button from firing a second time.
385
+
386
+ The debounced function returned has a property 'clear' that is a
387
+ function that will clear any scheduled future executions of your function.
388
+
389
+ The debounced function returned has a property 'flush' that is a
390
+ function that will immediately execute the function if and only if execution is scheduled,
391
+ and reset the execution timer for subsequent invocations of the debounced
392
+ function.
393
+
394
+ ## License
395
+
396
+ MIT
397
+
398
+ Original implementation is from [`underscore.js`](http://underscorejs.org/)
399
+ which also has an MIT license.
400
+
401
+ ================================================================================
402
+
403
+ deepmerge@4.2.2
404
+
405
+ The MIT License (MIT)
406
+
407
+ Copyright (c) 2012 James Halliday, Josh Duff, and other contributors
408
+
409
+ Permission is hereby granted, free of charge, to any person obtaining a copy
410
+ of this software and associated documentation files (the "Software"), to deal
411
+ in the Software without restriction, including without limitation the rights
412
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
413
+ copies of the Software, and to permit persons to whom the Software is
414
+ furnished to do so, subject to the following conditions:
415
+
416
+ The above copyright notice and this permission notice shall be included in
417
+ all copies or substantial portions of the Software.
418
+
419
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
420
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
421
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
422
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
423
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
424
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
425
+ THE SOFTWARE.
426
+
427
+ ================================================================================
428
+
429
+ detective@5.2.0
430
+
431
+ This software is released under the MIT license:
432
+
433
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
434
+ this software and associated documentation files (the "Software"), to deal in
435
+ the Software without restriction, including without limitation the rights to
436
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
437
+ the Software, and to permit persons to whom the Software is furnished to do so,
438
+ subject to the following conditions:
439
+
440
+ The above copyright notice and this permission notice shall be included in all
441
+ copies or substantial portions of the Software.
442
+
443
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
444
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
445
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
446
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
447
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
448
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
449
+
450
+ ================================================================================
451
+
452
+ dlv@1.1.3
453
+
454
+ # `dlv(obj, keypath)` [![NPM](https://img.shields.io/npm/v/dlv.svg)](https://npmjs.com/package/dlv) [![Build](https://travis-ci.org/developit/dlv.svg?branch=master)](https://travis-ci.org/developit/dlv)
455
+
456
+ > Safely get a dot-notated path within a nested object, with ability to return a default if the full key path does not exist or the value is undefined
457
+
458
+
459
+ ### Why?
460
+
461
+ Smallest possible implementation: only **130 bytes.**
462
+
463
+ You could write this yourself, but then you'd have to write [tests].
464
+
465
+ Supports ES Modules, CommonJS and globals.
466
+
467
+
468
+ ### Installation
469
+
470
+ `npm install --save dlv`
471
+
472
+
473
+ ### Usage
474
+
475
+ `delve(object, keypath, [default])`
476
+
477
+ ```js
478
+ import delve from 'dlv';
479
+
480
+ let obj = {
481
+ a: {
482
+ b: {
483
+ c: 1,
484
+ d: undefined,
485
+ e: null
486
+ }
487
+ }
488
+ };
489
+
490
+ //use string dot notation for keys
491
+ delve(obj, 'a.b.c') === 1;
492
+
493
+ //or use an array key
494
+ delve(obj, ['a', 'b', 'c']) === 1;
495
+
496
+ delve(obj, 'a.b') === obj.a.b;
497
+
498
+ //returns undefined if the full key path does not exist and no default is specified
499
+ delve(obj, 'a.b.f') === undefined;
500
+
501
+ //optional third parameter for default if the full key in path is missing
502
+ delve(obj, 'a.b.f', 'foo') === 'foo';
503
+
504
+ //or if the key exists but the value is undefined
505
+ delve(obj, 'a.b.d', 'foo') === 'foo';
506
+
507
+ //Non-truthy defined values are still returned if they exist at the full keypath
508
+ delve(obj, 'a.b.e', 'foo') === null;
509
+
510
+ //undefined obj or key returns undefined, unless a default is supplied
511
+ delve(undefined, 'a.b.c') === undefined;
512
+ delve(undefined, 'a.b.c', 'foo') === 'foo';
513
+ delve(obj, undefined, 'foo') === 'foo';
514
+ ```
515
+
516
+
517
+ ### Setter Counterparts
518
+
519
+ - [dset](https://github.com/lukeed/dset) by [@lukeed](https://github.com/lukeed) is the spiritual "set" counterpart of `dlv` and very fast.
520
+ - [bury](https://github.com/kalmbach/bury) by [@kalmbach](https://github.com/kalmbach) does the opposite of `dlv` and is implemented in a very similar manner.
521
+
522
+
523
+ ### License
524
+
525
+ [MIT](https://oss.ninja/mit/developit/)
526
+
527
+
528
+ [preact]: https://github.com/developit/preact
529
+ [tests]: https://github.com/developit/dlv/blob/master/test.js
530
+
531
+ ================================================================================
532
+
533
+ dset@3.1.2
534
+
535
+ The MIT License (MIT)
536
+
537
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
538
+
539
+ Permission is hereby granted, free of charge, to any person obtaining a copy
540
+ of this software and associated documentation files (the "Software"), to deal
541
+ in the Software without restriction, including without limitation the rights
542
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
543
+ copies of the Software, and to permit persons to whom the Software is
544
+ furnished to do so, subject to the following conditions:
545
+
546
+ The above copyright notice and this permission notice shall be included in
547
+ all copies or substantial portions of the Software.
548
+
549
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
550
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
551
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
552
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
553
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
554
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
555
+ THE SOFTWARE.
556
+
557
+ ================================================================================
558
+
559
+ enhanced-resolve-301@0.0.1
560
+
561
+ Copyright JS Foundation and other contributors
562
+
563
+ Permission is hereby granted, free of charge, to any person obtaining
564
+ a copy of this software and associated documentation files (the
565
+ 'Software'), to deal in the Software without restriction, including
566
+ without limitation the rights to use, copy, modify, merge, publish,
567
+ distribute, sublicense, and/or sell copies of the Software, and to
568
+ permit persons to whom the Software is furnished to do so, subject to
569
+ the following conditions:
570
+
571
+ The above copyright notice and this permission notice shall be
572
+ included in all copies or substantial portions of the Software.
573
+
574
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
575
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
576
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
577
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
578
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
579
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
580
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
581
+
582
+ ================================================================================
583
+
584
+ fast-glob@3.2.4
585
+
586
+ The MIT License (MIT)
587
+
588
+ Copyright (c) Denis Malinochkin
589
+
590
+ Permission is hereby granted, free of charge, to any person obtaining a copy
591
+ of this software and associated documentation files (the "Software"), to deal
592
+ in the Software without restriction, including without limitation the rights
593
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
594
+ copies of the Software, and to permit persons to whom the Software is
595
+ furnished to do so, subject to the following conditions:
596
+
597
+ The above copyright notice and this permission notice shall be included in all
598
+ copies or substantial portions of the Software.
599
+
600
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
601
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
602
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
603
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
604
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
605
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
606
+ SOFTWARE.
607
+
608
+ ================================================================================
609
+
610
+ find-up@5.0.0
611
+
612
+ MIT License
613
+
614
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
615
+
616
+ 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:
617
+
618
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
619
+
620
+ 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.
621
+
622
+ ================================================================================
623
+
624
+ klona@2.0.4
625
+
626
+ MIT License
627
+
628
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
629
+
630
+ 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:
631
+
632
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
633
+
634
+ 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.
635
+
636
+ ================================================================================
637
+
638
+ normalize-path@3.0.0
639
+
640
+ The MIT License (MIT)
641
+
642
+ Copyright (c) 2014-2018, Jon Schlinkert.
643
+
644
+ Permission is hereby granted, free of charge, to any person obtaining a copy
645
+ of this software and associated documentation files (the "Software"), to deal
646
+ in the Software without restriction, including without limitation the rights
647
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
648
+ copies of the Software, and to permit persons to whom the Software is
649
+ furnished to do so, subject to the following conditions:
650
+
651
+ The above copyright notice and this permission notice shall be included in
652
+ all copies or substantial portions of the Software.
653
+
654
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
655
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
656
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
657
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
658
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
659
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
660
+ THE SOFTWARE.
661
+
662
+ ================================================================================
663
+
664
+ pkg-up@3.1.0
665
+
666
+ MIT License
667
+
668
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
669
+
670
+ 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:
671
+
672
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
673
+
674
+ 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.
675
+
676
+ ================================================================================
677
+
678
+ postcss-load-config@3.0.1
679
+
680
+ The MIT License (MIT)
681
+
682
+ Copyright Michael Ciniawsky <michael.ciniawsky@gmail.com>
683
+
684
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
685
+ this software and associated documentation files (the "Software"), to deal in
686
+ the Software without restriction, including without limitation the rights to
687
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
688
+ the Software, and to permit persons to whom the Software is furnished to do so,
689
+ subject to the following conditions:
690
+
691
+ The above copyright notice and this permission notice shall be included in all
692
+ copies or substantial portions of the Software.
693
+
694
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
695
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
696
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
697
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
698
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
699
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
700
+
701
+ ================================================================================
702
+
703
+ postcss-selector-parser@6.0.2
704
+
705
+ Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
706
+
707
+ Permission is hereby granted, free of charge, to any person
708
+ obtaining a copy of this software and associated documentation
709
+ files (the "Software"), to deal in the Software without
710
+ restriction, including without limitation the rights to use,
711
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
712
+ copies of the Software, and to permit persons to whom the
713
+ Software is furnished to do so, subject to the following
714
+ conditions:
715
+
716
+ The above copyright notice and this permission notice shall be
717
+ included in all copies or substantial portions of the Software.
718
+
719
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
720
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
721
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
722
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
723
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
724
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
725
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
726
+ OTHER DEALINGS IN THE SOFTWARE.
727
+
728
+ ================================================================================
729
+
730
+ postcss@8.3.9
731
+
732
+ The MIT License (MIT)
733
+
734
+ Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
735
+
736
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
737
+ this software and associated documentation files (the "Software"), to deal in
738
+ the Software without restriction, including without limitation the rights to
739
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
740
+ the Software, and to permit persons to whom the Software is furnished to do so,
741
+ subject to the following conditions:
742
+
743
+ The above copyright notice and this permission notice shall be included in all
744
+ copies or substantial portions of the Software.
745
+
746
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
747
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
748
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
749
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
750
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
751
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
752
+
753
+ ================================================================================
754
+
755
+ resolve@1.20.0
756
+
757
+ MIT License
758
+
759
+ Copyright (c) 2012 James Halliday
760
+
761
+ Permission is hereby granted, free of charge, to any person obtaining a copy
762
+ of this software and associated documentation files (the "Software"), to deal
763
+ in the Software without restriction, including without limitation the rights
764
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
765
+ copies of the Software, and to permit persons to whom the Software is
766
+ furnished to do so, subject to the following conditions:
767
+
768
+ The above copyright notice and this permission notice shall be included in all
769
+ copies or substantial portions of the Software.
770
+
771
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
772
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
773
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
774
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
775
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
776
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
777
+ SOFTWARE.
778
+
779
+ ================================================================================
780
+
781
+ stack-trace@0.0.10
782
+
783
+ Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com)
784
+
785
+ Permission is hereby granted, free of charge, to any person obtaining a copy
786
+ of this software and associated documentation files (the "Software"), to deal
787
+ in the Software without restriction, including without limitation the rights
788
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
789
+ copies of the Software, and to permit persons to whom the Software is
790
+ furnished to do so, subject to the following conditions:
791
+
792
+ The above copyright notice and this permission notice shall be included in
793
+ all copies or substantial portions of the Software.
794
+
795
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
796
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
797
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
798
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
799
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
800
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
801
+ THE SOFTWARE.
802
+
803
+ ================================================================================
804
+
805
+ tailwindcss@3.2.0
806
+
807
+ MIT License
808
+
809
+ Copyright (c) Tailwind Labs, Inc.
810
+
811
+ Permission is hereby granted, free of charge, to any person obtaining a copy
812
+ of this software and associated documentation files (the "Software"), to deal
813
+ in the Software without restriction, including without limitation the rights
814
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
815
+ copies of the Software, and to permit persons to whom the Software is
816
+ furnished to do so, subject to the following conditions:
817
+
818
+ The above copyright notice and this permission notice shall be included in all
819
+ copies or substantial portions of the Software.
820
+
821
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
822
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
823
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
824
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
825
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
826
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
827
+ SOFTWARE.
828
+
829
+ ================================================================================
830
+
831
+ vscode-css-languageservice@5.4.1
832
+
833
+ The MIT License (MIT)
834
+
835
+ Copyright (c) Microsoft
836
+
837
+ Permission is hereby granted, free of charge, to any person obtaining a copy
838
+ of this software and associated documentation files (the "Software"), to deal
839
+ in the Software without restriction, including without limitation the rights
840
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
841
+ copies of the Software, and to permit persons to whom the Software is
842
+ furnished to do so, subject to the following conditions:
843
+
844
+ The above copyright notice and this permission notice shall be included in all
845
+ copies or substantial portions of the Software.
846
+
847
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
848
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
849
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
850
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
851
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
852
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
853
+ SOFTWARE.
854
+
855
+ ================================================================================
856
+
857
+ vscode-languageserver-textdocument@1.0.7
858
+
859
+ Copyright (c) Microsoft Corporation
860
+
861
+ All rights reserved.
862
+
863
+ MIT License
864
+
865
+ 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:
866
+
867
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
868
+
869
+ 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.
870
+
871
+ ================================================================================
872
+
873
+ vscode-languageserver@8.0.2
874
+
875
+ Copyright (c) Microsoft Corporation
876
+
877
+ All rights reserved.
878
+
879
+ MIT License
880
+
881
+ 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:
882
+
883
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
884
+
885
+ 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.
886
+
887
+ ================================================================================
888
+
889
+ vscode-uri@3.0.2
890
+
891
+ The MIT License (MIT)
892
+
893
+ Copyright (c) Microsoft
894
+
895
+ 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:
896
+
897
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
898
+
899
+ 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.
900
+
901
+ ================================================================================
902
+
903
+ becke-ch--regex--s0-0-v1--base--pl--lib@1.4.0
904
+
905
+ Copyright 2017 becke.ch - All Rights Reserved
906
+ This file is part of becke-ch--regex--s0-v1
907
+
908
+ becke.ch (MIT-style) License for the becke-ch--regex--s0-v1 Software
909
+
910
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
911
+
912
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
913
+
914
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
915
+
916
+ ================================================================================
917
+
918
+ css.escape@1.5.1
919
+
920
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
921
+
922
+ Permission is hereby granted, free of charge, to any person obtaining
923
+ a copy of this software and associated documentation files (the
924
+ "Software"), to deal in the Software without restriction, including
925
+ without limitation the rights to use, copy, modify, merge, publish,
926
+ distribute, sublicense, and/or sell copies of the Software, and to
927
+ permit persons to whom the Software is furnished to do so, subject to
928
+ the following conditions:
929
+
930
+ The above copyright notice and this permission notice shall be
931
+ included in all copies or substantial portions of the Software.
932
+
933
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
934
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
935
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
936
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
937
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
938
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
939
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
940
+
941
+ ================================================================================
942
+
943
+ detect-indent@6.0.0
944
+
945
+ MIT License
946
+
947
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
948
+
949
+ 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:
950
+
951
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
952
+
953
+ 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.
954
+
955
+ ================================================================================
956
+
957
+ line-column@1.0.2
958
+
959
+ Copyright (c) 2016 IRIDE Monad <iride.monad@gmail.com>
960
+
961
+ Permission is hereby granted, free of charge, to any person obtaining a copy
962
+ of this software and associated documentation files (the "Software"), to deal
963
+ in the Software without restriction, including without limitation the rights
964
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
965
+ copies of the Software, and to permit persons to whom the Software is
966
+ furnished to do so, subject to the following conditions:
967
+
968
+ The above copyright notice and this permission notice shall be included in all
969
+ copies or substantial portions of the Software.
970
+
971
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
972
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
973
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
974
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
975
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
976
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
977
+ SOFTWARE.
978
+
979
+ ================================================================================
980
+
981
+ moo@0.5.1
982
+
983
+ BSD 3-Clause License
984
+
985
+ Copyright (c) 2017, Tim Radvan (tjvr)
986
+ All rights reserved.
987
+
988
+ Redistribution and use in source and binary forms, with or without
989
+ modification, are permitted provided that the following conditions are met:
990
+
991
+ * Redistributions of source code must retain the above copyright notice, this
992
+ list of conditions and the following disclaimer.
993
+
994
+ * Redistributions in binary form must reproduce the above copyright notice,
995
+ this list of conditions and the following disclaimer in the documentation
996
+ and/or other materials provided with the distribution.
997
+
998
+ * Neither the name of the copyright holder nor the names of its
999
+ contributors may be used to endorse or promote products derived from
1000
+ this software without specific prior written permission.
1001
+
1002
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1003
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1004
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1005
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1006
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1007
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1008
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1009
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1010
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1011
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1012
+
1013
+ ================================================================================
1014
+
1015
+ semver@7.3.7
1016
+
1017
+ The ISC License
1018
+
1019
+ Copyright (c) Isaac Z. Schlueter and Contributors
1020
+
1021
+ Permission to use, copy, modify, and/or distribute this software for any
1022
+ purpose with or without fee is hereby granted, provided that the above
1023
+ copyright notice and this permission notice appear in all copies.
1024
+
1025
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1026
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1027
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1028
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1029
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1030
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1031
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1032
+
1033
+ ================================================================================
1034
+
1035
+ sift-string@0.0.2
1036
+
1037
+ # sift
1038
+
1039
+ Fast String Distance (SIFT) Algorithm.
1040
+
1041
+ [![NPM](https://nodei.co/npm/sift-string.png)](https://nodei.co/npm/sift-string/)
1042
+
1043
+ [![Dependency Status](https://david-dm.org/timoxley/sift.png)](https://david-dm.org/timoxley/sift)
1044
+
1045
+ ## Installation
1046
+
1047
+ #### Browserify/Node
1048
+
1049
+ $ npm install sift-string
1050
+
1051
+
1052
+ #### Component
1053
+
1054
+ $ component install timoxley/sift
1055
+
1056
+ ## Demo
1057
+
1058
+ [Demo](http://timoxley.github.com/sift/examples/spellcheck/)
1059
+
1060
+ or if you want to check it out locally:
1061
+
1062
+ ```bash
1063
+ # run only once to install npm dev dependencies
1064
+ npm install .
1065
+ # this will install && build the components and open the demo web page
1066
+ npm run c-demo
1067
+ ```
1068
+
1069
+ ## API
1070
+
1071
+ ### sift(string, string)
1072
+
1073
+ Return 'distance' between two strings.
1074
+
1075
+ ## TODO
1076
+
1077
+ * Dictionary Helper supply it emits suggestions.
1078
+
1079
+ ## Credit
1080
+
1081
+ Code extracted from [MailCheck](https://github.com/kicksend/mailcheck)
1082
+
1083
+ ## License
1084
+
1085
+ MIT
1086
+
1087
+ ================================================================================
1088
+
1089
+ stringify-object@3.3.0
1090
+
1091
+ Copyright (c) 2015, Yeoman team
1092
+ All rights reserved.
1093
+
1094
+ Redistribution and use in source and binary forms, with or without
1095
+ modification, are permitted provided that the following conditions are met:
1096
+
1097
+ 1. Redistributions of source code must retain the above copyright notice, this
1098
+ list of conditions and the following disclaimer.
1099
+ 2. Redistributions in binary form must reproduce the above copyright notice,
1100
+ this list of conditions and the following disclaimer in the documentation
1101
+ and/or other materials provided with the distribution.
1102
+
1103
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1104
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1105
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1106
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
1107
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1108
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1109
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1110
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1111
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1112
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1113
+
1114
+ ================================================================================
1115
+
1116
+ tmp-cache@1.1.0
1117
+
1118
+ The MIT License (MIT)
1119
+
1120
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
1121
+
1122
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1123
+ of this software and associated documentation files (the "Software"), to deal
1124
+ in the Software without restriction, including without limitation the rights
1125
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1126
+ copies of the Software, and to permit persons to whom the Software is
1127
+ furnished to do so, subject to the following conditions:
1128
+
1129
+ The above copyright notice and this permission notice shall be included in
1130
+ all copies or substantial portions of the Software.
1131
+
1132
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1133
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1134
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1135
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1136
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1137
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1138
+ THE SOFTWARE.